@keyframes right2center {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes left2center {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes bottom2center {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes small2center_opacity {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes small2center {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes center2left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes center2right {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes center2right_opacity {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes center2bottom {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  99% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes center2top {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  99% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes center2small {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes center2small_opacity {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes show_opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide_opacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes scale_from_right {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes scale-from-top {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    opacity: 1;
  }
}
@keyframes out-from-top {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes scale-out-br {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes scale-out-br {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
._transition > div._in {
  animation-name: show_opacity;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > div._out {
  animation-name: hide_opacity;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
/* Disable certain interactions on touch devices */
body {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-highlight: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#AppDebugIndicator {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
  border-radius: 1rem;
  background-color: red;
  padding: 0.2rem 1rem;
  color: white;
}
#AppDebugIndicator.selected {
  display: block;
}
#AppLastScreen,
#AppLastScreen > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#MainContainer {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#MainPrimaryNavigator {
  flex: 0 0 auto;
  z-index: 1;
}
#MainSecondaryNavigator {
  flex: 0 0 auto;
  z-index: 1;
}
#MainApp {
  position: relative;
  flex: 1 0 0;
}
#App,
#App > div {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}
#AppLastScreen > div {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
#AppLastScreen {
  pointer-events: none;
  transform-style: flat;
  perspective: 400px;
  transform: translateZ(-100px);
}
#AppLastScreen > ._out {
  transform: translate3d(0, 0, 0);
}
#AppLastScreen > ._in {
  transform: translate3d(0, 0, 0);
  visibility: hidden;
}
#AppLastScreen._transition > ._in {
  visibility: initial;
}
html.app_android #AppLastScreen._transition div {
  filter: none !important;
}
#AppOverlayEnter,
#AppOverlayExit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  z-index: 100;
  pointer-events: none;
}
#AppOverlays {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
#AppOverlays > div {
  position: absolute;
  pointer-events: initial;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#AppLastScreen {
  z-index: 0;
}
#App {
  z-index: 0;
}
#GestureBlocker {
  z-index: 1000;
  position: absolute;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: none;
}
#GestureBlocker._active {
  display: block;
}
#AppOverlayEnter > div {
  animation-name: show_opacity;
  animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppOverlayExit > div {
  animation-name: hide_opacity;
  animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/* Checkbox*/
.checkboxLargeContainer {
  height: 3rem;
}
.checkboxInlineLargeContainer {
  display: inline-block;
  height: 3rem;
}
input[type="checkbox"] {
  display: none;
  /*
    position: absolute;
    margin: 8px 0 0 16px; 
    */
}
input[type="checkbox"] + label {
  position: relative;
  line-height: 3;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  /* x*5 */
  height: 1.33333333rem;
  /* x*3 */
  border-radius: 0.88888889rem;
  /* x*2 */
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  /* x*3 */
  height: 1.33333333rem;
  /* x*3 */
  border-radius: 0.88888889rem;
  /* x*2 */
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type="checkbox"] + label:hover:after {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
input[type="checkbox"]:checked + label:before {
  background: #c92608;
}
input[type="checkbox"].checkbox-large {
  margin: 0.55555556rem 0 0 1.11111111rem;
}
input[type="checkbox"].checkbox-large + label {
  position: relative;
  padding: 0 0 0 2.33333333rem;
  user-select: none;
  font-size: 0.8rem;
}
input[type="checkbox"].checkbox-large + label:before {
  width: 1.94444444rem;
  /* x*5 */
  height: 1.16666667rem;
  /* x*3 */
  border-radius: 0.77777778rem;
  /* x*2 */
}
input[type="checkbox"].checkbox-large + label:after {
  width: 1.16666667rem;
  /* x*3 */
  height: 1.16666667rem;
  /* x*3 */
  border-radius: 0.77777778rem;
  /* x*2 */
}
input[type="checkbox"].checkbox-large + label:hover:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"].checkbox-large:checked + label:after {
  margin-left: 0.77777778rem;
  /* x*2 */
}
/* range slider */
input[type=range] {
  -webkit-appearance: none;
  background-color: transparent;
  vertical-align: middle;
  margin: 0 0.5rem;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.1rem;
  /*margin-top:1px;*/
  cursor: pointer;
  animation: 0.2s;
  /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;*/
  background: black;
  border-radius: 0;
  /*border: 0px solid #000101;*/
}
input[type=range]::-webkit-slider-thumb {
  /*box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;*/
  margin: 0;
  padding: 0;
  height: 2rem;
  width: 2rem;
  margin-top: -1rem;
  border-radius: 100%;
  background: black;
  cursor: pointer;
  -webkit-appearance: none;
  /*margin-top: -3.6px;*/
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: black;
}
@font-face {
  font-family: 'PrimaryFont';
  font-style: normal;
  src: url("../res/fonts/Gilroy-Regular.otf");
}
@font-face {
  font-family: 'BoldFont';
  font-style: normal;
  font-weight: 400;
  src: url("../res/fonts/Gilroy-Bold.otf");
}
html {
  text-rendering: geometricPrecision !important;
  text-shadow: 0 0 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'PrimaryFont';
  font-size: 2.34375vmin;
}
body {
  background-color: #302e3a;
}
input::-webkit-input-placeholder {
  line-height: normal!important;
}
b {
  font-family: 'BoldFont';
  font-weight: 400;
}
.upper_case {
  text-transform: uppercase;
}
.font_bold {
  font-weight: 800;
}
.font_semibold {
  font-weight: 600;
}
.font_tiny_size {
  font-size: 0.75rem;
}
.font_small_size {
  font-size: 1rem;
}
.font_body_size {
  font-size: 1.365rem;
}
.font_body_big_size {
  font-size: 1.6rem;
}
.font_subtitle_size {
  font-size: 2rem;
}
.font_title_size {
  font-size: 3rem;
}
.font_title_xl_size {
  font-size: 4rem;
}
/*
html.app_desktop {
    #App,
    #AppLastScreen,
    #AppOverlay,
    #AppOverlays
    {
        & > div {
            
            max-width:45rem;
            
        }
    }
    
    #App:before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        z-index: -1;
        
        display: block;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        
        width: 100%;
        height: 100%;
        
        filter: grayscale(90%) blur(1.701rem);
        
    }
    
    font-size: 1.34375vh;
    
}
*/
#App._blurred {
  filter: blur(0.228rem);
  -webkit-filter: blur(0.228rem);
}
.svgIcon {
  height: 100%;
  width: 100%;
}
.app_logoPrefix {
  color: #4696c8;
  font-size: 4rem;
  white-space: pre;
}
.appHeader_title .app_logoPrefix {
  font-size: 2.8rem;
}
input {
  margin: 0;
  padding: 0;
  outline: none;
}
input[type=date] {
  -webkit-appearance: none;
  padding: 0.25rem 1rem;
  border: 0;
  border-radius: 0;
}
input[type=time] {
  -webkit-appearance: textfield;
  width: 10rem;
  padding: 1rem;
  border: 0;
  border-radius: 0;
  margin: 1rem;
}
#CommonElements .appPage {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
}
#SmyWhiteFormElements .appClientData_clientDataInputWrapper,
#AppGallery .appClientData_clientDataInputWrapper,
#AppHowToLandingPage .appClientData_clientDataInputWrapper,
#AppHowToPage0 .appClientData_clientDataInputWrapper,
#AppHowToPage1 .appClientData_clientDataInputWrapper,
#AppHowToPage2 .appClientData_clientDataInputWrapper {
  margin: 0.4rem 0;
  background-color: white;
  border-radius: 0.25rem;
}
#SmyWhiteFormElements .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel,
#AppGallery .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel,
#AppHowToLandingPage .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel,
#AppHowToPage0 .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel,
#AppHowToPage1 .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel,
#AppHowToPage2 .appClientData_clientDataInputWrapper .appClientData_clientDataInputLabel {
  font-size: 1.25rem;
  margin: 0 0.3rem;
}
#SmyWhiteFormElements .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel,
#AppGallery .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel,
#AppHowToLandingPage .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel,
#AppHowToPage0 .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel,
#AppHowToPage1 .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel,
#AppHowToPage2 .appClientData_clientDataInputWrapper._error .appClientData_clientDataInputLabel {
  color: red;
}
#SmyWhiteFormElements .appClientData_clientDataInputWrapper .appClientData_clientDataInput,
#AppGallery .appClientData_clientDataInputWrapper .appClientData_clientDataInput,
#AppHowToLandingPage .appClientData_clientDataInputWrapper .appClientData_clientDataInput,
#AppHowToPage0 .appClientData_clientDataInputWrapper .appClientData_clientDataInput,
#AppHowToPage1 .appClientData_clientDataInputWrapper .appClientData_clientDataInput,
#AppHowToPage2 .appClientData_clientDataInputWrapper .appClientData_clientDataInput {
  background-color: transparent;
  border: none;
  font-size: 1.8rem;
  padding: 0.15rem 0.7rem;
  width: 100%;
  font-weight: bold;
  outline: none;
  resize: none;
}
#AppCommonOverlayForm .window,
#AppOverlayEditAppointment .window,
#AppOverlayReview .window,
#AppOverlayNewAppointment .window,
#AppOverlayNewReferral .window {
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  border-radius: 0.5rem;
  font-size: 2rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  position: relative;
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  overflow: auto;
  /* range slider */
}
#AppCommonOverlayForm .window h1,
#AppOverlayEditAppointment .window h1,
#AppOverlayReview .window h1,
#AppOverlayNewAppointment .window h1,
#AppOverlayNewReferral .window h1 {
  color: white;
  font-weight: bold;
  font-size: 1.7rem;
}
#AppCommonOverlayForm .window .big,
#AppOverlayEditAppointment .window .big,
#AppOverlayReview .window .big,
#AppOverlayNewAppointment .window .big,
#AppOverlayNewReferral .window .big {
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
#AppCommonOverlayForm .window h2,
#AppOverlayEditAppointment .window h2,
#AppOverlayReview .window h2,
#AppOverlayNewAppointment .window h2,
#AppOverlayNewReferral .window h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 1rem 0 0 0;
}
#AppCommonOverlayForm .window h3,
#AppOverlayEditAppointment .window h3,
#AppOverlayReview .window h3,
#AppOverlayNewAppointment .window h3,
#AppOverlayNewReferral .window h3 {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.7;
  margin: 1rem 0;
}
#AppCommonOverlayForm .window .form,
#AppOverlayEditAppointment .window .form,
#AppOverlayReview .window .form,
#AppOverlayNewAppointment .window .form,
#AppOverlayNewReferral .window .form {
  padding: 0 1rem 1rem 1rem;
  font-size: 1.6rem;
}
#AppCommonOverlayForm .window .form > div,
#AppOverlayEditAppointment .window .form > div,
#AppOverlayReview .window .form > div,
#AppOverlayNewAppointment .window .form > div,
#AppOverlayNewReferral .window .form > div {
  margin-bottom: 0.5rem;
}
#AppCommonOverlayForm .window input,
#AppCommonOverlayForm .window textarea,
#AppOverlayEditAppointment .window input,
#AppOverlayEditAppointment .window textarea,
#AppOverlayReview .window input,
#AppOverlayReview .window textarea,
#AppOverlayNewAppointment .window input,
#AppOverlayNewAppointment .window textarea,
#AppOverlayNewReferral .window input,
#AppOverlayNewReferral .window textarea {
  background-color: #e0e0e0;
  padding: 0.4rem 0rem 0.8rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid black;
  font-size: 1.5rem;
  color: black;
  text-align: center;
  margin: 1.2rem 0;
  font-family: 'PrimaryFont';
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  resize: vertical;
}
#AppCommonOverlayForm .window input::placeholder,
#AppCommonOverlayForm .window textarea::placeholder,
#AppOverlayEditAppointment .window input::placeholder,
#AppOverlayEditAppointment .window textarea::placeholder,
#AppOverlayReview .window input::placeholder,
#AppOverlayReview .window textarea::placeholder,
#AppOverlayNewAppointment .window input::placeholder,
#AppOverlayNewAppointment .window textarea::placeholder,
#AppOverlayNewReferral .window input::placeholder,
#AppOverlayNewReferral .window textarea::placeholder {
  color: #302e3b;
}
#AppCommonOverlayForm .window input,
#AppOverlayEditAppointment .window input,
#AppOverlayReview .window input,
#AppOverlayNewAppointment .window input,
#AppOverlayNewReferral .window input {
  width: 17rem;
  padding: 1rem;
}
#AppCommonOverlayForm .window input[type=range],
#AppOverlayEditAppointment .window input[type=range],
#AppOverlayReview .window input[type=range],
#AppOverlayNewAppointment .window input[type=range],
#AppOverlayNewReferral .window input[type=range] {
  overflow: hidden;
  -webkit-appearance: none;
  width: 100%;
  margin: 7.3px 0;
  border: none;
  resize: none;
}
#AppCommonOverlayForm .window input[type=range]:focus,
#AppOverlayEditAppointment .window input[type=range]:focus,
#AppOverlayReview .window input[type=range]:focus,
#AppOverlayNewAppointment .window input[type=range]:focus,
#AppOverlayNewReferral .window input[type=range]:focus {
  outline: none;
}
#AppCommonOverlayForm .window input[type=range]::-webkit-slider-runnable-track,
#AppOverlayEditAppointment .window input[type=range]::-webkit-slider-runnable-track,
#AppOverlayReview .window input[type=range]::-webkit-slider-runnable-track,
#AppOverlayNewAppointment .window input[type=range]::-webkit-slider-runnable-track,
#AppOverlayNewReferral .window input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  -webkit-appearance: none;
  background: #1279a1;
  border: 0;
}
#AppCommonOverlayForm .window input[type=range]::-webkit-slider-thumb,
#AppOverlayEditAppointment .window input[type=range]::-webkit-slider-thumb,
#AppOverlayReview .window input[type=range]::-webkit-slider-thumb,
#AppOverlayNewAppointment .window input[type=range]::-webkit-slider-thumb,
#AppOverlayNewReferral .window input[type=range]::-webkit-slider-thumb {
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #c4e7eb;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
#AppCommonOverlayForm .window input[type=range]:focus::-webkit-slider-runnable-track,
#AppOverlayEditAppointment .window input[type=range]:focus::-webkit-slider-runnable-track,
#AppOverlayReview .window input[type=range]:focus::-webkit-slider-runnable-track,
#AppOverlayNewAppointment .window input[type=range]:focus::-webkit-slider-runnable-track,
#AppOverlayNewReferral .window input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(134, 181, 221, 0.78);
}
#AppCommonOverlayForm .window input[type=range]::-moz-range-track,
#AppOverlayEditAppointment .window input[type=range]::-moz-range-track,
#AppOverlayReview .window input[type=range]::-moz-range-track,
#AppOverlayNewAppointment .window input[type=range]::-moz-range-track,
#AppOverlayNewReferral .window input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #1279a1;
  border: 0;
}
#AppCommonOverlayForm .window input[type=range]::-moz-range-thumb,
#AppOverlayEditAppointment .window input[type=range]::-moz-range-thumb,
#AppOverlayReview .window input[type=range]::-moz-range-thumb,
#AppOverlayNewAppointment .window input[type=range]::-moz-range-thumb,
#AppOverlayNewReferral .window input[type=range]::-moz-range-thumb {
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #c4e7eb;
  cursor: pointer;
}
#AppCommonOverlayForm .window input[type=range]::-ms-track,
#AppOverlayEditAppointment .window input[type=range]::-ms-track,
#AppOverlayReview .window input[type=range]::-ms-track,
#AppOverlayNewAppointment .window input[type=range]::-ms-track,
#AppOverlayNewReferral .window input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
#AppCommonOverlayForm .window input[type=range]::-ms-fill-lower,
#AppOverlayEditAppointment .window input[type=range]::-ms-fill-lower,
#AppOverlayReview .window input[type=range]::-ms-fill-lower,
#AppOverlayNewAppointment .window input[type=range]::-ms-fill-lower,
#AppOverlayNewReferral .window input[type=range]::-ms-fill-lower {
  background: rgba(18, 41, 62, 0.78);
  border-radius: 2.6px;
}
#AppCommonOverlayForm .window input[type=range]::-ms-fill-upper,
#AppOverlayEditAppointment .window input[type=range]::-ms-fill-upper,
#AppOverlayReview .window input[type=range]::-ms-fill-upper,
#AppOverlayNewAppointment .window input[type=range]::-ms-fill-upper,
#AppOverlayNewReferral .window input[type=range]::-ms-fill-upper {
  background: rgba(48, 113, 169, 0.78);
  border: 0;
}
#AppCommonOverlayForm .window input[type=range]::-ms-thumb,
#AppOverlayEditAppointment .window input[type=range]::-ms-thumb,
#AppOverlayReview .window input[type=range]::-ms-thumb,
#AppOverlayNewAppointment .window input[type=range]::-ms-thumb,
#AppOverlayNewReferral .window input[type=range]::-ms-thumb {
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #c4e7eb;
  cursor: pointer;
}
#AppCommonOverlayForm .window input[type=range]:focus::-ms-fill-lower,
#AppOverlayEditAppointment .window input[type=range]:focus::-ms-fill-lower,
#AppOverlayReview .window input[type=range]:focus::-ms-fill-lower,
#AppOverlayNewAppointment .window input[type=range]:focus::-ms-fill-lower,
#AppOverlayNewReferral .window input[type=range]:focus::-ms-fill-lower {
  background: rgba(48, 113, 169, 0.78);
}
#AppCommonOverlayForm .window input[type=range]:focus::-ms-fill-upper,
#AppOverlayEditAppointment .window input[type=range]:focus::-ms-fill-upper,
#AppOverlayReview .window input[type=range]:focus::-ms-fill-upper,
#AppOverlayNewAppointment .window input[type=range]:focus::-ms-fill-upper,
#AppOverlayNewReferral .window input[type=range]:focus::-ms-fill-upper {
  background: rgba(134, 181, 221, 0.78);
}
#AppCommonOverlayForm .buttons,
#AppOverlayEditAppointment .buttons,
#AppOverlayReview .buttons,
#AppOverlayNewAppointment .buttons,
#AppOverlayNewReferral .buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#AppCommonOverlayForm .buttons._row,
#AppOverlayEditAppointment .buttons._row,
#AppOverlayReview .buttons._row,
#AppOverlayNewAppointment .buttons._row,
#AppOverlayNewReferral .buttons._row {
  flex-direction: row;
  justify-content: space-between;
}
#AppCommonOverlayForm select,
#AppOverlayEditAppointment select,
#AppOverlayReview select,
#AppOverlayNewAppointment select,
#AppOverlayNewReferral select {
  display: flex;
  text-align-last: center;
  font-size: 1.5rem;
  font-family: 'PrimaryFont';
  border-radius: 1rem;
  border: 0;
  color: black;
  border: 1px solid black;
  outline: none;
  max-width: fit-content;
  border-radius: 0.5rem;
  background-color: #e0e0e0;
  margin: 1.0rem 0;
  padding: 1rem;
}
#AppCommonOverlayForm button,
#AppOverlayEditAppointment button,
#AppOverlayReview button,
#AppOverlayNewAppointment button,
#AppOverlayNewReferral button {
  background-color: #e0e0e0;
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  color: black;
  outline: none;
  border: 0;
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  width: 16rem;
}
#AppCommonOverlayForm button._row,
#AppOverlayEditAppointment button._row,
#AppOverlayReview button._row,
#AppOverlayNewAppointment button._row,
#AppOverlayNewReferral button._row {
  width: 23rem;
}
#AppCommonOverlayForm button:active,
#AppOverlayEditAppointment button:active,
#AppOverlayReview button:active,
#AppOverlayNewAppointment button:active,
#AppOverlayNewReferral button:active {
  background-color: #c4e7eb;
}
#SmyWhiteHeaderElements .appFooter,
#AppFidelity .appFooter,
#AppFidelityMovements .appFooter,
#AppFidelityReferrals .appFooter,
#AppBluetooth .appFooter,
#AppCleaning .appFooter,
#AppCaptureInstructions .appFooter,
#AppClinic .appFooter,
#AppComparison .appFooter,
#AppContact .appFooter,
#AppDataSent .appFooter,
#AppFormSignUp .appFooter,
#AppGallery .appFooter,
#AppGeneralMenu .appFooter,
#AppGloTreatment .appFooter,
#AppGloReminders .appFooter,
#AppHelp .appFooter,
#AppHowToLandingPage .appFooter,
#AppHowToPage0 .appFooter,
#AppHowToPage1 .appFooter,
#AppHowToPage2 .appFooter,
#AppLive .appFooter,
#AppMedicalDocuments .appFooter,
#AppMedicalAnamnesis .appFooter,
#AppMedicalHistory .appFooter,
#AppMedicalTimeline .appFooter,
#AppPlans .appFooter,
#AppPlansHelp .appFooter,
#AppProductData .appFooter,
#AppSelectClinic .appFooter,
#AppSettingsAbout .appFooter,
#AppSettingAccount .appFooter,
#AppSettingsPassword .appFooter,
#AppSimulate .appFooter,
#AppSimulationAndDiagnostics .appFooter,
#AppTakePhoto .appFooter,
#AppTreatment .appFooter,
#AppTreatmentReminders .appFooter,
#AppTreatments .appFooter,
#AppVideoChat .appFooter,
#AppCleaningReminders .appFooter,
#AppCleaningStatistics .appFooter,
#AppCleaningHistory .appFooter,
#AppFormSendInfo .appFooter,
#AppFormSignIn .appFooter,
#AppGloHistory .appFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1.5 2rem;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0rem;
  height: 6.83rem;
  box-sizing: border-box;
  pointer-events: none;
  background-color: #e0e0e0;
}
#SmyWhiteHeaderElements .appFooter [onclick],
#AppFidelity .appFooter [onclick],
#AppFidelityMovements .appFooter [onclick],
#AppFidelityReferrals .appFooter [onclick],
#AppBluetooth .appFooter [onclick],
#AppCleaning .appFooter [onclick],
#AppCaptureInstructions .appFooter [onclick],
#AppClinic .appFooter [onclick],
#AppComparison .appFooter [onclick],
#AppContact .appFooter [onclick],
#AppDataSent .appFooter [onclick],
#AppFormSignUp .appFooter [onclick],
#AppGallery .appFooter [onclick],
#AppGeneralMenu .appFooter [onclick],
#AppGloTreatment .appFooter [onclick],
#AppGloReminders .appFooter [onclick],
#AppHelp .appFooter [onclick],
#AppHowToLandingPage .appFooter [onclick],
#AppHowToPage0 .appFooter [onclick],
#AppHowToPage1 .appFooter [onclick],
#AppHowToPage2 .appFooter [onclick],
#AppLive .appFooter [onclick],
#AppMedicalDocuments .appFooter [onclick],
#AppMedicalAnamnesis .appFooter [onclick],
#AppMedicalHistory .appFooter [onclick],
#AppMedicalTimeline .appFooter [onclick],
#AppPlans .appFooter [onclick],
#AppPlansHelp .appFooter [onclick],
#AppProductData .appFooter [onclick],
#AppSelectClinic .appFooter [onclick],
#AppSettingsAbout .appFooter [onclick],
#AppSettingAccount .appFooter [onclick],
#AppSettingsPassword .appFooter [onclick],
#AppSimulate .appFooter [onclick],
#AppSimulationAndDiagnostics .appFooter [onclick],
#AppTakePhoto .appFooter [onclick],
#AppTreatment .appFooter [onclick],
#AppTreatmentReminders .appFooter [onclick],
#AppTreatments .appFooter [onclick],
#AppVideoChat .appFooter [onclick],
#AppCleaningReminders .appFooter [onclick],
#AppCleaningStatistics .appFooter [onclick],
#AppCleaningHistory .appFooter [onclick],
#AppFormSendInfo .appFooter [onclick],
#AppFormSignIn .appFooter [onclick],
#AppGloHistory .appFooter [onclick] {
  pointer-events: initial;
}
#SmyWhiteHeaderElements .appFooter._soft,
#AppFidelity .appFooter._soft,
#AppFidelityMovements .appFooter._soft,
#AppFidelityReferrals .appFooter._soft,
#AppBluetooth .appFooter._soft,
#AppCleaning .appFooter._soft,
#AppCaptureInstructions .appFooter._soft,
#AppClinic .appFooter._soft,
#AppComparison .appFooter._soft,
#AppContact .appFooter._soft,
#AppDataSent .appFooter._soft,
#AppFormSignUp .appFooter._soft,
#AppGallery .appFooter._soft,
#AppGeneralMenu .appFooter._soft,
#AppGloTreatment .appFooter._soft,
#AppGloReminders .appFooter._soft,
#AppHelp .appFooter._soft,
#AppHowToLandingPage .appFooter._soft,
#AppHowToPage0 .appFooter._soft,
#AppHowToPage1 .appFooter._soft,
#AppHowToPage2 .appFooter._soft,
#AppLive .appFooter._soft,
#AppMedicalDocuments .appFooter._soft,
#AppMedicalAnamnesis .appFooter._soft,
#AppMedicalHistory .appFooter._soft,
#AppMedicalTimeline .appFooter._soft,
#AppPlans .appFooter._soft,
#AppPlansHelp .appFooter._soft,
#AppProductData .appFooter._soft,
#AppSelectClinic .appFooter._soft,
#AppSettingsAbout .appFooter._soft,
#AppSettingAccount .appFooter._soft,
#AppSettingsPassword .appFooter._soft,
#AppSimulate .appFooter._soft,
#AppSimulationAndDiagnostics .appFooter._soft,
#AppTakePhoto .appFooter._soft,
#AppTreatment .appFooter._soft,
#AppTreatmentReminders .appFooter._soft,
#AppTreatments .appFooter._soft,
#AppVideoChat .appFooter._soft,
#AppCleaningReminders .appFooter._soft,
#AppCleaningStatistics .appFooter._soft,
#AppCleaningHistory .appFooter._soft,
#AppFormSendInfo .appFooter._soft,
#AppFormSignIn .appFooter._soft,
#AppGloHistory .appFooter._soft {
  background-color: transparent;
}
#SmyWhiteHeaderElements .appFooter._white,
#AppFidelity .appFooter._white,
#AppFidelityMovements .appFooter._white,
#AppFidelityReferrals .appFooter._white,
#AppBluetooth .appFooter._white,
#AppCleaning .appFooter._white,
#AppCaptureInstructions .appFooter._white,
#AppClinic .appFooter._white,
#AppComparison .appFooter._white,
#AppContact .appFooter._white,
#AppDataSent .appFooter._white,
#AppFormSignUp .appFooter._white,
#AppGallery .appFooter._white,
#AppGeneralMenu .appFooter._white,
#AppGloTreatment .appFooter._white,
#AppGloReminders .appFooter._white,
#AppHelp .appFooter._white,
#AppHowToLandingPage .appFooter._white,
#AppHowToPage0 .appFooter._white,
#AppHowToPage1 .appFooter._white,
#AppHowToPage2 .appFooter._white,
#AppLive .appFooter._white,
#AppMedicalDocuments .appFooter._white,
#AppMedicalAnamnesis .appFooter._white,
#AppMedicalHistory .appFooter._white,
#AppMedicalTimeline .appFooter._white,
#AppPlans .appFooter._white,
#AppPlansHelp .appFooter._white,
#AppProductData .appFooter._white,
#AppSelectClinic .appFooter._white,
#AppSettingsAbout .appFooter._white,
#AppSettingAccount .appFooter._white,
#AppSettingsPassword .appFooter._white,
#AppSimulate .appFooter._white,
#AppSimulationAndDiagnostics .appFooter._white,
#AppTakePhoto .appFooter._white,
#AppTreatment .appFooter._white,
#AppTreatmentReminders .appFooter._white,
#AppTreatments .appFooter._white,
#AppVideoChat .appFooter._white,
#AppCleaningReminders .appFooter._white,
#AppCleaningStatistics .appFooter._white,
#AppCleaningHistory .appFooter._white,
#AppFormSendInfo .appFooter._white,
#AppFormSignIn .appFooter._white,
#AppGloHistory .appFooter._white {
  background-color: white;
}
#SmyWhiteHeaderElements .appFooter._mainBlue,
#AppFidelity .appFooter._mainBlue,
#AppFidelityMovements .appFooter._mainBlue,
#AppFidelityReferrals .appFooter._mainBlue,
#AppBluetooth .appFooter._mainBlue,
#AppCleaning .appFooter._mainBlue,
#AppCaptureInstructions .appFooter._mainBlue,
#AppClinic .appFooter._mainBlue,
#AppComparison .appFooter._mainBlue,
#AppContact .appFooter._mainBlue,
#AppDataSent .appFooter._mainBlue,
#AppFormSignUp .appFooter._mainBlue,
#AppGallery .appFooter._mainBlue,
#AppGeneralMenu .appFooter._mainBlue,
#AppGloTreatment .appFooter._mainBlue,
#AppGloReminders .appFooter._mainBlue,
#AppHelp .appFooter._mainBlue,
#AppHowToLandingPage .appFooter._mainBlue,
#AppHowToPage0 .appFooter._mainBlue,
#AppHowToPage1 .appFooter._mainBlue,
#AppHowToPage2 .appFooter._mainBlue,
#AppLive .appFooter._mainBlue,
#AppMedicalDocuments .appFooter._mainBlue,
#AppMedicalAnamnesis .appFooter._mainBlue,
#AppMedicalHistory .appFooter._mainBlue,
#AppMedicalTimeline .appFooter._mainBlue,
#AppPlans .appFooter._mainBlue,
#AppPlansHelp .appFooter._mainBlue,
#AppProductData .appFooter._mainBlue,
#AppSelectClinic .appFooter._mainBlue,
#AppSettingsAbout .appFooter._mainBlue,
#AppSettingAccount .appFooter._mainBlue,
#AppSettingsPassword .appFooter._mainBlue,
#AppSimulate .appFooter._mainBlue,
#AppSimulationAndDiagnostics .appFooter._mainBlue,
#AppTakePhoto .appFooter._mainBlue,
#AppTreatment .appFooter._mainBlue,
#AppTreatmentReminders .appFooter._mainBlue,
#AppTreatments .appFooter._mainBlue,
#AppVideoChat .appFooter._mainBlue,
#AppCleaningReminders .appFooter._mainBlue,
#AppCleaningStatistics .appFooter._mainBlue,
#AppCleaningHistory .appFooter._mainBlue,
#AppFormSendInfo .appFooter._mainBlue,
#AppFormSignIn .appFooter._mainBlue,
#AppGloHistory .appFooter._mainBlue {
  background: transparent;
}
#SmyWhiteHeaderElements .appHeader_buttonGroup,
#AppFidelity .appHeader_buttonGroup,
#AppFidelityMovements .appHeader_buttonGroup,
#AppFidelityReferrals .appHeader_buttonGroup,
#AppBluetooth .appHeader_buttonGroup,
#AppCleaning .appHeader_buttonGroup,
#AppCaptureInstructions .appHeader_buttonGroup,
#AppClinic .appHeader_buttonGroup,
#AppComparison .appHeader_buttonGroup,
#AppContact .appHeader_buttonGroup,
#AppDataSent .appHeader_buttonGroup,
#AppFormSignUp .appHeader_buttonGroup,
#AppGallery .appHeader_buttonGroup,
#AppGeneralMenu .appHeader_buttonGroup,
#AppGloTreatment .appHeader_buttonGroup,
#AppGloReminders .appHeader_buttonGroup,
#AppHelp .appHeader_buttonGroup,
#AppHowToLandingPage .appHeader_buttonGroup,
#AppHowToPage0 .appHeader_buttonGroup,
#AppHowToPage1 .appHeader_buttonGroup,
#AppHowToPage2 .appHeader_buttonGroup,
#AppLive .appHeader_buttonGroup,
#AppMedicalDocuments .appHeader_buttonGroup,
#AppMedicalAnamnesis .appHeader_buttonGroup,
#AppMedicalHistory .appHeader_buttonGroup,
#AppMedicalTimeline .appHeader_buttonGroup,
#AppPlans .appHeader_buttonGroup,
#AppPlansHelp .appHeader_buttonGroup,
#AppProductData .appHeader_buttonGroup,
#AppSelectClinic .appHeader_buttonGroup,
#AppSettingsAbout .appHeader_buttonGroup,
#AppSettingAccount .appHeader_buttonGroup,
#AppSettingsPassword .appHeader_buttonGroup,
#AppSimulate .appHeader_buttonGroup,
#AppSimulationAndDiagnostics .appHeader_buttonGroup,
#AppTakePhoto .appHeader_buttonGroup,
#AppTreatment .appHeader_buttonGroup,
#AppTreatmentReminders .appHeader_buttonGroup,
#AppTreatments .appHeader_buttonGroup,
#AppVideoChat .appHeader_buttonGroup,
#AppCleaningReminders .appHeader_buttonGroup,
#AppCleaningStatistics .appHeader_buttonGroup,
#AppCleaningHistory .appHeader_buttonGroup,
#AppFormSendInfo .appHeader_buttonGroup,
#AppFormSignIn .appHeader_buttonGroup,
#AppGloHistory .appHeader_buttonGroup {
  display: flex;
}
#SmyWhiteHeaderElements .appHeader_buttonGroup._right,
#AppFidelity .appHeader_buttonGroup._right,
#AppFidelityMovements .appHeader_buttonGroup._right,
#AppFidelityReferrals .appHeader_buttonGroup._right,
#AppBluetooth .appHeader_buttonGroup._right,
#AppCleaning .appHeader_buttonGroup._right,
#AppCaptureInstructions .appHeader_buttonGroup._right,
#AppClinic .appHeader_buttonGroup._right,
#AppComparison .appHeader_buttonGroup._right,
#AppContact .appHeader_buttonGroup._right,
#AppDataSent .appHeader_buttonGroup._right,
#AppFormSignUp .appHeader_buttonGroup._right,
#AppGallery .appHeader_buttonGroup._right,
#AppGeneralMenu .appHeader_buttonGroup._right,
#AppGloTreatment .appHeader_buttonGroup._right,
#AppGloReminders .appHeader_buttonGroup._right,
#AppHelp .appHeader_buttonGroup._right,
#AppHowToLandingPage .appHeader_buttonGroup._right,
#AppHowToPage0 .appHeader_buttonGroup._right,
#AppHowToPage1 .appHeader_buttonGroup._right,
#AppHowToPage2 .appHeader_buttonGroup._right,
#AppLive .appHeader_buttonGroup._right,
#AppMedicalDocuments .appHeader_buttonGroup._right,
#AppMedicalAnamnesis .appHeader_buttonGroup._right,
#AppMedicalHistory .appHeader_buttonGroup._right,
#AppMedicalTimeline .appHeader_buttonGroup._right,
#AppPlans .appHeader_buttonGroup._right,
#AppPlansHelp .appHeader_buttonGroup._right,
#AppProductData .appHeader_buttonGroup._right,
#AppSelectClinic .appHeader_buttonGroup._right,
#AppSettingsAbout .appHeader_buttonGroup._right,
#AppSettingAccount .appHeader_buttonGroup._right,
#AppSettingsPassword .appHeader_buttonGroup._right,
#AppSimulate .appHeader_buttonGroup._right,
#AppSimulationAndDiagnostics .appHeader_buttonGroup._right,
#AppTakePhoto .appHeader_buttonGroup._right,
#AppTreatment .appHeader_buttonGroup._right,
#AppTreatmentReminders .appHeader_buttonGroup._right,
#AppTreatments .appHeader_buttonGroup._right,
#AppVideoChat .appHeader_buttonGroup._right,
#AppCleaningReminders .appHeader_buttonGroup._right,
#AppCleaningStatistics .appHeader_buttonGroup._right,
#AppCleaningHistory .appHeader_buttonGroup._right,
#AppFormSendInfo .appHeader_buttonGroup._right,
#AppFormSignIn .appHeader_buttonGroup._right,
#AppGloHistory .appHeader_buttonGroup._right {
  justify-content: space-around;
  align-items: center;
  text-align: right;
  overflow: visible;
}
#SmyWhiteHeaderElements .appHeader_buttonGroup._left > div,
#AppFidelity .appHeader_buttonGroup._left > div,
#AppFidelityMovements .appHeader_buttonGroup._left > div,
#AppFidelityReferrals .appHeader_buttonGroup._left > div,
#AppBluetooth .appHeader_buttonGroup._left > div,
#AppCleaning .appHeader_buttonGroup._left > div,
#AppCaptureInstructions .appHeader_buttonGroup._left > div,
#AppClinic .appHeader_buttonGroup._left > div,
#AppComparison .appHeader_buttonGroup._left > div,
#AppContact .appHeader_buttonGroup._left > div,
#AppDataSent .appHeader_buttonGroup._left > div,
#AppFormSignUp .appHeader_buttonGroup._left > div,
#AppGallery .appHeader_buttonGroup._left > div,
#AppGeneralMenu .appHeader_buttonGroup._left > div,
#AppGloTreatment .appHeader_buttonGroup._left > div,
#AppGloReminders .appHeader_buttonGroup._left > div,
#AppHelp .appHeader_buttonGroup._left > div,
#AppHowToLandingPage .appHeader_buttonGroup._left > div,
#AppHowToPage0 .appHeader_buttonGroup._left > div,
#AppHowToPage1 .appHeader_buttonGroup._left > div,
#AppHowToPage2 .appHeader_buttonGroup._left > div,
#AppLive .appHeader_buttonGroup._left > div,
#AppMedicalDocuments .appHeader_buttonGroup._left > div,
#AppMedicalAnamnesis .appHeader_buttonGroup._left > div,
#AppMedicalHistory .appHeader_buttonGroup._left > div,
#AppMedicalTimeline .appHeader_buttonGroup._left > div,
#AppPlans .appHeader_buttonGroup._left > div,
#AppPlansHelp .appHeader_buttonGroup._left > div,
#AppProductData .appHeader_buttonGroup._left > div,
#AppSelectClinic .appHeader_buttonGroup._left > div,
#AppSettingsAbout .appHeader_buttonGroup._left > div,
#AppSettingAccount .appHeader_buttonGroup._left > div,
#AppSettingsPassword .appHeader_buttonGroup._left > div,
#AppSimulate .appHeader_buttonGroup._left > div,
#AppSimulationAndDiagnostics .appHeader_buttonGroup._left > div,
#AppTakePhoto .appHeader_buttonGroup._left > div,
#AppTreatment .appHeader_buttonGroup._left > div,
#AppTreatmentReminders .appHeader_buttonGroup._left > div,
#AppTreatments .appHeader_buttonGroup._left > div,
#AppVideoChat .appHeader_buttonGroup._left > div,
#AppCleaningReminders .appHeader_buttonGroup._left > div,
#AppCleaningStatistics .appHeader_buttonGroup._left > div,
#AppCleaningHistory .appHeader_buttonGroup._left > div,
#AppFormSendInfo .appHeader_buttonGroup._left > div,
#AppFormSignIn .appHeader_buttonGroup._left > div,
#AppGloHistory .appHeader_buttonGroup._left > div {
  margin-right: 2.5rem;
}
#SmyWhiteHeaderElements .appHeader_buttonGroup._right > div,
#AppFidelity .appHeader_buttonGroup._right > div,
#AppFidelityMovements .appHeader_buttonGroup._right > div,
#AppFidelityReferrals .appHeader_buttonGroup._right > div,
#AppBluetooth .appHeader_buttonGroup._right > div,
#AppCleaning .appHeader_buttonGroup._right > div,
#AppCaptureInstructions .appHeader_buttonGroup._right > div,
#AppClinic .appHeader_buttonGroup._right > div,
#AppComparison .appHeader_buttonGroup._right > div,
#AppContact .appHeader_buttonGroup._right > div,
#AppDataSent .appHeader_buttonGroup._right > div,
#AppFormSignUp .appHeader_buttonGroup._right > div,
#AppGallery .appHeader_buttonGroup._right > div,
#AppGeneralMenu .appHeader_buttonGroup._right > div,
#AppGloTreatment .appHeader_buttonGroup._right > div,
#AppGloReminders .appHeader_buttonGroup._right > div,
#AppHelp .appHeader_buttonGroup._right > div,
#AppHowToLandingPage .appHeader_buttonGroup._right > div,
#AppHowToPage0 .appHeader_buttonGroup._right > div,
#AppHowToPage1 .appHeader_buttonGroup._right > div,
#AppHowToPage2 .appHeader_buttonGroup._right > div,
#AppLive .appHeader_buttonGroup._right > div,
#AppMedicalDocuments .appHeader_buttonGroup._right > div,
#AppMedicalAnamnesis .appHeader_buttonGroup._right > div,
#AppMedicalHistory .appHeader_buttonGroup._right > div,
#AppMedicalTimeline .appHeader_buttonGroup._right > div,
#AppPlans .appHeader_buttonGroup._right > div,
#AppPlansHelp .appHeader_buttonGroup._right > div,
#AppProductData .appHeader_buttonGroup._right > div,
#AppSelectClinic .appHeader_buttonGroup._right > div,
#AppSettingsAbout .appHeader_buttonGroup._right > div,
#AppSettingAccount .appHeader_buttonGroup._right > div,
#AppSettingsPassword .appHeader_buttonGroup._right > div,
#AppSimulate .appHeader_buttonGroup._right > div,
#AppSimulationAndDiagnostics .appHeader_buttonGroup._right > div,
#AppTakePhoto .appHeader_buttonGroup._right > div,
#AppTreatment .appHeader_buttonGroup._right > div,
#AppTreatmentReminders .appHeader_buttonGroup._right > div,
#AppTreatments .appHeader_buttonGroup._right > div,
#AppVideoChat .appHeader_buttonGroup._right > div,
#AppCleaningReminders .appHeader_buttonGroup._right > div,
#AppCleaningStatistics .appHeader_buttonGroup._right > div,
#AppCleaningHistory .appHeader_buttonGroup._right > div,
#AppFormSendInfo .appHeader_buttonGroup._right > div,
#AppFormSignIn .appHeader_buttonGroup._right > div,
#AppGloHistory .appHeader_buttonGroup._right > div {
  margin-left: 2.5rem;
}
#SmyWhiteHeaderElements .appFooterIcons,
#AppFidelity .appFooterIcons,
#AppFidelityMovements .appFooterIcons,
#AppFidelityReferrals .appFooterIcons,
#AppBluetooth .appFooterIcons,
#AppCleaning .appFooterIcons,
#AppCaptureInstructions .appFooterIcons,
#AppClinic .appFooterIcons,
#AppComparison .appFooterIcons,
#AppContact .appFooterIcons,
#AppDataSent .appFooterIcons,
#AppFormSignUp .appFooterIcons,
#AppGallery .appFooterIcons,
#AppGeneralMenu .appFooterIcons,
#AppGloTreatment .appFooterIcons,
#AppGloReminders .appFooterIcons,
#AppHelp .appFooterIcons,
#AppHowToLandingPage .appFooterIcons,
#AppHowToPage0 .appFooterIcons,
#AppHowToPage1 .appFooterIcons,
#AppHowToPage2 .appFooterIcons,
#AppLive .appFooterIcons,
#AppMedicalDocuments .appFooterIcons,
#AppMedicalAnamnesis .appFooterIcons,
#AppMedicalHistory .appFooterIcons,
#AppMedicalTimeline .appFooterIcons,
#AppPlans .appFooterIcons,
#AppPlansHelp .appFooterIcons,
#AppProductData .appFooterIcons,
#AppSelectClinic .appFooterIcons,
#AppSettingsAbout .appFooterIcons,
#AppSettingAccount .appFooterIcons,
#AppSettingsPassword .appFooterIcons,
#AppSimulate .appFooterIcons,
#AppSimulationAndDiagnostics .appFooterIcons,
#AppTakePhoto .appFooterIcons,
#AppTreatment .appFooterIcons,
#AppTreatmentReminders .appFooterIcons,
#AppTreatments .appFooterIcons,
#AppVideoChat .appFooterIcons,
#AppCleaningReminders .appFooterIcons,
#AppCleaningStatistics .appFooterIcons,
#AppCleaningHistory .appFooterIcons,
#AppFormSendInfo .appFooterIcons,
#AppFormSignIn .appFooterIcons,
#AppGloHistory .appFooterIcons {
  height: 2.5rem;
  width: 2.5rem;
  fill: black;
}
#SmyWhiteHeaderElements .appFooterIconsGreeny,
#AppFidelity .appFooterIconsGreeny,
#AppFidelityMovements .appFooterIconsGreeny,
#AppFidelityReferrals .appFooterIconsGreeny,
#AppBluetooth .appFooterIconsGreeny,
#AppCleaning .appFooterIconsGreeny,
#AppCaptureInstructions .appFooterIconsGreeny,
#AppClinic .appFooterIconsGreeny,
#AppComparison .appFooterIconsGreeny,
#AppContact .appFooterIconsGreeny,
#AppDataSent .appFooterIconsGreeny,
#AppFormSignUp .appFooterIconsGreeny,
#AppGallery .appFooterIconsGreeny,
#AppGeneralMenu .appFooterIconsGreeny,
#AppGloTreatment .appFooterIconsGreeny,
#AppGloReminders .appFooterIconsGreeny,
#AppHelp .appFooterIconsGreeny,
#AppHowToLandingPage .appFooterIconsGreeny,
#AppHowToPage0 .appFooterIconsGreeny,
#AppHowToPage1 .appFooterIconsGreeny,
#AppHowToPage2 .appFooterIconsGreeny,
#AppLive .appFooterIconsGreeny,
#AppMedicalDocuments .appFooterIconsGreeny,
#AppMedicalAnamnesis .appFooterIconsGreeny,
#AppMedicalHistory .appFooterIconsGreeny,
#AppMedicalTimeline .appFooterIconsGreeny,
#AppPlans .appFooterIconsGreeny,
#AppPlansHelp .appFooterIconsGreeny,
#AppProductData .appFooterIconsGreeny,
#AppSelectClinic .appFooterIconsGreeny,
#AppSettingsAbout .appFooterIconsGreeny,
#AppSettingAccount .appFooterIconsGreeny,
#AppSettingsPassword .appFooterIconsGreeny,
#AppSimulate .appFooterIconsGreeny,
#AppSimulationAndDiagnostics .appFooterIconsGreeny,
#AppTakePhoto .appFooterIconsGreeny,
#AppTreatment .appFooterIconsGreeny,
#AppTreatmentReminders .appFooterIconsGreeny,
#AppTreatments .appFooterIconsGreeny,
#AppVideoChat .appFooterIconsGreeny,
#AppCleaningReminders .appFooterIconsGreeny,
#AppCleaningStatistics .appFooterIconsGreeny,
#AppCleaningHistory .appFooterIconsGreeny,
#AppFormSendInfo .appFooterIconsGreeny,
#AppFormSignIn .appFooterIconsGreeny,
#AppGloHistory .appFooterIconsGreeny {
  height: 2.5rem;
  width: 2.5rem;
  fill: #c4e7eb;
}
#SmyWhiteHeaderElements .appFooterIconsGreeny._medium,
#AppFidelity .appFooterIconsGreeny._medium,
#AppFidelityMovements .appFooterIconsGreeny._medium,
#AppFidelityReferrals .appFooterIconsGreeny._medium,
#AppBluetooth .appFooterIconsGreeny._medium,
#AppCleaning .appFooterIconsGreeny._medium,
#AppCaptureInstructions .appFooterIconsGreeny._medium,
#AppClinic .appFooterIconsGreeny._medium,
#AppComparison .appFooterIconsGreeny._medium,
#AppContact .appFooterIconsGreeny._medium,
#AppDataSent .appFooterIconsGreeny._medium,
#AppFormSignUp .appFooterIconsGreeny._medium,
#AppGallery .appFooterIconsGreeny._medium,
#AppGeneralMenu .appFooterIconsGreeny._medium,
#AppGloTreatment .appFooterIconsGreeny._medium,
#AppGloReminders .appFooterIconsGreeny._medium,
#AppHelp .appFooterIconsGreeny._medium,
#AppHowToLandingPage .appFooterIconsGreeny._medium,
#AppHowToPage0 .appFooterIconsGreeny._medium,
#AppHowToPage1 .appFooterIconsGreeny._medium,
#AppHowToPage2 .appFooterIconsGreeny._medium,
#AppLive .appFooterIconsGreeny._medium,
#AppMedicalDocuments .appFooterIconsGreeny._medium,
#AppMedicalAnamnesis .appFooterIconsGreeny._medium,
#AppMedicalHistory .appFooterIconsGreeny._medium,
#AppMedicalTimeline .appFooterIconsGreeny._medium,
#AppPlans .appFooterIconsGreeny._medium,
#AppPlansHelp .appFooterIconsGreeny._medium,
#AppProductData .appFooterIconsGreeny._medium,
#AppSelectClinic .appFooterIconsGreeny._medium,
#AppSettingsAbout .appFooterIconsGreeny._medium,
#AppSettingAccount .appFooterIconsGreeny._medium,
#AppSettingsPassword .appFooterIconsGreeny._medium,
#AppSimulate .appFooterIconsGreeny._medium,
#AppSimulationAndDiagnostics .appFooterIconsGreeny._medium,
#AppTakePhoto .appFooterIconsGreeny._medium,
#AppTreatment .appFooterIconsGreeny._medium,
#AppTreatmentReminders .appFooterIconsGreeny._medium,
#AppTreatments .appFooterIconsGreeny._medium,
#AppVideoChat .appFooterIconsGreeny._medium,
#AppCleaningReminders .appFooterIconsGreeny._medium,
#AppCleaningStatistics .appFooterIconsGreeny._medium,
#AppCleaningHistory .appFooterIconsGreeny._medium,
#AppFormSendInfo .appFooterIconsGreeny._medium,
#AppFormSignIn .appFooterIconsGreeny._medium,
#AppGloHistory .appFooterIconsGreeny._medium {
  stroke: #c4e7eb;
}
#SmyWhiteHeaderElements .appFooterText,
#AppFidelity .appFooterText,
#AppFidelityMovements .appFooterText,
#AppFidelityReferrals .appFooterText,
#AppBluetooth .appFooterText,
#AppCleaning .appFooterText,
#AppCaptureInstructions .appFooterText,
#AppClinic .appFooterText,
#AppComparison .appFooterText,
#AppContact .appFooterText,
#AppDataSent .appFooterText,
#AppFormSignUp .appFooterText,
#AppGallery .appFooterText,
#AppGeneralMenu .appFooterText,
#AppGloTreatment .appFooterText,
#AppGloReminders .appFooterText,
#AppHelp .appFooterText,
#AppHowToLandingPage .appFooterText,
#AppHowToPage0 .appFooterText,
#AppHowToPage1 .appFooterText,
#AppHowToPage2 .appFooterText,
#AppLive .appFooterText,
#AppMedicalDocuments .appFooterText,
#AppMedicalAnamnesis .appFooterText,
#AppMedicalHistory .appFooterText,
#AppMedicalTimeline .appFooterText,
#AppPlans .appFooterText,
#AppPlansHelp .appFooterText,
#AppProductData .appFooterText,
#AppSelectClinic .appFooterText,
#AppSettingsAbout .appFooterText,
#AppSettingAccount .appFooterText,
#AppSettingsPassword .appFooterText,
#AppSimulate .appFooterText,
#AppSimulationAndDiagnostics .appFooterText,
#AppTakePhoto .appFooterText,
#AppTreatment .appFooterText,
#AppTreatmentReminders .appFooterText,
#AppTreatments .appFooterText,
#AppVideoChat .appFooterText,
#AppCleaningReminders .appFooterText,
#AppCleaningStatistics .appFooterText,
#AppCleaningHistory .appFooterText,
#AppFormSendInfo .appFooterText,
#AppFormSignIn .appFooterText,
#AppGloHistory .appFooterText {
  font-size: 2.5rem;
  font-family: 'BoldFont';
}
#SmyWhiteHeaderElements .appFooterText._blue,
#AppFidelity .appFooterText._blue,
#AppFidelityMovements .appFooterText._blue,
#AppFidelityReferrals .appFooterText._blue,
#AppBluetooth .appFooterText._blue,
#AppCleaning .appFooterText._blue,
#AppCaptureInstructions .appFooterText._blue,
#AppClinic .appFooterText._blue,
#AppComparison .appFooterText._blue,
#AppContact .appFooterText._blue,
#AppDataSent .appFooterText._blue,
#AppFormSignUp .appFooterText._blue,
#AppGallery .appFooterText._blue,
#AppGeneralMenu .appFooterText._blue,
#AppGloTreatment .appFooterText._blue,
#AppGloReminders .appFooterText._blue,
#AppHelp .appFooterText._blue,
#AppHowToLandingPage .appFooterText._blue,
#AppHowToPage0 .appFooterText._blue,
#AppHowToPage1 .appFooterText._blue,
#AppHowToPage2 .appFooterText._blue,
#AppLive .appFooterText._blue,
#AppMedicalDocuments .appFooterText._blue,
#AppMedicalAnamnesis .appFooterText._blue,
#AppMedicalHistory .appFooterText._blue,
#AppMedicalTimeline .appFooterText._blue,
#AppPlans .appFooterText._blue,
#AppPlansHelp .appFooterText._blue,
#AppProductData .appFooterText._blue,
#AppSelectClinic .appFooterText._blue,
#AppSettingsAbout .appFooterText._blue,
#AppSettingAccount .appFooterText._blue,
#AppSettingsPassword .appFooterText._blue,
#AppSimulate .appFooterText._blue,
#AppSimulationAndDiagnostics .appFooterText._blue,
#AppTakePhoto .appFooterText._blue,
#AppTreatment .appFooterText._blue,
#AppTreatmentReminders .appFooterText._blue,
#AppTreatments .appFooterText._blue,
#AppVideoChat .appFooterText._blue,
#AppCleaningReminders .appFooterText._blue,
#AppCleaningStatistics .appFooterText._blue,
#AppCleaningHistory .appFooterText._blue,
#AppFormSendInfo .appFooterText._blue,
#AppFormSignIn .appFooterText._blue,
#AppGloHistory .appFooterText._blue {
  color: #307FE2;
  font-weight: bold;
}
#SmyWhiteHeaderElements .appFooterText._greeny,
#AppFidelity .appFooterText._greeny,
#AppFidelityMovements .appFooterText._greeny,
#AppFidelityReferrals .appFooterText._greeny,
#AppBluetooth .appFooterText._greeny,
#AppCleaning .appFooterText._greeny,
#AppCaptureInstructions .appFooterText._greeny,
#AppClinic .appFooterText._greeny,
#AppComparison .appFooterText._greeny,
#AppContact .appFooterText._greeny,
#AppDataSent .appFooterText._greeny,
#AppFormSignUp .appFooterText._greeny,
#AppGallery .appFooterText._greeny,
#AppGeneralMenu .appFooterText._greeny,
#AppGloTreatment .appFooterText._greeny,
#AppGloReminders .appFooterText._greeny,
#AppHelp .appFooterText._greeny,
#AppHowToLandingPage .appFooterText._greeny,
#AppHowToPage0 .appFooterText._greeny,
#AppHowToPage1 .appFooterText._greeny,
#AppHowToPage2 .appFooterText._greeny,
#AppLive .appFooterText._greeny,
#AppMedicalDocuments .appFooterText._greeny,
#AppMedicalAnamnesis .appFooterText._greeny,
#AppMedicalHistory .appFooterText._greeny,
#AppMedicalTimeline .appFooterText._greeny,
#AppPlans .appFooterText._greeny,
#AppPlansHelp .appFooterText._greeny,
#AppProductData .appFooterText._greeny,
#AppSelectClinic .appFooterText._greeny,
#AppSettingsAbout .appFooterText._greeny,
#AppSettingAccount .appFooterText._greeny,
#AppSettingsPassword .appFooterText._greeny,
#AppSimulate .appFooterText._greeny,
#AppSimulationAndDiagnostics .appFooterText._greeny,
#AppTakePhoto .appFooterText._greeny,
#AppTreatment .appFooterText._greeny,
#AppTreatmentReminders .appFooterText._greeny,
#AppTreatments .appFooterText._greeny,
#AppVideoChat .appFooterText._greeny,
#AppCleaningReminders .appFooterText._greeny,
#AppCleaningStatistics .appFooterText._greeny,
#AppCleaningHistory .appFooterText._greeny,
#AppFormSendInfo .appFooterText._greeny,
#AppFormSignIn .appFooterText._greeny,
#AppGloHistory .appFooterText._greeny {
  font-weight: bold;
  text-align: center;
}
#SmyWhiteHeaderElements .appFooterText._white,
#AppFidelity .appFooterText._white,
#AppFidelityMovements .appFooterText._white,
#AppFidelityReferrals .appFooterText._white,
#AppBluetooth .appFooterText._white,
#AppCleaning .appFooterText._white,
#AppCaptureInstructions .appFooterText._white,
#AppClinic .appFooterText._white,
#AppComparison .appFooterText._white,
#AppContact .appFooterText._white,
#AppDataSent .appFooterText._white,
#AppFormSignUp .appFooterText._white,
#AppGallery .appFooterText._white,
#AppGeneralMenu .appFooterText._white,
#AppGloTreatment .appFooterText._white,
#AppGloReminders .appFooterText._white,
#AppHelp .appFooterText._white,
#AppHowToLandingPage .appFooterText._white,
#AppHowToPage0 .appFooterText._white,
#AppHowToPage1 .appFooterText._white,
#AppHowToPage2 .appFooterText._white,
#AppLive .appFooterText._white,
#AppMedicalDocuments .appFooterText._white,
#AppMedicalAnamnesis .appFooterText._white,
#AppMedicalHistory .appFooterText._white,
#AppMedicalTimeline .appFooterText._white,
#AppPlans .appFooterText._white,
#AppPlansHelp .appFooterText._white,
#AppProductData .appFooterText._white,
#AppSelectClinic .appFooterText._white,
#AppSettingsAbout .appFooterText._white,
#AppSettingAccount .appFooterText._white,
#AppSettingsPassword .appFooterText._white,
#AppSimulate .appFooterText._white,
#AppSimulationAndDiagnostics .appFooterText._white,
#AppTakePhoto .appFooterText._white,
#AppTreatment .appFooterText._white,
#AppTreatmentReminders .appFooterText._white,
#AppTreatments .appFooterText._white,
#AppVideoChat .appFooterText._white,
#AppCleaningReminders .appFooterText._white,
#AppCleaningStatistics .appFooterText._white,
#AppCleaningHistory .appFooterText._white,
#AppFormSendInfo .appFooterText._white,
#AppFormSignIn .appFooterText._white,
#AppGloHistory .appFooterText._white {
  color: black;
  font-family: 'PrimaryFont';
  font-size: 2.276rem;
  font-weight: bold;
}
#SmyWhiteHeaderElements .appFooterIcons._big,
#SmyWhiteHeaderElements .appFooterIconsBlue._big,
#AppFidelity .appFooterIcons._big,
#AppFidelity .appFooterIconsBlue._big,
#AppFidelityMovements .appFooterIcons._big,
#AppFidelityMovements .appFooterIconsBlue._big,
#AppFidelityReferrals .appFooterIcons._big,
#AppFidelityReferrals .appFooterIconsBlue._big,
#AppBluetooth .appFooterIcons._big,
#AppBluetooth .appFooterIconsBlue._big,
#AppCleaning .appFooterIcons._big,
#AppCleaning .appFooterIconsBlue._big,
#AppCaptureInstructions .appFooterIcons._big,
#AppCaptureInstructions .appFooterIconsBlue._big,
#AppClinic .appFooterIcons._big,
#AppClinic .appFooterIconsBlue._big,
#AppComparison .appFooterIcons._big,
#AppComparison .appFooterIconsBlue._big,
#AppContact .appFooterIcons._big,
#AppContact .appFooterIconsBlue._big,
#AppDataSent .appFooterIcons._big,
#AppDataSent .appFooterIconsBlue._big,
#AppFormSignUp .appFooterIcons._big,
#AppFormSignUp .appFooterIconsBlue._big,
#AppGallery .appFooterIcons._big,
#AppGallery .appFooterIconsBlue._big,
#AppGeneralMenu .appFooterIcons._big,
#AppGeneralMenu .appFooterIconsBlue._big,
#AppGloTreatment .appFooterIcons._big,
#AppGloTreatment .appFooterIconsBlue._big,
#AppGloReminders .appFooterIcons._big,
#AppGloReminders .appFooterIconsBlue._big,
#AppHelp .appFooterIcons._big,
#AppHelp .appFooterIconsBlue._big,
#AppHowToLandingPage .appFooterIcons._big,
#AppHowToLandingPage .appFooterIconsBlue._big,
#AppHowToPage0 .appFooterIcons._big,
#AppHowToPage0 .appFooterIconsBlue._big,
#AppHowToPage1 .appFooterIcons._big,
#AppHowToPage1 .appFooterIconsBlue._big,
#AppHowToPage2 .appFooterIcons._big,
#AppHowToPage2 .appFooterIconsBlue._big,
#AppLive .appFooterIcons._big,
#AppLive .appFooterIconsBlue._big,
#AppMedicalDocuments .appFooterIcons._big,
#AppMedicalDocuments .appFooterIconsBlue._big,
#AppMedicalAnamnesis .appFooterIcons._big,
#AppMedicalAnamnesis .appFooterIconsBlue._big,
#AppMedicalHistory .appFooterIcons._big,
#AppMedicalHistory .appFooterIconsBlue._big,
#AppMedicalTimeline .appFooterIcons._big,
#AppMedicalTimeline .appFooterIconsBlue._big,
#AppPlans .appFooterIcons._big,
#AppPlans .appFooterIconsBlue._big,
#AppPlansHelp .appFooterIcons._big,
#AppPlansHelp .appFooterIconsBlue._big,
#AppProductData .appFooterIcons._big,
#AppProductData .appFooterIconsBlue._big,
#AppSelectClinic .appFooterIcons._big,
#AppSelectClinic .appFooterIconsBlue._big,
#AppSettingsAbout .appFooterIcons._big,
#AppSettingsAbout .appFooterIconsBlue._big,
#AppSettingAccount .appFooterIcons._big,
#AppSettingAccount .appFooterIconsBlue._big,
#AppSettingsPassword .appFooterIcons._big,
#AppSettingsPassword .appFooterIconsBlue._big,
#AppSimulate .appFooterIcons._big,
#AppSimulate .appFooterIconsBlue._big,
#AppSimulationAndDiagnostics .appFooterIcons._big,
#AppSimulationAndDiagnostics .appFooterIconsBlue._big,
#AppTakePhoto .appFooterIcons._big,
#AppTakePhoto .appFooterIconsBlue._big,
#AppTreatment .appFooterIcons._big,
#AppTreatment .appFooterIconsBlue._big,
#AppTreatmentReminders .appFooterIcons._big,
#AppTreatmentReminders .appFooterIconsBlue._big,
#AppTreatments .appFooterIcons._big,
#AppTreatments .appFooterIconsBlue._big,
#AppVideoChat .appFooterIcons._big,
#AppVideoChat .appFooterIconsBlue._big,
#AppCleaningReminders .appFooterIcons._big,
#AppCleaningReminders .appFooterIconsBlue._big,
#AppCleaningStatistics .appFooterIcons._big,
#AppCleaningStatistics .appFooterIconsBlue._big,
#AppCleaningHistory .appFooterIcons._big,
#AppCleaningHistory .appFooterIconsBlue._big,
#AppFormSendInfo .appFooterIcons._big,
#AppFormSendInfo .appFooterIconsBlue._big,
#AppFormSignIn .appFooterIcons._big,
#AppFormSignIn .appFooterIconsBlue._big,
#AppGloHistory .appFooterIcons._big,
#AppGloHistory .appFooterIconsBlue._big {
  height: 4.5rem;
  width: 4.5rem;
}
#SmyWhiteHeaderElements .appFooterIcons._medium,
#SmyWhiteHeaderElements .appFooterIconsBlue._medium,
#AppFidelity .appFooterIcons._medium,
#AppFidelity .appFooterIconsBlue._medium,
#AppFidelityMovements .appFooterIcons._medium,
#AppFidelityMovements .appFooterIconsBlue._medium,
#AppFidelityReferrals .appFooterIcons._medium,
#AppFidelityReferrals .appFooterIconsBlue._medium,
#AppBluetooth .appFooterIcons._medium,
#AppBluetooth .appFooterIconsBlue._medium,
#AppCleaning .appFooterIcons._medium,
#AppCleaning .appFooterIconsBlue._medium,
#AppCaptureInstructions .appFooterIcons._medium,
#AppCaptureInstructions .appFooterIconsBlue._medium,
#AppClinic .appFooterIcons._medium,
#AppClinic .appFooterIconsBlue._medium,
#AppComparison .appFooterIcons._medium,
#AppComparison .appFooterIconsBlue._medium,
#AppContact .appFooterIcons._medium,
#AppContact .appFooterIconsBlue._medium,
#AppDataSent .appFooterIcons._medium,
#AppDataSent .appFooterIconsBlue._medium,
#AppFormSignUp .appFooterIcons._medium,
#AppFormSignUp .appFooterIconsBlue._medium,
#AppGallery .appFooterIcons._medium,
#AppGallery .appFooterIconsBlue._medium,
#AppGeneralMenu .appFooterIcons._medium,
#AppGeneralMenu .appFooterIconsBlue._medium,
#AppGloTreatment .appFooterIcons._medium,
#AppGloTreatment .appFooterIconsBlue._medium,
#AppGloReminders .appFooterIcons._medium,
#AppGloReminders .appFooterIconsBlue._medium,
#AppHelp .appFooterIcons._medium,
#AppHelp .appFooterIconsBlue._medium,
#AppHowToLandingPage .appFooterIcons._medium,
#AppHowToLandingPage .appFooterIconsBlue._medium,
#AppHowToPage0 .appFooterIcons._medium,
#AppHowToPage0 .appFooterIconsBlue._medium,
#AppHowToPage1 .appFooterIcons._medium,
#AppHowToPage1 .appFooterIconsBlue._medium,
#AppHowToPage2 .appFooterIcons._medium,
#AppHowToPage2 .appFooterIconsBlue._medium,
#AppLive .appFooterIcons._medium,
#AppLive .appFooterIconsBlue._medium,
#AppMedicalDocuments .appFooterIcons._medium,
#AppMedicalDocuments .appFooterIconsBlue._medium,
#AppMedicalAnamnesis .appFooterIcons._medium,
#AppMedicalAnamnesis .appFooterIconsBlue._medium,
#AppMedicalHistory .appFooterIcons._medium,
#AppMedicalHistory .appFooterIconsBlue._medium,
#AppMedicalTimeline .appFooterIcons._medium,
#AppMedicalTimeline .appFooterIconsBlue._medium,
#AppPlans .appFooterIcons._medium,
#AppPlans .appFooterIconsBlue._medium,
#AppPlansHelp .appFooterIcons._medium,
#AppPlansHelp .appFooterIconsBlue._medium,
#AppProductData .appFooterIcons._medium,
#AppProductData .appFooterIconsBlue._medium,
#AppSelectClinic .appFooterIcons._medium,
#AppSelectClinic .appFooterIconsBlue._medium,
#AppSettingsAbout .appFooterIcons._medium,
#AppSettingsAbout .appFooterIconsBlue._medium,
#AppSettingAccount .appFooterIcons._medium,
#AppSettingAccount .appFooterIconsBlue._medium,
#AppSettingsPassword .appFooterIcons._medium,
#AppSettingsPassword .appFooterIconsBlue._medium,
#AppSimulate .appFooterIcons._medium,
#AppSimulate .appFooterIconsBlue._medium,
#AppSimulationAndDiagnostics .appFooterIcons._medium,
#AppSimulationAndDiagnostics .appFooterIconsBlue._medium,
#AppTakePhoto .appFooterIcons._medium,
#AppTakePhoto .appFooterIconsBlue._medium,
#AppTreatment .appFooterIcons._medium,
#AppTreatment .appFooterIconsBlue._medium,
#AppTreatmentReminders .appFooterIcons._medium,
#AppTreatmentReminders .appFooterIconsBlue._medium,
#AppTreatments .appFooterIcons._medium,
#AppTreatments .appFooterIconsBlue._medium,
#AppVideoChat .appFooterIcons._medium,
#AppVideoChat .appFooterIconsBlue._medium,
#AppCleaningReminders .appFooterIcons._medium,
#AppCleaningReminders .appFooterIconsBlue._medium,
#AppCleaningStatistics .appFooterIcons._medium,
#AppCleaningStatistics .appFooterIconsBlue._medium,
#AppCleaningHistory .appFooterIcons._medium,
#AppCleaningHistory .appFooterIconsBlue._medium,
#AppFormSendInfo .appFooterIcons._medium,
#AppFormSendInfo .appFooterIconsBlue._medium,
#AppFormSignIn .appFooterIcons._medium,
#AppFormSignIn .appFooterIconsBlue._medium,
#AppGloHistory .appFooterIcons._medium,
#AppGloHistory .appFooterIconsBlue._medium {
  height: 3.2rem;
  width: 3.2rem;
}
#SmyWhiteHeaderElements .appFooterIcons._none,
#SmyWhiteHeaderElements .appFooterIconsBlue._none,
#AppFidelity .appFooterIcons._none,
#AppFidelity .appFooterIconsBlue._none,
#AppFidelityMovements .appFooterIcons._none,
#AppFidelityMovements .appFooterIconsBlue._none,
#AppFidelityReferrals .appFooterIcons._none,
#AppFidelityReferrals .appFooterIconsBlue._none,
#AppBluetooth .appFooterIcons._none,
#AppBluetooth .appFooterIconsBlue._none,
#AppCleaning .appFooterIcons._none,
#AppCleaning .appFooterIconsBlue._none,
#AppCaptureInstructions .appFooterIcons._none,
#AppCaptureInstructions .appFooterIconsBlue._none,
#AppClinic .appFooterIcons._none,
#AppClinic .appFooterIconsBlue._none,
#AppComparison .appFooterIcons._none,
#AppComparison .appFooterIconsBlue._none,
#AppContact .appFooterIcons._none,
#AppContact .appFooterIconsBlue._none,
#AppDataSent .appFooterIcons._none,
#AppDataSent .appFooterIconsBlue._none,
#AppFormSignUp .appFooterIcons._none,
#AppFormSignUp .appFooterIconsBlue._none,
#AppGallery .appFooterIcons._none,
#AppGallery .appFooterIconsBlue._none,
#AppGeneralMenu .appFooterIcons._none,
#AppGeneralMenu .appFooterIconsBlue._none,
#AppGloTreatment .appFooterIcons._none,
#AppGloTreatment .appFooterIconsBlue._none,
#AppGloReminders .appFooterIcons._none,
#AppGloReminders .appFooterIconsBlue._none,
#AppHelp .appFooterIcons._none,
#AppHelp .appFooterIconsBlue._none,
#AppHowToLandingPage .appFooterIcons._none,
#AppHowToLandingPage .appFooterIconsBlue._none,
#AppHowToPage0 .appFooterIcons._none,
#AppHowToPage0 .appFooterIconsBlue._none,
#AppHowToPage1 .appFooterIcons._none,
#AppHowToPage1 .appFooterIconsBlue._none,
#AppHowToPage2 .appFooterIcons._none,
#AppHowToPage2 .appFooterIconsBlue._none,
#AppLive .appFooterIcons._none,
#AppLive .appFooterIconsBlue._none,
#AppMedicalDocuments .appFooterIcons._none,
#AppMedicalDocuments .appFooterIconsBlue._none,
#AppMedicalAnamnesis .appFooterIcons._none,
#AppMedicalAnamnesis .appFooterIconsBlue._none,
#AppMedicalHistory .appFooterIcons._none,
#AppMedicalHistory .appFooterIconsBlue._none,
#AppMedicalTimeline .appFooterIcons._none,
#AppMedicalTimeline .appFooterIconsBlue._none,
#AppPlans .appFooterIcons._none,
#AppPlans .appFooterIconsBlue._none,
#AppPlansHelp .appFooterIcons._none,
#AppPlansHelp .appFooterIconsBlue._none,
#AppProductData .appFooterIcons._none,
#AppProductData .appFooterIconsBlue._none,
#AppSelectClinic .appFooterIcons._none,
#AppSelectClinic .appFooterIconsBlue._none,
#AppSettingsAbout .appFooterIcons._none,
#AppSettingsAbout .appFooterIconsBlue._none,
#AppSettingAccount .appFooterIcons._none,
#AppSettingAccount .appFooterIconsBlue._none,
#AppSettingsPassword .appFooterIcons._none,
#AppSettingsPassword .appFooterIconsBlue._none,
#AppSimulate .appFooterIcons._none,
#AppSimulate .appFooterIconsBlue._none,
#AppSimulationAndDiagnostics .appFooterIcons._none,
#AppSimulationAndDiagnostics .appFooterIconsBlue._none,
#AppTakePhoto .appFooterIcons._none,
#AppTakePhoto .appFooterIconsBlue._none,
#AppTreatment .appFooterIcons._none,
#AppTreatment .appFooterIconsBlue._none,
#AppTreatmentReminders .appFooterIcons._none,
#AppTreatmentReminders .appFooterIconsBlue._none,
#AppTreatments .appFooterIcons._none,
#AppTreatments .appFooterIconsBlue._none,
#AppVideoChat .appFooterIcons._none,
#AppVideoChat .appFooterIconsBlue._none,
#AppCleaningReminders .appFooterIcons._none,
#AppCleaningReminders .appFooterIconsBlue._none,
#AppCleaningStatistics .appFooterIcons._none,
#AppCleaningStatistics .appFooterIconsBlue._none,
#AppCleaningHistory .appFooterIcons._none,
#AppCleaningHistory .appFooterIconsBlue._none,
#AppFormSendInfo .appFooterIcons._none,
#AppFormSendInfo .appFooterIconsBlue._none,
#AppFormSignIn .appFooterIcons._none,
#AppFormSignIn .appFooterIconsBlue._none,
#AppGloHistory .appFooterIcons._none,
#AppGloHistory .appFooterIconsBlue._none {
  visibility: hidden;
}
#SmyWhiteHeaderElements .appFooterIcons_right,
#SmyWhiteHeaderElements .appFooterIconsBlue._right,
#AppFidelity .appFooterIcons_right,
#AppFidelity .appFooterIconsBlue._right,
#AppFidelityMovements .appFooterIcons_right,
#AppFidelityMovements .appFooterIconsBlue._right,
#AppFidelityReferrals .appFooterIcons_right,
#AppFidelityReferrals .appFooterIconsBlue._right,
#AppBluetooth .appFooterIcons_right,
#AppBluetooth .appFooterIconsBlue._right,
#AppCleaning .appFooterIcons_right,
#AppCleaning .appFooterIconsBlue._right,
#AppCaptureInstructions .appFooterIcons_right,
#AppCaptureInstructions .appFooterIconsBlue._right,
#AppClinic .appFooterIcons_right,
#AppClinic .appFooterIconsBlue._right,
#AppComparison .appFooterIcons_right,
#AppComparison .appFooterIconsBlue._right,
#AppContact .appFooterIcons_right,
#AppContact .appFooterIconsBlue._right,
#AppDataSent .appFooterIcons_right,
#AppDataSent .appFooterIconsBlue._right,
#AppFormSignUp .appFooterIcons_right,
#AppFormSignUp .appFooterIconsBlue._right,
#AppGallery .appFooterIcons_right,
#AppGallery .appFooterIconsBlue._right,
#AppGeneralMenu .appFooterIcons_right,
#AppGeneralMenu .appFooterIconsBlue._right,
#AppGloTreatment .appFooterIcons_right,
#AppGloTreatment .appFooterIconsBlue._right,
#AppGloReminders .appFooterIcons_right,
#AppGloReminders .appFooterIconsBlue._right,
#AppHelp .appFooterIcons_right,
#AppHelp .appFooterIconsBlue._right,
#AppHowToLandingPage .appFooterIcons_right,
#AppHowToLandingPage .appFooterIconsBlue._right,
#AppHowToPage0 .appFooterIcons_right,
#AppHowToPage0 .appFooterIconsBlue._right,
#AppHowToPage1 .appFooterIcons_right,
#AppHowToPage1 .appFooterIconsBlue._right,
#AppHowToPage2 .appFooterIcons_right,
#AppHowToPage2 .appFooterIconsBlue._right,
#AppLive .appFooterIcons_right,
#AppLive .appFooterIconsBlue._right,
#AppMedicalDocuments .appFooterIcons_right,
#AppMedicalDocuments .appFooterIconsBlue._right,
#AppMedicalAnamnesis .appFooterIcons_right,
#AppMedicalAnamnesis .appFooterIconsBlue._right,
#AppMedicalHistory .appFooterIcons_right,
#AppMedicalHistory .appFooterIconsBlue._right,
#AppMedicalTimeline .appFooterIcons_right,
#AppMedicalTimeline .appFooterIconsBlue._right,
#AppPlans .appFooterIcons_right,
#AppPlans .appFooterIconsBlue._right,
#AppPlansHelp .appFooterIcons_right,
#AppPlansHelp .appFooterIconsBlue._right,
#AppProductData .appFooterIcons_right,
#AppProductData .appFooterIconsBlue._right,
#AppSelectClinic .appFooterIcons_right,
#AppSelectClinic .appFooterIconsBlue._right,
#AppSettingsAbout .appFooterIcons_right,
#AppSettingsAbout .appFooterIconsBlue._right,
#AppSettingAccount .appFooterIcons_right,
#AppSettingAccount .appFooterIconsBlue._right,
#AppSettingsPassword .appFooterIcons_right,
#AppSettingsPassword .appFooterIconsBlue._right,
#AppSimulate .appFooterIcons_right,
#AppSimulate .appFooterIconsBlue._right,
#AppSimulationAndDiagnostics .appFooterIcons_right,
#AppSimulationAndDiagnostics .appFooterIconsBlue._right,
#AppTakePhoto .appFooterIcons_right,
#AppTakePhoto .appFooterIconsBlue._right,
#AppTreatment .appFooterIcons_right,
#AppTreatment .appFooterIconsBlue._right,
#AppTreatmentReminders .appFooterIcons_right,
#AppTreatmentReminders .appFooterIconsBlue._right,
#AppTreatments .appFooterIcons_right,
#AppTreatments .appFooterIconsBlue._right,
#AppVideoChat .appFooterIcons_right,
#AppVideoChat .appFooterIconsBlue._right,
#AppCleaningReminders .appFooterIcons_right,
#AppCleaningReminders .appFooterIconsBlue._right,
#AppCleaningStatistics .appFooterIcons_right,
#AppCleaningStatistics .appFooterIconsBlue._right,
#AppCleaningHistory .appFooterIcons_right,
#AppCleaningHistory .appFooterIconsBlue._right,
#AppFormSendInfo .appFooterIcons_right,
#AppFormSendInfo .appFooterIconsBlue._right,
#AppFormSignIn .appFooterIcons_right,
#AppFormSignIn .appFooterIconsBlue._right,
#AppGloHistory .appFooterIcons_right,
#AppGloHistory .appFooterIconsBlue._right {
  height: 2.5rem;
  padding-left: 1.8rem;
  padding-top: 1.8rem;
}
#SmyWhiteHeaderElements .appFooter_backButton,
#AppFidelity .appFooter_backButton,
#AppFidelityMovements .appFooter_backButton,
#AppFidelityReferrals .appFooter_backButton,
#AppBluetooth .appFooter_backButton,
#AppCleaning .appFooter_backButton,
#AppCaptureInstructions .appFooter_backButton,
#AppClinic .appFooter_backButton,
#AppComparison .appFooter_backButton,
#AppContact .appFooter_backButton,
#AppDataSent .appFooter_backButton,
#AppFormSignUp .appFooter_backButton,
#AppGallery .appFooter_backButton,
#AppGeneralMenu .appFooter_backButton,
#AppGloTreatment .appFooter_backButton,
#AppGloReminders .appFooter_backButton,
#AppHelp .appFooter_backButton,
#AppHowToLandingPage .appFooter_backButton,
#AppHowToPage0 .appFooter_backButton,
#AppHowToPage1 .appFooter_backButton,
#AppHowToPage2 .appFooter_backButton,
#AppLive .appFooter_backButton,
#AppMedicalDocuments .appFooter_backButton,
#AppMedicalAnamnesis .appFooter_backButton,
#AppMedicalHistory .appFooter_backButton,
#AppMedicalTimeline .appFooter_backButton,
#AppPlans .appFooter_backButton,
#AppPlansHelp .appFooter_backButton,
#AppProductData .appFooter_backButton,
#AppSelectClinic .appFooter_backButton,
#AppSettingsAbout .appFooter_backButton,
#AppSettingAccount .appFooter_backButton,
#AppSettingsPassword .appFooter_backButton,
#AppSimulate .appFooter_backButton,
#AppSimulationAndDiagnostics .appFooter_backButton,
#AppTakePhoto .appFooter_backButton,
#AppTreatment .appFooter_backButton,
#AppTreatmentReminders .appFooter_backButton,
#AppTreatments .appFooter_backButton,
#AppVideoChat .appFooter_backButton,
#AppCleaningReminders .appFooter_backButton,
#AppCleaningStatistics .appFooter_backButton,
#AppCleaningHistory .appFooter_backButton,
#AppFormSendInfo .appFooter_backButton,
#AppFormSignIn .appFooter_backButton,
#AppGloHistory .appFooter_backButton {
  height: 2.5rem;
  width: 2.5rem;
}
#SmyWhiteHeaderElements .appHeader,
#AppFidelity .appHeader,
#AppFidelityMovements .appHeader,
#AppFidelityReferrals .appHeader,
#AppBluetooth .appHeader,
#AppCleaning .appHeader,
#AppCaptureInstructions .appHeader,
#AppClinic .appHeader,
#AppComparison .appHeader,
#AppContact .appHeader,
#AppDataSent .appHeader,
#AppFormSignUp .appHeader,
#AppGallery .appHeader,
#AppGeneralMenu .appHeader,
#AppGloTreatment .appHeader,
#AppGloReminders .appHeader,
#AppHelp .appHeader,
#AppHowToLandingPage .appHeader,
#AppHowToPage0 .appHeader,
#AppHowToPage1 .appHeader,
#AppHowToPage2 .appHeader,
#AppLive .appHeader,
#AppMedicalDocuments .appHeader,
#AppMedicalAnamnesis .appHeader,
#AppMedicalHistory .appHeader,
#AppMedicalTimeline .appHeader,
#AppPlans .appHeader,
#AppPlansHelp .appHeader,
#AppProductData .appHeader,
#AppSelectClinic .appHeader,
#AppSettingsAbout .appHeader,
#AppSettingAccount .appHeader,
#AppSettingsPassword .appHeader,
#AppSimulate .appHeader,
#AppSimulationAndDiagnostics .appHeader,
#AppTakePhoto .appHeader,
#AppTreatment .appHeader,
#AppTreatmentReminders .appHeader,
#AppTreatments .appHeader,
#AppVideoChat .appHeader,
#AppCleaningReminders .appHeader,
#AppCleaningStatistics .appHeader,
#AppCleaningHistory .appHeader,
#AppFormSendInfo .appHeader,
#AppFormSignIn .appHeader,
#AppGloHistory .appHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  min-width: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 99;
}
#SmyWhiteHeaderElements .appHeaderLeft,
#SmyWhiteHeaderElements .appHeaderRight,
#AppFidelity .appHeaderLeft,
#AppFidelity .appHeaderRight,
#AppFidelityMovements .appHeaderLeft,
#AppFidelityMovements .appHeaderRight,
#AppFidelityReferrals .appHeaderLeft,
#AppFidelityReferrals .appHeaderRight,
#AppBluetooth .appHeaderLeft,
#AppBluetooth .appHeaderRight,
#AppCleaning .appHeaderLeft,
#AppCleaning .appHeaderRight,
#AppCaptureInstructions .appHeaderLeft,
#AppCaptureInstructions .appHeaderRight,
#AppClinic .appHeaderLeft,
#AppClinic .appHeaderRight,
#AppComparison .appHeaderLeft,
#AppComparison .appHeaderRight,
#AppContact .appHeaderLeft,
#AppContact .appHeaderRight,
#AppDataSent .appHeaderLeft,
#AppDataSent .appHeaderRight,
#AppFormSignUp .appHeaderLeft,
#AppFormSignUp .appHeaderRight,
#AppGallery .appHeaderLeft,
#AppGallery .appHeaderRight,
#AppGeneralMenu .appHeaderLeft,
#AppGeneralMenu .appHeaderRight,
#AppGloTreatment .appHeaderLeft,
#AppGloTreatment .appHeaderRight,
#AppGloReminders .appHeaderLeft,
#AppGloReminders .appHeaderRight,
#AppHelp .appHeaderLeft,
#AppHelp .appHeaderRight,
#AppHowToLandingPage .appHeaderLeft,
#AppHowToLandingPage .appHeaderRight,
#AppHowToPage0 .appHeaderLeft,
#AppHowToPage0 .appHeaderRight,
#AppHowToPage1 .appHeaderLeft,
#AppHowToPage1 .appHeaderRight,
#AppHowToPage2 .appHeaderLeft,
#AppHowToPage2 .appHeaderRight,
#AppLive .appHeaderLeft,
#AppLive .appHeaderRight,
#AppMedicalDocuments .appHeaderLeft,
#AppMedicalDocuments .appHeaderRight,
#AppMedicalAnamnesis .appHeaderLeft,
#AppMedicalAnamnesis .appHeaderRight,
#AppMedicalHistory .appHeaderLeft,
#AppMedicalHistory .appHeaderRight,
#AppMedicalTimeline .appHeaderLeft,
#AppMedicalTimeline .appHeaderRight,
#AppPlans .appHeaderLeft,
#AppPlans .appHeaderRight,
#AppPlansHelp .appHeaderLeft,
#AppPlansHelp .appHeaderRight,
#AppProductData .appHeaderLeft,
#AppProductData .appHeaderRight,
#AppSelectClinic .appHeaderLeft,
#AppSelectClinic .appHeaderRight,
#AppSettingsAbout .appHeaderLeft,
#AppSettingsAbout .appHeaderRight,
#AppSettingAccount .appHeaderLeft,
#AppSettingAccount .appHeaderRight,
#AppSettingsPassword .appHeaderLeft,
#AppSettingsPassword .appHeaderRight,
#AppSimulate .appHeaderLeft,
#AppSimulate .appHeaderRight,
#AppSimulationAndDiagnostics .appHeaderLeft,
#AppSimulationAndDiagnostics .appHeaderRight,
#AppTakePhoto .appHeaderLeft,
#AppTakePhoto .appHeaderRight,
#AppTreatment .appHeaderLeft,
#AppTreatment .appHeaderRight,
#AppTreatmentReminders .appHeaderLeft,
#AppTreatmentReminders .appHeaderRight,
#AppTreatments .appHeaderLeft,
#AppTreatments .appHeaderRight,
#AppVideoChat .appHeaderLeft,
#AppVideoChat .appHeaderRight,
#AppCleaningReminders .appHeaderLeft,
#AppCleaningReminders .appHeaderRight,
#AppCleaningStatistics .appHeaderLeft,
#AppCleaningStatistics .appHeaderRight,
#AppCleaningHistory .appHeaderLeft,
#AppCleaningHistory .appHeaderRight,
#AppFormSendInfo .appHeaderLeft,
#AppFormSendInfo .appHeaderRight,
#AppFormSignIn .appHeaderLeft,
#AppFormSignIn .appHeaderRight,
#AppGloHistory .appHeaderLeft,
#AppGloHistory .appHeaderRight {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#SmyWhiteHeaderElements .appHeaderNoUser,
#AppFidelity .appHeaderNoUser,
#AppFidelityMovements .appHeaderNoUser,
#AppFidelityReferrals .appHeaderNoUser,
#AppBluetooth .appHeaderNoUser,
#AppCleaning .appHeaderNoUser,
#AppCaptureInstructions .appHeaderNoUser,
#AppClinic .appHeaderNoUser,
#AppComparison .appHeaderNoUser,
#AppContact .appHeaderNoUser,
#AppDataSent .appHeaderNoUser,
#AppFormSignUp .appHeaderNoUser,
#AppGallery .appHeaderNoUser,
#AppGeneralMenu .appHeaderNoUser,
#AppGloTreatment .appHeaderNoUser,
#AppGloReminders .appHeaderNoUser,
#AppHelp .appHeaderNoUser,
#AppHowToLandingPage .appHeaderNoUser,
#AppHowToPage0 .appHeaderNoUser,
#AppHowToPage1 .appHeaderNoUser,
#AppHowToPage2 .appHeaderNoUser,
#AppLive .appHeaderNoUser,
#AppMedicalDocuments .appHeaderNoUser,
#AppMedicalAnamnesis .appHeaderNoUser,
#AppMedicalHistory .appHeaderNoUser,
#AppMedicalTimeline .appHeaderNoUser,
#AppPlans .appHeaderNoUser,
#AppPlansHelp .appHeaderNoUser,
#AppProductData .appHeaderNoUser,
#AppSelectClinic .appHeaderNoUser,
#AppSettingsAbout .appHeaderNoUser,
#AppSettingAccount .appHeaderNoUser,
#AppSettingsPassword .appHeaderNoUser,
#AppSimulate .appHeaderNoUser,
#AppSimulationAndDiagnostics .appHeaderNoUser,
#AppTakePhoto .appHeaderNoUser,
#AppTreatment .appHeaderNoUser,
#AppTreatmentReminders .appHeaderNoUser,
#AppTreatments .appHeaderNoUser,
#AppVideoChat .appHeaderNoUser,
#AppCleaningReminders .appHeaderNoUser,
#AppCleaningStatistics .appHeaderNoUser,
#AppCleaningHistory .appHeaderNoUser,
#AppFormSendInfo .appHeaderNoUser,
#AppFormSignIn .appHeaderNoUser,
#AppGloHistory .appHeaderNoUser {
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
  position: absolute;
  justify-content: flex-start;
  color: #307FE2;
  font-size: 1.8rem;
  align-items: center;
  background-color: transparent;
  z-index: 99;
}
#SmyWhiteHeaderElements .appHeaderHelp,
#AppFidelity .appHeaderHelp,
#AppFidelityMovements .appHeaderHelp,
#AppFidelityReferrals .appHeaderHelp,
#AppBluetooth .appHeaderHelp,
#AppCleaning .appHeaderHelp,
#AppCaptureInstructions .appHeaderHelp,
#AppClinic .appHeaderHelp,
#AppComparison .appHeaderHelp,
#AppContact .appHeaderHelp,
#AppDataSent .appHeaderHelp,
#AppFormSignUp .appHeaderHelp,
#AppGallery .appHeaderHelp,
#AppGeneralMenu .appHeaderHelp,
#AppGloTreatment .appHeaderHelp,
#AppGloReminders .appHeaderHelp,
#AppHelp .appHeaderHelp,
#AppHowToLandingPage .appHeaderHelp,
#AppHowToPage0 .appHeaderHelp,
#AppHowToPage1 .appHeaderHelp,
#AppHowToPage2 .appHeaderHelp,
#AppLive .appHeaderHelp,
#AppMedicalDocuments .appHeaderHelp,
#AppMedicalAnamnesis .appHeaderHelp,
#AppMedicalHistory .appHeaderHelp,
#AppMedicalTimeline .appHeaderHelp,
#AppPlans .appHeaderHelp,
#AppPlansHelp .appHeaderHelp,
#AppProductData .appHeaderHelp,
#AppSelectClinic .appHeaderHelp,
#AppSettingsAbout .appHeaderHelp,
#AppSettingAccount .appHeaderHelp,
#AppSettingsPassword .appHeaderHelp,
#AppSimulate .appHeaderHelp,
#AppSimulationAndDiagnostics .appHeaderHelp,
#AppTakePhoto .appHeaderHelp,
#AppTreatment .appHeaderHelp,
#AppTreatmentReminders .appHeaderHelp,
#AppTreatments .appHeaderHelp,
#AppVideoChat .appHeaderHelp,
#AppCleaningReminders .appHeaderHelp,
#AppCleaningStatistics .appHeaderHelp,
#AppCleaningHistory .appHeaderHelp,
#AppFormSendInfo .appHeaderHelp,
#AppFormSignIn .appHeaderHelp,
#AppGloHistory .appHeaderHelp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  min-width: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 99;
}
#SmyWhiteHeaderElements .appHeaderHelp .AppCloseIcon,
#AppFidelity .appHeaderHelp .AppCloseIcon,
#AppFidelityMovements .appHeaderHelp .AppCloseIcon,
#AppFidelityReferrals .appHeaderHelp .AppCloseIcon,
#AppBluetooth .appHeaderHelp .AppCloseIcon,
#AppCleaning .appHeaderHelp .AppCloseIcon,
#AppCaptureInstructions .appHeaderHelp .AppCloseIcon,
#AppClinic .appHeaderHelp .AppCloseIcon,
#AppComparison .appHeaderHelp .AppCloseIcon,
#AppContact .appHeaderHelp .AppCloseIcon,
#AppDataSent .appHeaderHelp .AppCloseIcon,
#AppFormSignUp .appHeaderHelp .AppCloseIcon,
#AppGallery .appHeaderHelp .AppCloseIcon,
#AppGeneralMenu .appHeaderHelp .AppCloseIcon,
#AppGloTreatment .appHeaderHelp .AppCloseIcon,
#AppGloReminders .appHeaderHelp .AppCloseIcon,
#AppHelp .appHeaderHelp .AppCloseIcon,
#AppHowToLandingPage .appHeaderHelp .AppCloseIcon,
#AppHowToPage0 .appHeaderHelp .AppCloseIcon,
#AppHowToPage1 .appHeaderHelp .AppCloseIcon,
#AppHowToPage2 .appHeaderHelp .AppCloseIcon,
#AppLive .appHeaderHelp .AppCloseIcon,
#AppMedicalDocuments .appHeaderHelp .AppCloseIcon,
#AppMedicalAnamnesis .appHeaderHelp .AppCloseIcon,
#AppMedicalHistory .appHeaderHelp .AppCloseIcon,
#AppMedicalTimeline .appHeaderHelp .AppCloseIcon,
#AppPlans .appHeaderHelp .AppCloseIcon,
#AppPlansHelp .appHeaderHelp .AppCloseIcon,
#AppProductData .appHeaderHelp .AppCloseIcon,
#AppSelectClinic .appHeaderHelp .AppCloseIcon,
#AppSettingsAbout .appHeaderHelp .AppCloseIcon,
#AppSettingAccount .appHeaderHelp .AppCloseIcon,
#AppSettingsPassword .appHeaderHelp .AppCloseIcon,
#AppSimulate .appHeaderHelp .AppCloseIcon,
#AppSimulationAndDiagnostics .appHeaderHelp .AppCloseIcon,
#AppTakePhoto .appHeaderHelp .AppCloseIcon,
#AppTreatment .appHeaderHelp .AppCloseIcon,
#AppTreatmentReminders .appHeaderHelp .AppCloseIcon,
#AppTreatments .appHeaderHelp .AppCloseIcon,
#AppVideoChat .appHeaderHelp .AppCloseIcon,
#AppCleaningReminders .appHeaderHelp .AppCloseIcon,
#AppCleaningStatistics .appHeaderHelp .AppCloseIcon,
#AppCleaningHistory .appHeaderHelp .AppCloseIcon,
#AppFormSendInfo .appHeaderHelp .AppCloseIcon,
#AppFormSignIn .appHeaderHelp .AppCloseIcon,
#AppGloHistory .appHeaderHelp .AppCloseIcon {
  width: 2.5rem;
  height: 2.5rem;
  fill: white;
  stroke: white;
}
#SmyWhiteHeaderElements .appheaderNoDisplay,
#AppFidelity .appheaderNoDisplay,
#AppFidelityMovements .appheaderNoDisplay,
#AppFidelityReferrals .appheaderNoDisplay,
#AppBluetooth .appheaderNoDisplay,
#AppCleaning .appheaderNoDisplay,
#AppCaptureInstructions .appheaderNoDisplay,
#AppClinic .appheaderNoDisplay,
#AppComparison .appheaderNoDisplay,
#AppContact .appheaderNoDisplay,
#AppDataSent .appheaderNoDisplay,
#AppFormSignUp .appheaderNoDisplay,
#AppGallery .appheaderNoDisplay,
#AppGeneralMenu .appheaderNoDisplay,
#AppGloTreatment .appheaderNoDisplay,
#AppGloReminders .appheaderNoDisplay,
#AppHelp .appheaderNoDisplay,
#AppHowToLandingPage .appheaderNoDisplay,
#AppHowToPage0 .appheaderNoDisplay,
#AppHowToPage1 .appheaderNoDisplay,
#AppHowToPage2 .appheaderNoDisplay,
#AppLive .appheaderNoDisplay,
#AppMedicalDocuments .appheaderNoDisplay,
#AppMedicalAnamnesis .appheaderNoDisplay,
#AppMedicalHistory .appheaderNoDisplay,
#AppMedicalTimeline .appheaderNoDisplay,
#AppPlans .appheaderNoDisplay,
#AppPlansHelp .appheaderNoDisplay,
#AppProductData .appheaderNoDisplay,
#AppSelectClinic .appheaderNoDisplay,
#AppSettingsAbout .appheaderNoDisplay,
#AppSettingAccount .appheaderNoDisplay,
#AppSettingsPassword .appheaderNoDisplay,
#AppSimulate .appheaderNoDisplay,
#AppSimulationAndDiagnostics .appheaderNoDisplay,
#AppTakePhoto .appheaderNoDisplay,
#AppTreatment .appheaderNoDisplay,
#AppTreatmentReminders .appheaderNoDisplay,
#AppTreatments .appheaderNoDisplay,
#AppVideoChat .appheaderNoDisplay,
#AppCleaningReminders .appheaderNoDisplay,
#AppCleaningStatistics .appheaderNoDisplay,
#AppCleaningHistory .appheaderNoDisplay,
#AppFormSendInfo .appheaderNoDisplay,
#AppFormSignIn .appheaderNoDisplay,
#AppGloHistory .appheaderNoDisplay {
  display: none;
}
#SmyWhiteHeaderElements .appHeader_button,
#AppFidelity .appHeader_button,
#AppFidelityMovements .appHeader_button,
#AppFidelityReferrals .appHeader_button,
#AppBluetooth .appHeader_button,
#AppCleaning .appHeader_button,
#AppCaptureInstructions .appHeader_button,
#AppClinic .appHeader_button,
#AppComparison .appHeader_button,
#AppContact .appHeader_button,
#AppDataSent .appHeader_button,
#AppFormSignUp .appHeader_button,
#AppGallery .appHeader_button,
#AppGeneralMenu .appHeader_button,
#AppGloTreatment .appHeader_button,
#AppGloReminders .appHeader_button,
#AppHelp .appHeader_button,
#AppHowToLandingPage .appHeader_button,
#AppHowToPage0 .appHeader_button,
#AppHowToPage1 .appHeader_button,
#AppHowToPage2 .appHeader_button,
#AppLive .appHeader_button,
#AppMedicalDocuments .appHeader_button,
#AppMedicalAnamnesis .appHeader_button,
#AppMedicalHistory .appHeader_button,
#AppMedicalTimeline .appHeader_button,
#AppPlans .appHeader_button,
#AppPlansHelp .appHeader_button,
#AppProductData .appHeader_button,
#AppSelectClinic .appHeader_button,
#AppSettingsAbout .appHeader_button,
#AppSettingAccount .appHeader_button,
#AppSettingsPassword .appHeader_button,
#AppSimulate .appHeader_button,
#AppSimulationAndDiagnostics .appHeader_button,
#AppTakePhoto .appHeader_button,
#AppTreatment .appHeader_button,
#AppTreatmentReminders .appHeader_button,
#AppTreatments .appHeader_button,
#AppVideoChat .appHeader_button,
#AppCleaningReminders .appHeader_button,
#AppCleaningStatistics .appHeader_button,
#AppCleaningHistory .appHeader_button,
#AppFormSendInfo .appHeader_button,
#AppFormSignIn .appHeader_button,
#AppGloHistory .appHeader_button {
  padding: 0.8rem 0rem;
}
#SmyWhiteHeaderElements .appHeaderBlue_buttonsLeft,
#SmyWhiteHeaderElements .appHeaderBlue_buttonsRight,
#AppFidelity .appHeaderBlue_buttonsLeft,
#AppFidelity .appHeaderBlue_buttonsRight,
#AppFidelityMovements .appHeaderBlue_buttonsLeft,
#AppFidelityMovements .appHeaderBlue_buttonsRight,
#AppFidelityReferrals .appHeaderBlue_buttonsLeft,
#AppFidelityReferrals .appHeaderBlue_buttonsRight,
#AppBluetooth .appHeaderBlue_buttonsLeft,
#AppBluetooth .appHeaderBlue_buttonsRight,
#AppCleaning .appHeaderBlue_buttonsLeft,
#AppCleaning .appHeaderBlue_buttonsRight,
#AppCaptureInstructions .appHeaderBlue_buttonsLeft,
#AppCaptureInstructions .appHeaderBlue_buttonsRight,
#AppClinic .appHeaderBlue_buttonsLeft,
#AppClinic .appHeaderBlue_buttonsRight,
#AppComparison .appHeaderBlue_buttonsLeft,
#AppComparison .appHeaderBlue_buttonsRight,
#AppContact .appHeaderBlue_buttonsLeft,
#AppContact .appHeaderBlue_buttonsRight,
#AppDataSent .appHeaderBlue_buttonsLeft,
#AppDataSent .appHeaderBlue_buttonsRight,
#AppFormSignUp .appHeaderBlue_buttonsLeft,
#AppFormSignUp .appHeaderBlue_buttonsRight,
#AppGallery .appHeaderBlue_buttonsLeft,
#AppGallery .appHeaderBlue_buttonsRight,
#AppGeneralMenu .appHeaderBlue_buttonsLeft,
#AppGeneralMenu .appHeaderBlue_buttonsRight,
#AppGloTreatment .appHeaderBlue_buttonsLeft,
#AppGloTreatment .appHeaderBlue_buttonsRight,
#AppGloReminders .appHeaderBlue_buttonsLeft,
#AppGloReminders .appHeaderBlue_buttonsRight,
#AppHelp .appHeaderBlue_buttonsLeft,
#AppHelp .appHeaderBlue_buttonsRight,
#AppHowToLandingPage .appHeaderBlue_buttonsLeft,
#AppHowToLandingPage .appHeaderBlue_buttonsRight,
#AppHowToPage0 .appHeaderBlue_buttonsLeft,
#AppHowToPage0 .appHeaderBlue_buttonsRight,
#AppHowToPage1 .appHeaderBlue_buttonsLeft,
#AppHowToPage1 .appHeaderBlue_buttonsRight,
#AppHowToPage2 .appHeaderBlue_buttonsLeft,
#AppHowToPage2 .appHeaderBlue_buttonsRight,
#AppLive .appHeaderBlue_buttonsLeft,
#AppLive .appHeaderBlue_buttonsRight,
#AppMedicalDocuments .appHeaderBlue_buttonsLeft,
#AppMedicalDocuments .appHeaderBlue_buttonsRight,
#AppMedicalAnamnesis .appHeaderBlue_buttonsLeft,
#AppMedicalAnamnesis .appHeaderBlue_buttonsRight,
#AppMedicalHistory .appHeaderBlue_buttonsLeft,
#AppMedicalHistory .appHeaderBlue_buttonsRight,
#AppMedicalTimeline .appHeaderBlue_buttonsLeft,
#AppMedicalTimeline .appHeaderBlue_buttonsRight,
#AppPlans .appHeaderBlue_buttonsLeft,
#AppPlans .appHeaderBlue_buttonsRight,
#AppPlansHelp .appHeaderBlue_buttonsLeft,
#AppPlansHelp .appHeaderBlue_buttonsRight,
#AppProductData .appHeaderBlue_buttonsLeft,
#AppProductData .appHeaderBlue_buttonsRight,
#AppSelectClinic .appHeaderBlue_buttonsLeft,
#AppSelectClinic .appHeaderBlue_buttonsRight,
#AppSettingsAbout .appHeaderBlue_buttonsLeft,
#AppSettingsAbout .appHeaderBlue_buttonsRight,
#AppSettingAccount .appHeaderBlue_buttonsLeft,
#AppSettingAccount .appHeaderBlue_buttonsRight,
#AppSettingsPassword .appHeaderBlue_buttonsLeft,
#AppSettingsPassword .appHeaderBlue_buttonsRight,
#AppSimulate .appHeaderBlue_buttonsLeft,
#AppSimulate .appHeaderBlue_buttonsRight,
#AppSimulationAndDiagnostics .appHeaderBlue_buttonsLeft,
#AppSimulationAndDiagnostics .appHeaderBlue_buttonsRight,
#AppTakePhoto .appHeaderBlue_buttonsLeft,
#AppTakePhoto .appHeaderBlue_buttonsRight,
#AppTreatment .appHeaderBlue_buttonsLeft,
#AppTreatment .appHeaderBlue_buttonsRight,
#AppTreatmentReminders .appHeaderBlue_buttonsLeft,
#AppTreatmentReminders .appHeaderBlue_buttonsRight,
#AppTreatments .appHeaderBlue_buttonsLeft,
#AppTreatments .appHeaderBlue_buttonsRight,
#AppVideoChat .appHeaderBlue_buttonsLeft,
#AppVideoChat .appHeaderBlue_buttonsRight,
#AppCleaningReminders .appHeaderBlue_buttonsLeft,
#AppCleaningReminders .appHeaderBlue_buttonsRight,
#AppCleaningStatistics .appHeaderBlue_buttonsLeft,
#AppCleaningStatistics .appHeaderBlue_buttonsRight,
#AppCleaningHistory .appHeaderBlue_buttonsLeft,
#AppCleaningHistory .appHeaderBlue_buttonsRight,
#AppFormSendInfo .appHeaderBlue_buttonsLeft,
#AppFormSendInfo .appHeaderBlue_buttonsRight,
#AppFormSignIn .appHeaderBlue_buttonsLeft,
#AppFormSignIn .appHeaderBlue_buttonsRight,
#AppGloHistory .appHeaderBlue_buttonsLeft,
#AppGloHistory .appHeaderBlue_buttonsRight {
  display: flex;
  text-align: center;
}
#SmyWhiteHeaderElements .appHeaderBlue_buttonsLeft,
#AppFidelity .appHeaderBlue_buttonsLeft,
#AppFidelityMovements .appHeaderBlue_buttonsLeft,
#AppFidelityReferrals .appHeaderBlue_buttonsLeft,
#AppBluetooth .appHeaderBlue_buttonsLeft,
#AppCleaning .appHeaderBlue_buttonsLeft,
#AppCaptureInstructions .appHeaderBlue_buttonsLeft,
#AppClinic .appHeaderBlue_buttonsLeft,
#AppComparison .appHeaderBlue_buttonsLeft,
#AppContact .appHeaderBlue_buttonsLeft,
#AppDataSent .appHeaderBlue_buttonsLeft,
#AppFormSignUp .appHeaderBlue_buttonsLeft,
#AppGallery .appHeaderBlue_buttonsLeft,
#AppGeneralMenu .appHeaderBlue_buttonsLeft,
#AppGloTreatment .appHeaderBlue_buttonsLeft,
#AppGloReminders .appHeaderBlue_buttonsLeft,
#AppHelp .appHeaderBlue_buttonsLeft,
#AppHowToLandingPage .appHeaderBlue_buttonsLeft,
#AppHowToPage0 .appHeaderBlue_buttonsLeft,
#AppHowToPage1 .appHeaderBlue_buttonsLeft,
#AppHowToPage2 .appHeaderBlue_buttonsLeft,
#AppLive .appHeaderBlue_buttonsLeft,
#AppMedicalDocuments .appHeaderBlue_buttonsLeft,
#AppMedicalAnamnesis .appHeaderBlue_buttonsLeft,
#AppMedicalHistory .appHeaderBlue_buttonsLeft,
#AppMedicalTimeline .appHeaderBlue_buttonsLeft,
#AppPlans .appHeaderBlue_buttonsLeft,
#AppPlansHelp .appHeaderBlue_buttonsLeft,
#AppProductData .appHeaderBlue_buttonsLeft,
#AppSelectClinic .appHeaderBlue_buttonsLeft,
#AppSettingsAbout .appHeaderBlue_buttonsLeft,
#AppSettingAccount .appHeaderBlue_buttonsLeft,
#AppSettingsPassword .appHeaderBlue_buttonsLeft,
#AppSimulate .appHeaderBlue_buttonsLeft,
#AppSimulationAndDiagnostics .appHeaderBlue_buttonsLeft,
#AppTakePhoto .appHeaderBlue_buttonsLeft,
#AppTreatment .appHeaderBlue_buttonsLeft,
#AppTreatmentReminders .appHeaderBlue_buttonsLeft,
#AppTreatments .appHeaderBlue_buttonsLeft,
#AppVideoChat .appHeaderBlue_buttonsLeft,
#AppCleaningReminders .appHeaderBlue_buttonsLeft,
#AppCleaningStatistics .appHeaderBlue_buttonsLeft,
#AppCleaningHistory .appHeaderBlue_buttonsLeft,
#AppFormSendInfo .appHeaderBlue_buttonsLeft,
#AppFormSignIn .appHeaderBlue_buttonsLeft,
#AppGloHistory .appHeaderBlue_buttonsLeft {
  justify-content: flex-start;
}
#SmyWhiteHeaderElements .appHeaderBlue_buttonsRight,
#AppFidelity .appHeaderBlue_buttonsRight,
#AppFidelityMovements .appHeaderBlue_buttonsRight,
#AppFidelityReferrals .appHeaderBlue_buttonsRight,
#AppBluetooth .appHeaderBlue_buttonsRight,
#AppCleaning .appHeaderBlue_buttonsRight,
#AppCaptureInstructions .appHeaderBlue_buttonsRight,
#AppClinic .appHeaderBlue_buttonsRight,
#AppComparison .appHeaderBlue_buttonsRight,
#AppContact .appHeaderBlue_buttonsRight,
#AppDataSent .appHeaderBlue_buttonsRight,
#AppFormSignUp .appHeaderBlue_buttonsRight,
#AppGallery .appHeaderBlue_buttonsRight,
#AppGeneralMenu .appHeaderBlue_buttonsRight,
#AppGloTreatment .appHeaderBlue_buttonsRight,
#AppGloReminders .appHeaderBlue_buttonsRight,
#AppHelp .appHeaderBlue_buttonsRight,
#AppHowToLandingPage .appHeaderBlue_buttonsRight,
#AppHowToPage0 .appHeaderBlue_buttonsRight,
#AppHowToPage1 .appHeaderBlue_buttonsRight,
#AppHowToPage2 .appHeaderBlue_buttonsRight,
#AppLive .appHeaderBlue_buttonsRight,
#AppMedicalDocuments .appHeaderBlue_buttonsRight,
#AppMedicalAnamnesis .appHeaderBlue_buttonsRight,
#AppMedicalHistory .appHeaderBlue_buttonsRight,
#AppMedicalTimeline .appHeaderBlue_buttonsRight,
#AppPlans .appHeaderBlue_buttonsRight,
#AppPlansHelp .appHeaderBlue_buttonsRight,
#AppProductData .appHeaderBlue_buttonsRight,
#AppSelectClinic .appHeaderBlue_buttonsRight,
#AppSettingsAbout .appHeaderBlue_buttonsRight,
#AppSettingAccount .appHeaderBlue_buttonsRight,
#AppSettingsPassword .appHeaderBlue_buttonsRight,
#AppSimulate .appHeaderBlue_buttonsRight,
#AppSimulationAndDiagnostics .appHeaderBlue_buttonsRight,
#AppTakePhoto .appHeaderBlue_buttonsRight,
#AppTreatment .appHeaderBlue_buttonsRight,
#AppTreatmentReminders .appHeaderBlue_buttonsRight,
#AppTreatments .appHeaderBlue_buttonsRight,
#AppVideoChat .appHeaderBlue_buttonsRight,
#AppCleaningReminders .appHeaderBlue_buttonsRight,
#AppCleaningStatistics .appHeaderBlue_buttonsRight,
#AppCleaningHistory .appHeaderBlue_buttonsRight,
#AppFormSendInfo .appHeaderBlue_buttonsRight,
#AppFormSignIn .appHeaderBlue_buttonsRight,
#AppGloHistory .appHeaderBlue_buttonsRight {
  justify-content: flex-end;
}
#SmyWhiteHeaderElements .appHeader_buttonsLeft,
#SmyWhiteHeaderElements .appHeader_buttonsRight,
#AppFidelity .appHeader_buttonsLeft,
#AppFidelity .appHeader_buttonsRight,
#AppFidelityMovements .appHeader_buttonsLeft,
#AppFidelityMovements .appHeader_buttonsRight,
#AppFidelityReferrals .appHeader_buttonsLeft,
#AppFidelityReferrals .appHeader_buttonsRight,
#AppBluetooth .appHeader_buttonsLeft,
#AppBluetooth .appHeader_buttonsRight,
#AppCleaning .appHeader_buttonsLeft,
#AppCleaning .appHeader_buttonsRight,
#AppCaptureInstructions .appHeader_buttonsLeft,
#AppCaptureInstructions .appHeader_buttonsRight,
#AppClinic .appHeader_buttonsLeft,
#AppClinic .appHeader_buttonsRight,
#AppComparison .appHeader_buttonsLeft,
#AppComparison .appHeader_buttonsRight,
#AppContact .appHeader_buttonsLeft,
#AppContact .appHeader_buttonsRight,
#AppDataSent .appHeader_buttonsLeft,
#AppDataSent .appHeader_buttonsRight,
#AppFormSignUp .appHeader_buttonsLeft,
#AppFormSignUp .appHeader_buttonsRight,
#AppGallery .appHeader_buttonsLeft,
#AppGallery .appHeader_buttonsRight,
#AppGeneralMenu .appHeader_buttonsLeft,
#AppGeneralMenu .appHeader_buttonsRight,
#AppGloTreatment .appHeader_buttonsLeft,
#AppGloTreatment .appHeader_buttonsRight,
#AppGloReminders .appHeader_buttonsLeft,
#AppGloReminders .appHeader_buttonsRight,
#AppHelp .appHeader_buttonsLeft,
#AppHelp .appHeader_buttonsRight,
#AppHowToLandingPage .appHeader_buttonsLeft,
#AppHowToLandingPage .appHeader_buttonsRight,
#AppHowToPage0 .appHeader_buttonsLeft,
#AppHowToPage0 .appHeader_buttonsRight,
#AppHowToPage1 .appHeader_buttonsLeft,
#AppHowToPage1 .appHeader_buttonsRight,
#AppHowToPage2 .appHeader_buttonsLeft,
#AppHowToPage2 .appHeader_buttonsRight,
#AppLive .appHeader_buttonsLeft,
#AppLive .appHeader_buttonsRight,
#AppMedicalDocuments .appHeader_buttonsLeft,
#AppMedicalDocuments .appHeader_buttonsRight,
#AppMedicalAnamnesis .appHeader_buttonsLeft,
#AppMedicalAnamnesis .appHeader_buttonsRight,
#AppMedicalHistory .appHeader_buttonsLeft,
#AppMedicalHistory .appHeader_buttonsRight,
#AppMedicalTimeline .appHeader_buttonsLeft,
#AppMedicalTimeline .appHeader_buttonsRight,
#AppPlans .appHeader_buttonsLeft,
#AppPlans .appHeader_buttonsRight,
#AppPlansHelp .appHeader_buttonsLeft,
#AppPlansHelp .appHeader_buttonsRight,
#AppProductData .appHeader_buttonsLeft,
#AppProductData .appHeader_buttonsRight,
#AppSelectClinic .appHeader_buttonsLeft,
#AppSelectClinic .appHeader_buttonsRight,
#AppSettingsAbout .appHeader_buttonsLeft,
#AppSettingsAbout .appHeader_buttonsRight,
#AppSettingAccount .appHeader_buttonsLeft,
#AppSettingAccount .appHeader_buttonsRight,
#AppSettingsPassword .appHeader_buttonsLeft,
#AppSettingsPassword .appHeader_buttonsRight,
#AppSimulate .appHeader_buttonsLeft,
#AppSimulate .appHeader_buttonsRight,
#AppSimulationAndDiagnostics .appHeader_buttonsLeft,
#AppSimulationAndDiagnostics .appHeader_buttonsRight,
#AppTakePhoto .appHeader_buttonsLeft,
#AppTakePhoto .appHeader_buttonsRight,
#AppTreatment .appHeader_buttonsLeft,
#AppTreatment .appHeader_buttonsRight,
#AppTreatmentReminders .appHeader_buttonsLeft,
#AppTreatmentReminders .appHeader_buttonsRight,
#AppTreatments .appHeader_buttonsLeft,
#AppTreatments .appHeader_buttonsRight,
#AppVideoChat .appHeader_buttonsLeft,
#AppVideoChat .appHeader_buttonsRight,
#AppCleaningReminders .appHeader_buttonsLeft,
#AppCleaningReminders .appHeader_buttonsRight,
#AppCleaningStatistics .appHeader_buttonsLeft,
#AppCleaningStatistics .appHeader_buttonsRight,
#AppCleaningHistory .appHeader_buttonsLeft,
#AppCleaningHistory .appHeader_buttonsRight,
#AppFormSendInfo .appHeader_buttonsLeft,
#AppFormSendInfo .appHeader_buttonsRight,
#AppFormSignIn .appHeader_buttonsLeft,
#AppFormSignIn .appHeader_buttonsRight,
#AppGloHistory .appHeader_buttonsLeft,
#AppGloHistory .appHeader_buttonsRight {
  display: flex;
  text-align: center;
}
#SmyWhiteHeaderElements .appHeader_buttonsLeft,
#AppFidelity .appHeader_buttonsLeft,
#AppFidelityMovements .appHeader_buttonsLeft,
#AppFidelityReferrals .appHeader_buttonsLeft,
#AppBluetooth .appHeader_buttonsLeft,
#AppCleaning .appHeader_buttonsLeft,
#AppCaptureInstructions .appHeader_buttonsLeft,
#AppClinic .appHeader_buttonsLeft,
#AppComparison .appHeader_buttonsLeft,
#AppContact .appHeader_buttonsLeft,
#AppDataSent .appHeader_buttonsLeft,
#AppFormSignUp .appHeader_buttonsLeft,
#AppGallery .appHeader_buttonsLeft,
#AppGeneralMenu .appHeader_buttonsLeft,
#AppGloTreatment .appHeader_buttonsLeft,
#AppGloReminders .appHeader_buttonsLeft,
#AppHelp .appHeader_buttonsLeft,
#AppHowToLandingPage .appHeader_buttonsLeft,
#AppHowToPage0 .appHeader_buttonsLeft,
#AppHowToPage1 .appHeader_buttonsLeft,
#AppHowToPage2 .appHeader_buttonsLeft,
#AppLive .appHeader_buttonsLeft,
#AppMedicalDocuments .appHeader_buttonsLeft,
#AppMedicalAnamnesis .appHeader_buttonsLeft,
#AppMedicalHistory .appHeader_buttonsLeft,
#AppMedicalTimeline .appHeader_buttonsLeft,
#AppPlans .appHeader_buttonsLeft,
#AppPlansHelp .appHeader_buttonsLeft,
#AppProductData .appHeader_buttonsLeft,
#AppSelectClinic .appHeader_buttonsLeft,
#AppSettingsAbout .appHeader_buttonsLeft,
#AppSettingAccount .appHeader_buttonsLeft,
#AppSettingsPassword .appHeader_buttonsLeft,
#AppSimulate .appHeader_buttonsLeft,
#AppSimulationAndDiagnostics .appHeader_buttonsLeft,
#AppTakePhoto .appHeader_buttonsLeft,
#AppTreatment .appHeader_buttonsLeft,
#AppTreatmentReminders .appHeader_buttonsLeft,
#AppTreatments .appHeader_buttonsLeft,
#AppVideoChat .appHeader_buttonsLeft,
#AppCleaningReminders .appHeader_buttonsLeft,
#AppCleaningStatistics .appHeader_buttonsLeft,
#AppCleaningHistory .appHeader_buttonsLeft,
#AppFormSendInfo .appHeader_buttonsLeft,
#AppFormSignIn .appHeader_buttonsLeft,
#AppGloHistory .appHeader_buttonsLeft {
  justify-content: flex-start;
}
#SmyWhiteHeaderElements .appHeader_buttonsRight,
#AppFidelity .appHeader_buttonsRight,
#AppFidelityMovements .appHeader_buttonsRight,
#AppFidelityReferrals .appHeader_buttonsRight,
#AppBluetooth .appHeader_buttonsRight,
#AppCleaning .appHeader_buttonsRight,
#AppCaptureInstructions .appHeader_buttonsRight,
#AppClinic .appHeader_buttonsRight,
#AppComparison .appHeader_buttonsRight,
#AppContact .appHeader_buttonsRight,
#AppDataSent .appHeader_buttonsRight,
#AppFormSignUp .appHeader_buttonsRight,
#AppGallery .appHeader_buttonsRight,
#AppGeneralMenu .appHeader_buttonsRight,
#AppGloTreatment .appHeader_buttonsRight,
#AppGloReminders .appHeader_buttonsRight,
#AppHelp .appHeader_buttonsRight,
#AppHowToLandingPage .appHeader_buttonsRight,
#AppHowToPage0 .appHeader_buttonsRight,
#AppHowToPage1 .appHeader_buttonsRight,
#AppHowToPage2 .appHeader_buttonsRight,
#AppLive .appHeader_buttonsRight,
#AppMedicalDocuments .appHeader_buttonsRight,
#AppMedicalAnamnesis .appHeader_buttonsRight,
#AppMedicalHistory .appHeader_buttonsRight,
#AppMedicalTimeline .appHeader_buttonsRight,
#AppPlans .appHeader_buttonsRight,
#AppPlansHelp .appHeader_buttonsRight,
#AppProductData .appHeader_buttonsRight,
#AppSelectClinic .appHeader_buttonsRight,
#AppSettingsAbout .appHeader_buttonsRight,
#AppSettingAccount .appHeader_buttonsRight,
#AppSettingsPassword .appHeader_buttonsRight,
#AppSimulate .appHeader_buttonsRight,
#AppSimulationAndDiagnostics .appHeader_buttonsRight,
#AppTakePhoto .appHeader_buttonsRight,
#AppTreatment .appHeader_buttonsRight,
#AppTreatmentReminders .appHeader_buttonsRight,
#AppTreatments .appHeader_buttonsRight,
#AppVideoChat .appHeader_buttonsRight,
#AppCleaningReminders .appHeader_buttonsRight,
#AppCleaningStatistics .appHeader_buttonsRight,
#AppCleaningHistory .appHeader_buttonsRight,
#AppFormSendInfo .appHeader_buttonsRight,
#AppFormSignIn .appHeader_buttonsRight,
#AppGloHistory .appHeader_buttonsRight {
  justify-content: flex-end;
}
#SmyWhiteHeaderElements .appHeaderSmallIcon,
#AppFidelity .appHeaderSmallIcon,
#AppFidelityMovements .appHeaderSmallIcon,
#AppFidelityReferrals .appHeaderSmallIcon,
#AppBluetooth .appHeaderSmallIcon,
#AppCleaning .appHeaderSmallIcon,
#AppCaptureInstructions .appHeaderSmallIcon,
#AppClinic .appHeaderSmallIcon,
#AppComparison .appHeaderSmallIcon,
#AppContact .appHeaderSmallIcon,
#AppDataSent .appHeaderSmallIcon,
#AppFormSignUp .appHeaderSmallIcon,
#AppGallery .appHeaderSmallIcon,
#AppGeneralMenu .appHeaderSmallIcon,
#AppGloTreatment .appHeaderSmallIcon,
#AppGloReminders .appHeaderSmallIcon,
#AppHelp .appHeaderSmallIcon,
#AppHowToLandingPage .appHeaderSmallIcon,
#AppHowToPage0 .appHeaderSmallIcon,
#AppHowToPage1 .appHeaderSmallIcon,
#AppHowToPage2 .appHeaderSmallIcon,
#AppLive .appHeaderSmallIcon,
#AppMedicalDocuments .appHeaderSmallIcon,
#AppMedicalAnamnesis .appHeaderSmallIcon,
#AppMedicalHistory .appHeaderSmallIcon,
#AppMedicalTimeline .appHeaderSmallIcon,
#AppPlans .appHeaderSmallIcon,
#AppPlansHelp .appHeaderSmallIcon,
#AppProductData .appHeaderSmallIcon,
#AppSelectClinic .appHeaderSmallIcon,
#AppSettingsAbout .appHeaderSmallIcon,
#AppSettingAccount .appHeaderSmallIcon,
#AppSettingsPassword .appHeaderSmallIcon,
#AppSimulate .appHeaderSmallIcon,
#AppSimulationAndDiagnostics .appHeaderSmallIcon,
#AppTakePhoto .appHeaderSmallIcon,
#AppTreatment .appHeaderSmallIcon,
#AppTreatmentReminders .appHeaderSmallIcon,
#AppTreatments .appHeaderSmallIcon,
#AppVideoChat .appHeaderSmallIcon,
#AppCleaningReminders .appHeaderSmallIcon,
#AppCleaningStatistics .appHeaderSmallIcon,
#AppCleaningHistory .appHeaderSmallIcon,
#AppFormSendInfo .appHeaderSmallIcon,
#AppFormSignIn .appHeaderSmallIcon,
#AppGloHistory .appHeaderSmallIcon {
  width: 3rem;
}
#SmyWhiteHeaderElements ._buttonLeftBorder,
#AppFidelity ._buttonLeftBorder,
#AppFidelityMovements ._buttonLeftBorder,
#AppFidelityReferrals ._buttonLeftBorder,
#AppBluetooth ._buttonLeftBorder,
#AppCleaning ._buttonLeftBorder,
#AppCaptureInstructions ._buttonLeftBorder,
#AppClinic ._buttonLeftBorder,
#AppComparison ._buttonLeftBorder,
#AppContact ._buttonLeftBorder,
#AppDataSent ._buttonLeftBorder,
#AppFormSignUp ._buttonLeftBorder,
#AppGallery ._buttonLeftBorder,
#AppGeneralMenu ._buttonLeftBorder,
#AppGloTreatment ._buttonLeftBorder,
#AppGloReminders ._buttonLeftBorder,
#AppHelp ._buttonLeftBorder,
#AppHowToLandingPage ._buttonLeftBorder,
#AppHowToPage0 ._buttonLeftBorder,
#AppHowToPage1 ._buttonLeftBorder,
#AppHowToPage2 ._buttonLeftBorder,
#AppLive ._buttonLeftBorder,
#AppMedicalDocuments ._buttonLeftBorder,
#AppMedicalAnamnesis ._buttonLeftBorder,
#AppMedicalHistory ._buttonLeftBorder,
#AppMedicalTimeline ._buttonLeftBorder,
#AppPlans ._buttonLeftBorder,
#AppPlansHelp ._buttonLeftBorder,
#AppProductData ._buttonLeftBorder,
#AppSelectClinic ._buttonLeftBorder,
#AppSettingsAbout ._buttonLeftBorder,
#AppSettingAccount ._buttonLeftBorder,
#AppSettingsPassword ._buttonLeftBorder,
#AppSimulate ._buttonLeftBorder,
#AppSimulationAndDiagnostics ._buttonLeftBorder,
#AppTakePhoto ._buttonLeftBorder,
#AppTreatment ._buttonLeftBorder,
#AppTreatmentReminders ._buttonLeftBorder,
#AppTreatments ._buttonLeftBorder,
#AppVideoChat ._buttonLeftBorder,
#AppCleaningReminders ._buttonLeftBorder,
#AppCleaningStatistics ._buttonLeftBorder,
#AppCleaningHistory ._buttonLeftBorder,
#AppFormSendInfo ._buttonLeftBorder,
#AppFormSignIn ._buttonLeftBorder,
#AppGloHistory ._buttonLeftBorder {
  border-left: 0.114rem solid rgba(255, 255, 255, 0.2);
}
#SmyWhiteHeaderElements ._buttonRightBorder,
#AppFidelity ._buttonRightBorder,
#AppFidelityMovements ._buttonRightBorder,
#AppFidelityReferrals ._buttonRightBorder,
#AppBluetooth ._buttonRightBorder,
#AppCleaning ._buttonRightBorder,
#AppCaptureInstructions ._buttonRightBorder,
#AppClinic ._buttonRightBorder,
#AppComparison ._buttonRightBorder,
#AppContact ._buttonRightBorder,
#AppDataSent ._buttonRightBorder,
#AppFormSignUp ._buttonRightBorder,
#AppGallery ._buttonRightBorder,
#AppGeneralMenu ._buttonRightBorder,
#AppGloTreatment ._buttonRightBorder,
#AppGloReminders ._buttonRightBorder,
#AppHelp ._buttonRightBorder,
#AppHowToLandingPage ._buttonRightBorder,
#AppHowToPage0 ._buttonRightBorder,
#AppHowToPage1 ._buttonRightBorder,
#AppHowToPage2 ._buttonRightBorder,
#AppLive ._buttonRightBorder,
#AppMedicalDocuments ._buttonRightBorder,
#AppMedicalAnamnesis ._buttonRightBorder,
#AppMedicalHistory ._buttonRightBorder,
#AppMedicalTimeline ._buttonRightBorder,
#AppPlans ._buttonRightBorder,
#AppPlansHelp ._buttonRightBorder,
#AppProductData ._buttonRightBorder,
#AppSelectClinic ._buttonRightBorder,
#AppSettingsAbout ._buttonRightBorder,
#AppSettingAccount ._buttonRightBorder,
#AppSettingsPassword ._buttonRightBorder,
#AppSimulate ._buttonRightBorder,
#AppSimulationAndDiagnostics ._buttonRightBorder,
#AppTakePhoto ._buttonRightBorder,
#AppTreatment ._buttonRightBorder,
#AppTreatmentReminders ._buttonRightBorder,
#AppTreatments ._buttonRightBorder,
#AppVideoChat ._buttonRightBorder,
#AppCleaningReminders ._buttonRightBorder,
#AppCleaningStatistics ._buttonRightBorder,
#AppCleaningHistory ._buttonRightBorder,
#AppFormSendInfo ._buttonRightBorder,
#AppFormSignIn ._buttonRightBorder,
#AppGloHistory ._buttonRightBorder {
  border-right: 0.114rem solid rgba(255, 255, 255, 0.2);
}
#SmyWhiteHeaderElements .appHeader_buttonDownload,
#AppFidelity .appHeader_buttonDownload,
#AppFidelityMovements .appHeader_buttonDownload,
#AppFidelityReferrals .appHeader_buttonDownload,
#AppBluetooth .appHeader_buttonDownload,
#AppCleaning .appHeader_buttonDownload,
#AppCaptureInstructions .appHeader_buttonDownload,
#AppClinic .appHeader_buttonDownload,
#AppComparison .appHeader_buttonDownload,
#AppContact .appHeader_buttonDownload,
#AppDataSent .appHeader_buttonDownload,
#AppFormSignUp .appHeader_buttonDownload,
#AppGallery .appHeader_buttonDownload,
#AppGeneralMenu .appHeader_buttonDownload,
#AppGloTreatment .appHeader_buttonDownload,
#AppGloReminders .appHeader_buttonDownload,
#AppHelp .appHeader_buttonDownload,
#AppHowToLandingPage .appHeader_buttonDownload,
#AppHowToPage0 .appHeader_buttonDownload,
#AppHowToPage1 .appHeader_buttonDownload,
#AppHowToPage2 .appHeader_buttonDownload,
#AppLive .appHeader_buttonDownload,
#AppMedicalDocuments .appHeader_buttonDownload,
#AppMedicalAnamnesis .appHeader_buttonDownload,
#AppMedicalHistory .appHeader_buttonDownload,
#AppMedicalTimeline .appHeader_buttonDownload,
#AppPlans .appHeader_buttonDownload,
#AppPlansHelp .appHeader_buttonDownload,
#AppProductData .appHeader_buttonDownload,
#AppSelectClinic .appHeader_buttonDownload,
#AppSettingsAbout .appHeader_buttonDownload,
#AppSettingAccount .appHeader_buttonDownload,
#AppSettingsPassword .appHeader_buttonDownload,
#AppSimulate .appHeader_buttonDownload,
#AppSimulationAndDiagnostics .appHeader_buttonDownload,
#AppTakePhoto .appHeader_buttonDownload,
#AppTreatment .appHeader_buttonDownload,
#AppTreatmentReminders .appHeader_buttonDownload,
#AppTreatments .appHeader_buttonDownload,
#AppVideoChat .appHeader_buttonDownload,
#AppCleaningReminders .appHeader_buttonDownload,
#AppCleaningStatistics .appHeader_buttonDownload,
#AppCleaningHistory .appHeader_buttonDownload,
#AppFormSendInfo .appHeader_buttonDownload,
#AppFormSignIn .appHeader_buttonDownload,
#AppGloHistory .appHeader_buttonDownload {
  opacity: 0.5;
  pointer-events: none;
}
#SmyWhiteHeaderElements .appHeader_buttonDownload._active,
#AppFidelity .appHeader_buttonDownload._active,
#AppFidelityMovements .appHeader_buttonDownload._active,
#AppFidelityReferrals .appHeader_buttonDownload._active,
#AppBluetooth .appHeader_buttonDownload._active,
#AppCleaning .appHeader_buttonDownload._active,
#AppCaptureInstructions .appHeader_buttonDownload._active,
#AppClinic .appHeader_buttonDownload._active,
#AppComparison .appHeader_buttonDownload._active,
#AppContact .appHeader_buttonDownload._active,
#AppDataSent .appHeader_buttonDownload._active,
#AppFormSignUp .appHeader_buttonDownload._active,
#AppGallery .appHeader_buttonDownload._active,
#AppGeneralMenu .appHeader_buttonDownload._active,
#AppGloTreatment .appHeader_buttonDownload._active,
#AppGloReminders .appHeader_buttonDownload._active,
#AppHelp .appHeader_buttonDownload._active,
#AppHowToLandingPage .appHeader_buttonDownload._active,
#AppHowToPage0 .appHeader_buttonDownload._active,
#AppHowToPage1 .appHeader_buttonDownload._active,
#AppHowToPage2 .appHeader_buttonDownload._active,
#AppLive .appHeader_buttonDownload._active,
#AppMedicalDocuments .appHeader_buttonDownload._active,
#AppMedicalAnamnesis .appHeader_buttonDownload._active,
#AppMedicalHistory .appHeader_buttonDownload._active,
#AppMedicalTimeline .appHeader_buttonDownload._active,
#AppPlans .appHeader_buttonDownload._active,
#AppPlansHelp .appHeader_buttonDownload._active,
#AppProductData .appHeader_buttonDownload._active,
#AppSelectClinic .appHeader_buttonDownload._active,
#AppSettingsAbout .appHeader_buttonDownload._active,
#AppSettingAccount .appHeader_buttonDownload._active,
#AppSettingsPassword .appHeader_buttonDownload._active,
#AppSimulate .appHeader_buttonDownload._active,
#AppSimulationAndDiagnostics .appHeader_buttonDownload._active,
#AppTakePhoto .appHeader_buttonDownload._active,
#AppTreatment .appHeader_buttonDownload._active,
#AppTreatmentReminders .appHeader_buttonDownload._active,
#AppTreatments .appHeader_buttonDownload._active,
#AppVideoChat .appHeader_buttonDownload._active,
#AppCleaningReminders .appHeader_buttonDownload._active,
#AppCleaningStatistics .appHeader_buttonDownload._active,
#AppCleaningHistory .appHeader_buttonDownload._active,
#AppFormSendInfo .appHeader_buttonDownload._active,
#AppFormSignIn .appHeader_buttonDownload._active,
#AppGloHistory .appHeader_buttonDownload._active {
  opacity: 1;
  pointer-events: initial;
}
#SmyWhiteHeaderElements .appHeader_buttonHelp,
#SmyWhiteHeaderElements .appHeader_buttonDownload,
#SmyWhiteHeaderElements .appHeader_button,
#SmyWhiteHeaderElements .appHeaderBlue_button,
#AppFidelity .appHeader_buttonHelp,
#AppFidelity .appHeader_buttonDownload,
#AppFidelity .appHeader_button,
#AppFidelity .appHeaderBlue_button,
#AppFidelityMovements .appHeader_buttonHelp,
#AppFidelityMovements .appHeader_buttonDownload,
#AppFidelityMovements .appHeader_button,
#AppFidelityMovements .appHeaderBlue_button,
#AppFidelityReferrals .appHeader_buttonHelp,
#AppFidelityReferrals .appHeader_buttonDownload,
#AppFidelityReferrals .appHeader_button,
#AppFidelityReferrals .appHeaderBlue_button,
#AppBluetooth .appHeader_buttonHelp,
#AppBluetooth .appHeader_buttonDownload,
#AppBluetooth .appHeader_button,
#AppBluetooth .appHeaderBlue_button,
#AppCleaning .appHeader_buttonHelp,
#AppCleaning .appHeader_buttonDownload,
#AppCleaning .appHeader_button,
#AppCleaning .appHeaderBlue_button,
#AppCaptureInstructions .appHeader_buttonHelp,
#AppCaptureInstructions .appHeader_buttonDownload,
#AppCaptureInstructions .appHeader_button,
#AppCaptureInstructions .appHeaderBlue_button,
#AppClinic .appHeader_buttonHelp,
#AppClinic .appHeader_buttonDownload,
#AppClinic .appHeader_button,
#AppClinic .appHeaderBlue_button,
#AppComparison .appHeader_buttonHelp,
#AppComparison .appHeader_buttonDownload,
#AppComparison .appHeader_button,
#AppComparison .appHeaderBlue_button,
#AppContact .appHeader_buttonHelp,
#AppContact .appHeader_buttonDownload,
#AppContact .appHeader_button,
#AppContact .appHeaderBlue_button,
#AppDataSent .appHeader_buttonHelp,
#AppDataSent .appHeader_buttonDownload,
#AppDataSent .appHeader_button,
#AppDataSent .appHeaderBlue_button,
#AppFormSignUp .appHeader_buttonHelp,
#AppFormSignUp .appHeader_buttonDownload,
#AppFormSignUp .appHeader_button,
#AppFormSignUp .appHeaderBlue_button,
#AppGallery .appHeader_buttonHelp,
#AppGallery .appHeader_buttonDownload,
#AppGallery .appHeader_button,
#AppGallery .appHeaderBlue_button,
#AppGeneralMenu .appHeader_buttonHelp,
#AppGeneralMenu .appHeader_buttonDownload,
#AppGeneralMenu .appHeader_button,
#AppGeneralMenu .appHeaderBlue_button,
#AppGloTreatment .appHeader_buttonHelp,
#AppGloTreatment .appHeader_buttonDownload,
#AppGloTreatment .appHeader_button,
#AppGloTreatment .appHeaderBlue_button,
#AppGloReminders .appHeader_buttonHelp,
#AppGloReminders .appHeader_buttonDownload,
#AppGloReminders .appHeader_button,
#AppGloReminders .appHeaderBlue_button,
#AppHelp .appHeader_buttonHelp,
#AppHelp .appHeader_buttonDownload,
#AppHelp .appHeader_button,
#AppHelp .appHeaderBlue_button,
#AppHowToLandingPage .appHeader_buttonHelp,
#AppHowToLandingPage .appHeader_buttonDownload,
#AppHowToLandingPage .appHeader_button,
#AppHowToLandingPage .appHeaderBlue_button,
#AppHowToPage0 .appHeader_buttonHelp,
#AppHowToPage0 .appHeader_buttonDownload,
#AppHowToPage0 .appHeader_button,
#AppHowToPage0 .appHeaderBlue_button,
#AppHowToPage1 .appHeader_buttonHelp,
#AppHowToPage1 .appHeader_buttonDownload,
#AppHowToPage1 .appHeader_button,
#AppHowToPage1 .appHeaderBlue_button,
#AppHowToPage2 .appHeader_buttonHelp,
#AppHowToPage2 .appHeader_buttonDownload,
#AppHowToPage2 .appHeader_button,
#AppHowToPage2 .appHeaderBlue_button,
#AppLive .appHeader_buttonHelp,
#AppLive .appHeader_buttonDownload,
#AppLive .appHeader_button,
#AppLive .appHeaderBlue_button,
#AppMedicalDocuments .appHeader_buttonHelp,
#AppMedicalDocuments .appHeader_buttonDownload,
#AppMedicalDocuments .appHeader_button,
#AppMedicalDocuments .appHeaderBlue_button,
#AppMedicalAnamnesis .appHeader_buttonHelp,
#AppMedicalAnamnesis .appHeader_buttonDownload,
#AppMedicalAnamnesis .appHeader_button,
#AppMedicalAnamnesis .appHeaderBlue_button,
#AppMedicalHistory .appHeader_buttonHelp,
#AppMedicalHistory .appHeader_buttonDownload,
#AppMedicalHistory .appHeader_button,
#AppMedicalHistory .appHeaderBlue_button,
#AppMedicalTimeline .appHeader_buttonHelp,
#AppMedicalTimeline .appHeader_buttonDownload,
#AppMedicalTimeline .appHeader_button,
#AppMedicalTimeline .appHeaderBlue_button,
#AppPlans .appHeader_buttonHelp,
#AppPlans .appHeader_buttonDownload,
#AppPlans .appHeader_button,
#AppPlans .appHeaderBlue_button,
#AppPlansHelp .appHeader_buttonHelp,
#AppPlansHelp .appHeader_buttonDownload,
#AppPlansHelp .appHeader_button,
#AppPlansHelp .appHeaderBlue_button,
#AppProductData .appHeader_buttonHelp,
#AppProductData .appHeader_buttonDownload,
#AppProductData .appHeader_button,
#AppProductData .appHeaderBlue_button,
#AppSelectClinic .appHeader_buttonHelp,
#AppSelectClinic .appHeader_buttonDownload,
#AppSelectClinic .appHeader_button,
#AppSelectClinic .appHeaderBlue_button,
#AppSettingsAbout .appHeader_buttonHelp,
#AppSettingsAbout .appHeader_buttonDownload,
#AppSettingsAbout .appHeader_button,
#AppSettingsAbout .appHeaderBlue_button,
#AppSettingAccount .appHeader_buttonHelp,
#AppSettingAccount .appHeader_buttonDownload,
#AppSettingAccount .appHeader_button,
#AppSettingAccount .appHeaderBlue_button,
#AppSettingsPassword .appHeader_buttonHelp,
#AppSettingsPassword .appHeader_buttonDownload,
#AppSettingsPassword .appHeader_button,
#AppSettingsPassword .appHeaderBlue_button,
#AppSimulate .appHeader_buttonHelp,
#AppSimulate .appHeader_buttonDownload,
#AppSimulate .appHeader_button,
#AppSimulate .appHeaderBlue_button,
#AppSimulationAndDiagnostics .appHeader_buttonHelp,
#AppSimulationAndDiagnostics .appHeader_buttonDownload,
#AppSimulationAndDiagnostics .appHeader_button,
#AppSimulationAndDiagnostics .appHeaderBlue_button,
#AppTakePhoto .appHeader_buttonHelp,
#AppTakePhoto .appHeader_buttonDownload,
#AppTakePhoto .appHeader_button,
#AppTakePhoto .appHeaderBlue_button,
#AppTreatment .appHeader_buttonHelp,
#AppTreatment .appHeader_buttonDownload,
#AppTreatment .appHeader_button,
#AppTreatment .appHeaderBlue_button,
#AppTreatmentReminders .appHeader_buttonHelp,
#AppTreatmentReminders .appHeader_buttonDownload,
#AppTreatmentReminders .appHeader_button,
#AppTreatmentReminders .appHeaderBlue_button,
#AppTreatments .appHeader_buttonHelp,
#AppTreatments .appHeader_buttonDownload,
#AppTreatments .appHeader_button,
#AppTreatments .appHeaderBlue_button,
#AppVideoChat .appHeader_buttonHelp,
#AppVideoChat .appHeader_buttonDownload,
#AppVideoChat .appHeader_button,
#AppVideoChat .appHeaderBlue_button,
#AppCleaningReminders .appHeader_buttonHelp,
#AppCleaningReminders .appHeader_buttonDownload,
#AppCleaningReminders .appHeader_button,
#AppCleaningReminders .appHeaderBlue_button,
#AppCleaningStatistics .appHeader_buttonHelp,
#AppCleaningStatistics .appHeader_buttonDownload,
#AppCleaningStatistics .appHeader_button,
#AppCleaningStatistics .appHeaderBlue_button,
#AppCleaningHistory .appHeader_buttonHelp,
#AppCleaningHistory .appHeader_buttonDownload,
#AppCleaningHistory .appHeader_button,
#AppCleaningHistory .appHeaderBlue_button,
#AppFormSendInfo .appHeader_buttonHelp,
#AppFormSendInfo .appHeader_buttonDownload,
#AppFormSendInfo .appHeader_button,
#AppFormSendInfo .appHeaderBlue_button,
#AppFormSignIn .appHeader_buttonHelp,
#AppFormSignIn .appHeader_buttonDownload,
#AppFormSignIn .appHeader_button,
#AppFormSignIn .appHeaderBlue_button,
#AppGloHistory .appHeader_buttonHelp,
#AppGloHistory .appHeader_buttonDownload,
#AppGloHistory .appHeader_button,
#AppGloHistory .appHeaderBlue_button {
  margin: 0;
  background-color: transparent;
  width: 4rem;
  fill: white;
  box-sizing: border-box;
  background-origin: content-box;
  text-align: center;
  cursor: pointer;
}
#SmyWhiteHeaderElements .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#SmyWhiteHeaderElements .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#SmyWhiteHeaderElements .appHeader_button .appHeaderBlue_buttonIcon,
#SmyWhiteHeaderElements .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFidelity .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFidelity .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFidelity .appHeader_button .appHeaderBlue_buttonIcon,
#AppFidelity .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFidelityMovements .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFidelityMovements .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFidelityMovements .appHeader_button .appHeaderBlue_buttonIcon,
#AppFidelityMovements .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFidelityReferrals .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFidelityReferrals .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFidelityReferrals .appHeader_button .appHeaderBlue_buttonIcon,
#AppFidelityReferrals .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppBluetooth .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppBluetooth .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppBluetooth .appHeader_button .appHeaderBlue_buttonIcon,
#AppBluetooth .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppCleaning .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppCleaning .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppCleaning .appHeader_button .appHeaderBlue_buttonIcon,
#AppCleaning .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppCaptureInstructions .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppCaptureInstructions .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppCaptureInstructions .appHeader_button .appHeaderBlue_buttonIcon,
#AppCaptureInstructions .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppClinic .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppClinic .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppClinic .appHeader_button .appHeaderBlue_buttonIcon,
#AppClinic .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppComparison .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppComparison .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppComparison .appHeader_button .appHeaderBlue_buttonIcon,
#AppComparison .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppContact .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppContact .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppContact .appHeader_button .appHeaderBlue_buttonIcon,
#AppContact .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppDataSent .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppDataSent .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppDataSent .appHeader_button .appHeaderBlue_buttonIcon,
#AppDataSent .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFormSignUp .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFormSignUp .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFormSignUp .appHeader_button .appHeaderBlue_buttonIcon,
#AppFormSignUp .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppGallery .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppGallery .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppGallery .appHeader_button .appHeaderBlue_buttonIcon,
#AppGallery .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppGeneralMenu .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppGeneralMenu .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppGeneralMenu .appHeader_button .appHeaderBlue_buttonIcon,
#AppGeneralMenu .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppGloTreatment .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppGloTreatment .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppGloTreatment .appHeader_button .appHeaderBlue_buttonIcon,
#AppGloTreatment .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppGloReminders .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppGloReminders .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppGloReminders .appHeader_button .appHeaderBlue_buttonIcon,
#AppGloReminders .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppHelp .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppHelp .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppHelp .appHeader_button .appHeaderBlue_buttonIcon,
#AppHelp .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppHowToLandingPage .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppHowToLandingPage .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppHowToLandingPage .appHeader_button .appHeaderBlue_buttonIcon,
#AppHowToLandingPage .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppHowToPage0 .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppHowToPage0 .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppHowToPage0 .appHeader_button .appHeaderBlue_buttonIcon,
#AppHowToPage0 .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppHowToPage1 .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppHowToPage1 .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppHowToPage1 .appHeader_button .appHeaderBlue_buttonIcon,
#AppHowToPage1 .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppHowToPage2 .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppHowToPage2 .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppHowToPage2 .appHeader_button .appHeaderBlue_buttonIcon,
#AppHowToPage2 .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppLive .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppLive .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppLive .appHeader_button .appHeaderBlue_buttonIcon,
#AppLive .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppMedicalDocuments .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppMedicalDocuments .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppMedicalDocuments .appHeader_button .appHeaderBlue_buttonIcon,
#AppMedicalDocuments .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppMedicalAnamnesis .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppMedicalAnamnesis .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppMedicalAnamnesis .appHeader_button .appHeaderBlue_buttonIcon,
#AppMedicalAnamnesis .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppMedicalHistory .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppMedicalHistory .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppMedicalHistory .appHeader_button .appHeaderBlue_buttonIcon,
#AppMedicalHistory .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppMedicalTimeline .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppMedicalTimeline .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppMedicalTimeline .appHeader_button .appHeaderBlue_buttonIcon,
#AppMedicalTimeline .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppPlans .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppPlans .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppPlans .appHeader_button .appHeaderBlue_buttonIcon,
#AppPlans .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppPlansHelp .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppPlansHelp .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppPlansHelp .appHeader_button .appHeaderBlue_buttonIcon,
#AppPlansHelp .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppProductData .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppProductData .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppProductData .appHeader_button .appHeaderBlue_buttonIcon,
#AppProductData .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSelectClinic .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSelectClinic .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSelectClinic .appHeader_button .appHeaderBlue_buttonIcon,
#AppSelectClinic .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSettingsAbout .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSettingsAbout .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSettingsAbout .appHeader_button .appHeaderBlue_buttonIcon,
#AppSettingsAbout .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSettingAccount .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSettingAccount .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSettingAccount .appHeader_button .appHeaderBlue_buttonIcon,
#AppSettingAccount .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSettingsPassword .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSettingsPassword .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSettingsPassword .appHeader_button .appHeaderBlue_buttonIcon,
#AppSettingsPassword .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSimulate .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSimulate .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSimulate .appHeader_button .appHeaderBlue_buttonIcon,
#AppSimulate .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_button .appHeaderBlue_buttonIcon,
#AppSimulationAndDiagnostics .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppTakePhoto .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppTakePhoto .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppTakePhoto .appHeader_button .appHeaderBlue_buttonIcon,
#AppTakePhoto .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppTreatment .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppTreatment .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppTreatment .appHeader_button .appHeaderBlue_buttonIcon,
#AppTreatment .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppTreatmentReminders .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppTreatmentReminders .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppTreatmentReminders .appHeader_button .appHeaderBlue_buttonIcon,
#AppTreatmentReminders .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppTreatments .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppTreatments .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppTreatments .appHeader_button .appHeaderBlue_buttonIcon,
#AppTreatments .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppVideoChat .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppVideoChat .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppVideoChat .appHeader_button .appHeaderBlue_buttonIcon,
#AppVideoChat .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppCleaningReminders .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppCleaningReminders .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppCleaningReminders .appHeader_button .appHeaderBlue_buttonIcon,
#AppCleaningReminders .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppCleaningStatistics .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppCleaningStatistics .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppCleaningStatistics .appHeader_button .appHeaderBlue_buttonIcon,
#AppCleaningStatistics .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppCleaningHistory .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppCleaningHistory .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppCleaningHistory .appHeader_button .appHeaderBlue_buttonIcon,
#AppCleaningHistory .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFormSendInfo .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFormSendInfo .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFormSendInfo .appHeader_button .appHeaderBlue_buttonIcon,
#AppFormSendInfo .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppFormSignIn .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppFormSignIn .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppFormSignIn .appHeader_button .appHeaderBlue_buttonIcon,
#AppFormSignIn .appHeaderBlue_button .appHeaderBlue_buttonIcon,
#AppGloHistory .appHeader_buttonHelp .appHeaderBlue_buttonIcon,
#AppGloHistory .appHeader_buttonDownload .appHeaderBlue_buttonIcon,
#AppGloHistory .appHeader_button .appHeaderBlue_buttonIcon,
#AppGloHistory .appHeaderBlue_button .appHeaderBlue_buttonIcon {
  height: 100%;
  width: 100%;
}
#SmyWhiteHeaderElements .appHeader_buttonHelp .appHeaderBlue_icons,
#SmyWhiteHeaderElements .appHeader_buttonDownload .appHeaderBlue_icons,
#SmyWhiteHeaderElements .appHeader_button .appHeaderBlue_icons,
#SmyWhiteHeaderElements .appHeaderBlue_button .appHeaderBlue_icons,
#AppFidelity .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFidelity .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFidelity .appHeader_button .appHeaderBlue_icons,
#AppFidelity .appHeaderBlue_button .appHeaderBlue_icons,
#AppFidelityMovements .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFidelityMovements .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFidelityMovements .appHeader_button .appHeaderBlue_icons,
#AppFidelityMovements .appHeaderBlue_button .appHeaderBlue_icons,
#AppFidelityReferrals .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFidelityReferrals .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFidelityReferrals .appHeader_button .appHeaderBlue_icons,
#AppFidelityReferrals .appHeaderBlue_button .appHeaderBlue_icons,
#AppBluetooth .appHeader_buttonHelp .appHeaderBlue_icons,
#AppBluetooth .appHeader_buttonDownload .appHeaderBlue_icons,
#AppBluetooth .appHeader_button .appHeaderBlue_icons,
#AppBluetooth .appHeaderBlue_button .appHeaderBlue_icons,
#AppCleaning .appHeader_buttonHelp .appHeaderBlue_icons,
#AppCleaning .appHeader_buttonDownload .appHeaderBlue_icons,
#AppCleaning .appHeader_button .appHeaderBlue_icons,
#AppCleaning .appHeaderBlue_button .appHeaderBlue_icons,
#AppCaptureInstructions .appHeader_buttonHelp .appHeaderBlue_icons,
#AppCaptureInstructions .appHeader_buttonDownload .appHeaderBlue_icons,
#AppCaptureInstructions .appHeader_button .appHeaderBlue_icons,
#AppCaptureInstructions .appHeaderBlue_button .appHeaderBlue_icons,
#AppClinic .appHeader_buttonHelp .appHeaderBlue_icons,
#AppClinic .appHeader_buttonDownload .appHeaderBlue_icons,
#AppClinic .appHeader_button .appHeaderBlue_icons,
#AppClinic .appHeaderBlue_button .appHeaderBlue_icons,
#AppComparison .appHeader_buttonHelp .appHeaderBlue_icons,
#AppComparison .appHeader_buttonDownload .appHeaderBlue_icons,
#AppComparison .appHeader_button .appHeaderBlue_icons,
#AppComparison .appHeaderBlue_button .appHeaderBlue_icons,
#AppContact .appHeader_buttonHelp .appHeaderBlue_icons,
#AppContact .appHeader_buttonDownload .appHeaderBlue_icons,
#AppContact .appHeader_button .appHeaderBlue_icons,
#AppContact .appHeaderBlue_button .appHeaderBlue_icons,
#AppDataSent .appHeader_buttonHelp .appHeaderBlue_icons,
#AppDataSent .appHeader_buttonDownload .appHeaderBlue_icons,
#AppDataSent .appHeader_button .appHeaderBlue_icons,
#AppDataSent .appHeaderBlue_button .appHeaderBlue_icons,
#AppFormSignUp .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFormSignUp .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFormSignUp .appHeader_button .appHeaderBlue_icons,
#AppFormSignUp .appHeaderBlue_button .appHeaderBlue_icons,
#AppGallery .appHeader_buttonHelp .appHeaderBlue_icons,
#AppGallery .appHeader_buttonDownload .appHeaderBlue_icons,
#AppGallery .appHeader_button .appHeaderBlue_icons,
#AppGallery .appHeaderBlue_button .appHeaderBlue_icons,
#AppGeneralMenu .appHeader_buttonHelp .appHeaderBlue_icons,
#AppGeneralMenu .appHeader_buttonDownload .appHeaderBlue_icons,
#AppGeneralMenu .appHeader_button .appHeaderBlue_icons,
#AppGeneralMenu .appHeaderBlue_button .appHeaderBlue_icons,
#AppGloTreatment .appHeader_buttonHelp .appHeaderBlue_icons,
#AppGloTreatment .appHeader_buttonDownload .appHeaderBlue_icons,
#AppGloTreatment .appHeader_button .appHeaderBlue_icons,
#AppGloTreatment .appHeaderBlue_button .appHeaderBlue_icons,
#AppGloReminders .appHeader_buttonHelp .appHeaderBlue_icons,
#AppGloReminders .appHeader_buttonDownload .appHeaderBlue_icons,
#AppGloReminders .appHeader_button .appHeaderBlue_icons,
#AppGloReminders .appHeaderBlue_button .appHeaderBlue_icons,
#AppHelp .appHeader_buttonHelp .appHeaderBlue_icons,
#AppHelp .appHeader_buttonDownload .appHeaderBlue_icons,
#AppHelp .appHeader_button .appHeaderBlue_icons,
#AppHelp .appHeaderBlue_button .appHeaderBlue_icons,
#AppHowToLandingPage .appHeader_buttonHelp .appHeaderBlue_icons,
#AppHowToLandingPage .appHeader_buttonDownload .appHeaderBlue_icons,
#AppHowToLandingPage .appHeader_button .appHeaderBlue_icons,
#AppHowToLandingPage .appHeaderBlue_button .appHeaderBlue_icons,
#AppHowToPage0 .appHeader_buttonHelp .appHeaderBlue_icons,
#AppHowToPage0 .appHeader_buttonDownload .appHeaderBlue_icons,
#AppHowToPage0 .appHeader_button .appHeaderBlue_icons,
#AppHowToPage0 .appHeaderBlue_button .appHeaderBlue_icons,
#AppHowToPage1 .appHeader_buttonHelp .appHeaderBlue_icons,
#AppHowToPage1 .appHeader_buttonDownload .appHeaderBlue_icons,
#AppHowToPage1 .appHeader_button .appHeaderBlue_icons,
#AppHowToPage1 .appHeaderBlue_button .appHeaderBlue_icons,
#AppHowToPage2 .appHeader_buttonHelp .appHeaderBlue_icons,
#AppHowToPage2 .appHeader_buttonDownload .appHeaderBlue_icons,
#AppHowToPage2 .appHeader_button .appHeaderBlue_icons,
#AppHowToPage2 .appHeaderBlue_button .appHeaderBlue_icons,
#AppLive .appHeader_buttonHelp .appHeaderBlue_icons,
#AppLive .appHeader_buttonDownload .appHeaderBlue_icons,
#AppLive .appHeader_button .appHeaderBlue_icons,
#AppLive .appHeaderBlue_button .appHeaderBlue_icons,
#AppMedicalDocuments .appHeader_buttonHelp .appHeaderBlue_icons,
#AppMedicalDocuments .appHeader_buttonDownload .appHeaderBlue_icons,
#AppMedicalDocuments .appHeader_button .appHeaderBlue_icons,
#AppMedicalDocuments .appHeaderBlue_button .appHeaderBlue_icons,
#AppMedicalAnamnesis .appHeader_buttonHelp .appHeaderBlue_icons,
#AppMedicalAnamnesis .appHeader_buttonDownload .appHeaderBlue_icons,
#AppMedicalAnamnesis .appHeader_button .appHeaderBlue_icons,
#AppMedicalAnamnesis .appHeaderBlue_button .appHeaderBlue_icons,
#AppMedicalHistory .appHeader_buttonHelp .appHeaderBlue_icons,
#AppMedicalHistory .appHeader_buttonDownload .appHeaderBlue_icons,
#AppMedicalHistory .appHeader_button .appHeaderBlue_icons,
#AppMedicalHistory .appHeaderBlue_button .appHeaderBlue_icons,
#AppMedicalTimeline .appHeader_buttonHelp .appHeaderBlue_icons,
#AppMedicalTimeline .appHeader_buttonDownload .appHeaderBlue_icons,
#AppMedicalTimeline .appHeader_button .appHeaderBlue_icons,
#AppMedicalTimeline .appHeaderBlue_button .appHeaderBlue_icons,
#AppPlans .appHeader_buttonHelp .appHeaderBlue_icons,
#AppPlans .appHeader_buttonDownload .appHeaderBlue_icons,
#AppPlans .appHeader_button .appHeaderBlue_icons,
#AppPlans .appHeaderBlue_button .appHeaderBlue_icons,
#AppPlansHelp .appHeader_buttonHelp .appHeaderBlue_icons,
#AppPlansHelp .appHeader_buttonDownload .appHeaderBlue_icons,
#AppPlansHelp .appHeader_button .appHeaderBlue_icons,
#AppPlansHelp .appHeaderBlue_button .appHeaderBlue_icons,
#AppProductData .appHeader_buttonHelp .appHeaderBlue_icons,
#AppProductData .appHeader_buttonDownload .appHeaderBlue_icons,
#AppProductData .appHeader_button .appHeaderBlue_icons,
#AppProductData .appHeaderBlue_button .appHeaderBlue_icons,
#AppSelectClinic .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSelectClinic .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSelectClinic .appHeader_button .appHeaderBlue_icons,
#AppSelectClinic .appHeaderBlue_button .appHeaderBlue_icons,
#AppSettingsAbout .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSettingsAbout .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSettingsAbout .appHeader_button .appHeaderBlue_icons,
#AppSettingsAbout .appHeaderBlue_button .appHeaderBlue_icons,
#AppSettingAccount .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSettingAccount .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSettingAccount .appHeader_button .appHeaderBlue_icons,
#AppSettingAccount .appHeaderBlue_button .appHeaderBlue_icons,
#AppSettingsPassword .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSettingsPassword .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSettingsPassword .appHeader_button .appHeaderBlue_icons,
#AppSettingsPassword .appHeaderBlue_button .appHeaderBlue_icons,
#AppSimulate .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSimulate .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSimulate .appHeader_button .appHeaderBlue_icons,
#AppSimulate .appHeaderBlue_button .appHeaderBlue_icons,
#AppSimulationAndDiagnostics .appHeader_buttonHelp .appHeaderBlue_icons,
#AppSimulationAndDiagnostics .appHeader_buttonDownload .appHeaderBlue_icons,
#AppSimulationAndDiagnostics .appHeader_button .appHeaderBlue_icons,
#AppSimulationAndDiagnostics .appHeaderBlue_button .appHeaderBlue_icons,
#AppTakePhoto .appHeader_buttonHelp .appHeaderBlue_icons,
#AppTakePhoto .appHeader_buttonDownload .appHeaderBlue_icons,
#AppTakePhoto .appHeader_button .appHeaderBlue_icons,
#AppTakePhoto .appHeaderBlue_button .appHeaderBlue_icons,
#AppTreatment .appHeader_buttonHelp .appHeaderBlue_icons,
#AppTreatment .appHeader_buttonDownload .appHeaderBlue_icons,
#AppTreatment .appHeader_button .appHeaderBlue_icons,
#AppTreatment .appHeaderBlue_button .appHeaderBlue_icons,
#AppTreatmentReminders .appHeader_buttonHelp .appHeaderBlue_icons,
#AppTreatmentReminders .appHeader_buttonDownload .appHeaderBlue_icons,
#AppTreatmentReminders .appHeader_button .appHeaderBlue_icons,
#AppTreatmentReminders .appHeaderBlue_button .appHeaderBlue_icons,
#AppTreatments .appHeader_buttonHelp .appHeaderBlue_icons,
#AppTreatments .appHeader_buttonDownload .appHeaderBlue_icons,
#AppTreatments .appHeader_button .appHeaderBlue_icons,
#AppTreatments .appHeaderBlue_button .appHeaderBlue_icons,
#AppVideoChat .appHeader_buttonHelp .appHeaderBlue_icons,
#AppVideoChat .appHeader_buttonDownload .appHeaderBlue_icons,
#AppVideoChat .appHeader_button .appHeaderBlue_icons,
#AppVideoChat .appHeaderBlue_button .appHeaderBlue_icons,
#AppCleaningReminders .appHeader_buttonHelp .appHeaderBlue_icons,
#AppCleaningReminders .appHeader_buttonDownload .appHeaderBlue_icons,
#AppCleaningReminders .appHeader_button .appHeaderBlue_icons,
#AppCleaningReminders .appHeaderBlue_button .appHeaderBlue_icons,
#AppCleaningStatistics .appHeader_buttonHelp .appHeaderBlue_icons,
#AppCleaningStatistics .appHeader_buttonDownload .appHeaderBlue_icons,
#AppCleaningStatistics .appHeader_button .appHeaderBlue_icons,
#AppCleaningStatistics .appHeaderBlue_button .appHeaderBlue_icons,
#AppCleaningHistory .appHeader_buttonHelp .appHeaderBlue_icons,
#AppCleaningHistory .appHeader_buttonDownload .appHeaderBlue_icons,
#AppCleaningHistory .appHeader_button .appHeaderBlue_icons,
#AppCleaningHistory .appHeaderBlue_button .appHeaderBlue_icons,
#AppFormSendInfo .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFormSendInfo .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFormSendInfo .appHeader_button .appHeaderBlue_icons,
#AppFormSendInfo .appHeaderBlue_button .appHeaderBlue_icons,
#AppFormSignIn .appHeader_buttonHelp .appHeaderBlue_icons,
#AppFormSignIn .appHeader_buttonDownload .appHeaderBlue_icons,
#AppFormSignIn .appHeader_button .appHeaderBlue_icons,
#AppFormSignIn .appHeaderBlue_button .appHeaderBlue_icons,
#AppGloHistory .appHeader_buttonHelp .appHeaderBlue_icons,
#AppGloHistory .appHeader_buttonDownload .appHeaderBlue_icons,
#AppGloHistory .appHeader_button .appHeaderBlue_icons,
#AppGloHistory .appHeaderBlue_button .appHeaderBlue_icons {
  width: 2.5rem;
  height: 2.5rem;
}
#SmyWhiteHeaderElements .appHeader_buttonHelp .appHeader_buttonIcon,
#SmyWhiteHeaderElements .appHeader_buttonDownload .appHeader_buttonIcon,
#SmyWhiteHeaderElements .appHeader_button .appHeader_buttonIcon,
#SmyWhiteHeaderElements .appHeaderBlue_button .appHeader_buttonIcon,
#AppFidelity .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFidelity .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFidelity .appHeader_button .appHeader_buttonIcon,
#AppFidelity .appHeaderBlue_button .appHeader_buttonIcon,
#AppFidelityMovements .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFidelityMovements .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFidelityMovements .appHeader_button .appHeader_buttonIcon,
#AppFidelityMovements .appHeaderBlue_button .appHeader_buttonIcon,
#AppFidelityReferrals .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFidelityReferrals .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFidelityReferrals .appHeader_button .appHeader_buttonIcon,
#AppFidelityReferrals .appHeaderBlue_button .appHeader_buttonIcon,
#AppBluetooth .appHeader_buttonHelp .appHeader_buttonIcon,
#AppBluetooth .appHeader_buttonDownload .appHeader_buttonIcon,
#AppBluetooth .appHeader_button .appHeader_buttonIcon,
#AppBluetooth .appHeaderBlue_button .appHeader_buttonIcon,
#AppCleaning .appHeader_buttonHelp .appHeader_buttonIcon,
#AppCleaning .appHeader_buttonDownload .appHeader_buttonIcon,
#AppCleaning .appHeader_button .appHeader_buttonIcon,
#AppCleaning .appHeaderBlue_button .appHeader_buttonIcon,
#AppCaptureInstructions .appHeader_buttonHelp .appHeader_buttonIcon,
#AppCaptureInstructions .appHeader_buttonDownload .appHeader_buttonIcon,
#AppCaptureInstructions .appHeader_button .appHeader_buttonIcon,
#AppCaptureInstructions .appHeaderBlue_button .appHeader_buttonIcon,
#AppClinic .appHeader_buttonHelp .appHeader_buttonIcon,
#AppClinic .appHeader_buttonDownload .appHeader_buttonIcon,
#AppClinic .appHeader_button .appHeader_buttonIcon,
#AppClinic .appHeaderBlue_button .appHeader_buttonIcon,
#AppComparison .appHeader_buttonHelp .appHeader_buttonIcon,
#AppComparison .appHeader_buttonDownload .appHeader_buttonIcon,
#AppComparison .appHeader_button .appHeader_buttonIcon,
#AppComparison .appHeaderBlue_button .appHeader_buttonIcon,
#AppContact .appHeader_buttonHelp .appHeader_buttonIcon,
#AppContact .appHeader_buttonDownload .appHeader_buttonIcon,
#AppContact .appHeader_button .appHeader_buttonIcon,
#AppContact .appHeaderBlue_button .appHeader_buttonIcon,
#AppDataSent .appHeader_buttonHelp .appHeader_buttonIcon,
#AppDataSent .appHeader_buttonDownload .appHeader_buttonIcon,
#AppDataSent .appHeader_button .appHeader_buttonIcon,
#AppDataSent .appHeaderBlue_button .appHeader_buttonIcon,
#AppFormSignUp .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFormSignUp .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFormSignUp .appHeader_button .appHeader_buttonIcon,
#AppFormSignUp .appHeaderBlue_button .appHeader_buttonIcon,
#AppGallery .appHeader_buttonHelp .appHeader_buttonIcon,
#AppGallery .appHeader_buttonDownload .appHeader_buttonIcon,
#AppGallery .appHeader_button .appHeader_buttonIcon,
#AppGallery .appHeaderBlue_button .appHeader_buttonIcon,
#AppGeneralMenu .appHeader_buttonHelp .appHeader_buttonIcon,
#AppGeneralMenu .appHeader_buttonDownload .appHeader_buttonIcon,
#AppGeneralMenu .appHeader_button .appHeader_buttonIcon,
#AppGeneralMenu .appHeaderBlue_button .appHeader_buttonIcon,
#AppGloTreatment .appHeader_buttonHelp .appHeader_buttonIcon,
#AppGloTreatment .appHeader_buttonDownload .appHeader_buttonIcon,
#AppGloTreatment .appHeader_button .appHeader_buttonIcon,
#AppGloTreatment .appHeaderBlue_button .appHeader_buttonIcon,
#AppGloReminders .appHeader_buttonHelp .appHeader_buttonIcon,
#AppGloReminders .appHeader_buttonDownload .appHeader_buttonIcon,
#AppGloReminders .appHeader_button .appHeader_buttonIcon,
#AppGloReminders .appHeaderBlue_button .appHeader_buttonIcon,
#AppHelp .appHeader_buttonHelp .appHeader_buttonIcon,
#AppHelp .appHeader_buttonDownload .appHeader_buttonIcon,
#AppHelp .appHeader_button .appHeader_buttonIcon,
#AppHelp .appHeaderBlue_button .appHeader_buttonIcon,
#AppHowToLandingPage .appHeader_buttonHelp .appHeader_buttonIcon,
#AppHowToLandingPage .appHeader_buttonDownload .appHeader_buttonIcon,
#AppHowToLandingPage .appHeader_button .appHeader_buttonIcon,
#AppHowToLandingPage .appHeaderBlue_button .appHeader_buttonIcon,
#AppHowToPage0 .appHeader_buttonHelp .appHeader_buttonIcon,
#AppHowToPage0 .appHeader_buttonDownload .appHeader_buttonIcon,
#AppHowToPage0 .appHeader_button .appHeader_buttonIcon,
#AppHowToPage0 .appHeaderBlue_button .appHeader_buttonIcon,
#AppHowToPage1 .appHeader_buttonHelp .appHeader_buttonIcon,
#AppHowToPage1 .appHeader_buttonDownload .appHeader_buttonIcon,
#AppHowToPage1 .appHeader_button .appHeader_buttonIcon,
#AppHowToPage1 .appHeaderBlue_button .appHeader_buttonIcon,
#AppHowToPage2 .appHeader_buttonHelp .appHeader_buttonIcon,
#AppHowToPage2 .appHeader_buttonDownload .appHeader_buttonIcon,
#AppHowToPage2 .appHeader_button .appHeader_buttonIcon,
#AppHowToPage2 .appHeaderBlue_button .appHeader_buttonIcon,
#AppLive .appHeader_buttonHelp .appHeader_buttonIcon,
#AppLive .appHeader_buttonDownload .appHeader_buttonIcon,
#AppLive .appHeader_button .appHeader_buttonIcon,
#AppLive .appHeaderBlue_button .appHeader_buttonIcon,
#AppMedicalDocuments .appHeader_buttonHelp .appHeader_buttonIcon,
#AppMedicalDocuments .appHeader_buttonDownload .appHeader_buttonIcon,
#AppMedicalDocuments .appHeader_button .appHeader_buttonIcon,
#AppMedicalDocuments .appHeaderBlue_button .appHeader_buttonIcon,
#AppMedicalAnamnesis .appHeader_buttonHelp .appHeader_buttonIcon,
#AppMedicalAnamnesis .appHeader_buttonDownload .appHeader_buttonIcon,
#AppMedicalAnamnesis .appHeader_button .appHeader_buttonIcon,
#AppMedicalAnamnesis .appHeaderBlue_button .appHeader_buttonIcon,
#AppMedicalHistory .appHeader_buttonHelp .appHeader_buttonIcon,
#AppMedicalHistory .appHeader_buttonDownload .appHeader_buttonIcon,
#AppMedicalHistory .appHeader_button .appHeader_buttonIcon,
#AppMedicalHistory .appHeaderBlue_button .appHeader_buttonIcon,
#AppMedicalTimeline .appHeader_buttonHelp .appHeader_buttonIcon,
#AppMedicalTimeline .appHeader_buttonDownload .appHeader_buttonIcon,
#AppMedicalTimeline .appHeader_button .appHeader_buttonIcon,
#AppMedicalTimeline .appHeaderBlue_button .appHeader_buttonIcon,
#AppPlans .appHeader_buttonHelp .appHeader_buttonIcon,
#AppPlans .appHeader_buttonDownload .appHeader_buttonIcon,
#AppPlans .appHeader_button .appHeader_buttonIcon,
#AppPlans .appHeaderBlue_button .appHeader_buttonIcon,
#AppPlansHelp .appHeader_buttonHelp .appHeader_buttonIcon,
#AppPlansHelp .appHeader_buttonDownload .appHeader_buttonIcon,
#AppPlansHelp .appHeader_button .appHeader_buttonIcon,
#AppPlansHelp .appHeaderBlue_button .appHeader_buttonIcon,
#AppProductData .appHeader_buttonHelp .appHeader_buttonIcon,
#AppProductData .appHeader_buttonDownload .appHeader_buttonIcon,
#AppProductData .appHeader_button .appHeader_buttonIcon,
#AppProductData .appHeaderBlue_button .appHeader_buttonIcon,
#AppSelectClinic .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSelectClinic .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSelectClinic .appHeader_button .appHeader_buttonIcon,
#AppSelectClinic .appHeaderBlue_button .appHeader_buttonIcon,
#AppSettingsAbout .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSettingsAbout .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSettingsAbout .appHeader_button .appHeader_buttonIcon,
#AppSettingsAbout .appHeaderBlue_button .appHeader_buttonIcon,
#AppSettingAccount .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSettingAccount .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSettingAccount .appHeader_button .appHeader_buttonIcon,
#AppSettingAccount .appHeaderBlue_button .appHeader_buttonIcon,
#AppSettingsPassword .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSettingsPassword .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSettingsPassword .appHeader_button .appHeader_buttonIcon,
#AppSettingsPassword .appHeaderBlue_button .appHeader_buttonIcon,
#AppSimulate .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSimulate .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSimulate .appHeader_button .appHeader_buttonIcon,
#AppSimulate .appHeaderBlue_button .appHeader_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_buttonHelp .appHeader_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_buttonDownload .appHeader_buttonIcon,
#AppSimulationAndDiagnostics .appHeader_button .appHeader_buttonIcon,
#AppSimulationAndDiagnostics .appHeaderBlue_button .appHeader_buttonIcon,
#AppTakePhoto .appHeader_buttonHelp .appHeader_buttonIcon,
#AppTakePhoto .appHeader_buttonDownload .appHeader_buttonIcon,
#AppTakePhoto .appHeader_button .appHeader_buttonIcon,
#AppTakePhoto .appHeaderBlue_button .appHeader_buttonIcon,
#AppTreatment .appHeader_buttonHelp .appHeader_buttonIcon,
#AppTreatment .appHeader_buttonDownload .appHeader_buttonIcon,
#AppTreatment .appHeader_button .appHeader_buttonIcon,
#AppTreatment .appHeaderBlue_button .appHeader_buttonIcon,
#AppTreatmentReminders .appHeader_buttonHelp .appHeader_buttonIcon,
#AppTreatmentReminders .appHeader_buttonDownload .appHeader_buttonIcon,
#AppTreatmentReminders .appHeader_button .appHeader_buttonIcon,
#AppTreatmentReminders .appHeaderBlue_button .appHeader_buttonIcon,
#AppTreatments .appHeader_buttonHelp .appHeader_buttonIcon,
#AppTreatments .appHeader_buttonDownload .appHeader_buttonIcon,
#AppTreatments .appHeader_button .appHeader_buttonIcon,
#AppTreatments .appHeaderBlue_button .appHeader_buttonIcon,
#AppVideoChat .appHeader_buttonHelp .appHeader_buttonIcon,
#AppVideoChat .appHeader_buttonDownload .appHeader_buttonIcon,
#AppVideoChat .appHeader_button .appHeader_buttonIcon,
#AppVideoChat .appHeaderBlue_button .appHeader_buttonIcon,
#AppCleaningReminders .appHeader_buttonHelp .appHeader_buttonIcon,
#AppCleaningReminders .appHeader_buttonDownload .appHeader_buttonIcon,
#AppCleaningReminders .appHeader_button .appHeader_buttonIcon,
#AppCleaningReminders .appHeaderBlue_button .appHeader_buttonIcon,
#AppCleaningStatistics .appHeader_buttonHelp .appHeader_buttonIcon,
#AppCleaningStatistics .appHeader_buttonDownload .appHeader_buttonIcon,
#AppCleaningStatistics .appHeader_button .appHeader_buttonIcon,
#AppCleaningStatistics .appHeaderBlue_button .appHeader_buttonIcon,
#AppCleaningHistory .appHeader_buttonHelp .appHeader_buttonIcon,
#AppCleaningHistory .appHeader_buttonDownload .appHeader_buttonIcon,
#AppCleaningHistory .appHeader_button .appHeader_buttonIcon,
#AppCleaningHistory .appHeaderBlue_button .appHeader_buttonIcon,
#AppFormSendInfo .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFormSendInfo .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFormSendInfo .appHeader_button .appHeader_buttonIcon,
#AppFormSendInfo .appHeaderBlue_button .appHeader_buttonIcon,
#AppFormSignIn .appHeader_buttonHelp .appHeader_buttonIcon,
#AppFormSignIn .appHeader_buttonDownload .appHeader_buttonIcon,
#AppFormSignIn .appHeader_button .appHeader_buttonIcon,
#AppFormSignIn .appHeaderBlue_button .appHeader_buttonIcon,
#AppGloHistory .appHeader_buttonHelp .appHeader_buttonIcon,
#AppGloHistory .appHeader_buttonDownload .appHeader_buttonIcon,
#AppGloHistory .appHeader_button .appHeader_buttonIcon,
#AppGloHistory .appHeaderBlue_button .appHeader_buttonIcon {
  height: 100%;
  width: 100%;
}
#SmyWhiteHeaderElements .appHeader_buttonHelp:active,
#SmyWhiteHeaderElements .appHeader_buttonDownload:active,
#SmyWhiteHeaderElements .appHeader_button:active,
#SmyWhiteHeaderElements .appHeaderBlue_button:active,
#AppFidelity .appHeader_buttonHelp:active,
#AppFidelity .appHeader_buttonDownload:active,
#AppFidelity .appHeader_button:active,
#AppFidelity .appHeaderBlue_button:active,
#AppFidelityMovements .appHeader_buttonHelp:active,
#AppFidelityMovements .appHeader_buttonDownload:active,
#AppFidelityMovements .appHeader_button:active,
#AppFidelityMovements .appHeaderBlue_button:active,
#AppFidelityReferrals .appHeader_buttonHelp:active,
#AppFidelityReferrals .appHeader_buttonDownload:active,
#AppFidelityReferrals .appHeader_button:active,
#AppFidelityReferrals .appHeaderBlue_button:active,
#AppBluetooth .appHeader_buttonHelp:active,
#AppBluetooth .appHeader_buttonDownload:active,
#AppBluetooth .appHeader_button:active,
#AppBluetooth .appHeaderBlue_button:active,
#AppCleaning .appHeader_buttonHelp:active,
#AppCleaning .appHeader_buttonDownload:active,
#AppCleaning .appHeader_button:active,
#AppCleaning .appHeaderBlue_button:active,
#AppCaptureInstructions .appHeader_buttonHelp:active,
#AppCaptureInstructions .appHeader_buttonDownload:active,
#AppCaptureInstructions .appHeader_button:active,
#AppCaptureInstructions .appHeaderBlue_button:active,
#AppClinic .appHeader_buttonHelp:active,
#AppClinic .appHeader_buttonDownload:active,
#AppClinic .appHeader_button:active,
#AppClinic .appHeaderBlue_button:active,
#AppComparison .appHeader_buttonHelp:active,
#AppComparison .appHeader_buttonDownload:active,
#AppComparison .appHeader_button:active,
#AppComparison .appHeaderBlue_button:active,
#AppContact .appHeader_buttonHelp:active,
#AppContact .appHeader_buttonDownload:active,
#AppContact .appHeader_button:active,
#AppContact .appHeaderBlue_button:active,
#AppDataSent .appHeader_buttonHelp:active,
#AppDataSent .appHeader_buttonDownload:active,
#AppDataSent .appHeader_button:active,
#AppDataSent .appHeaderBlue_button:active,
#AppFormSignUp .appHeader_buttonHelp:active,
#AppFormSignUp .appHeader_buttonDownload:active,
#AppFormSignUp .appHeader_button:active,
#AppFormSignUp .appHeaderBlue_button:active,
#AppGallery .appHeader_buttonHelp:active,
#AppGallery .appHeader_buttonDownload:active,
#AppGallery .appHeader_button:active,
#AppGallery .appHeaderBlue_button:active,
#AppGeneralMenu .appHeader_buttonHelp:active,
#AppGeneralMenu .appHeader_buttonDownload:active,
#AppGeneralMenu .appHeader_button:active,
#AppGeneralMenu .appHeaderBlue_button:active,
#AppGloTreatment .appHeader_buttonHelp:active,
#AppGloTreatment .appHeader_buttonDownload:active,
#AppGloTreatment .appHeader_button:active,
#AppGloTreatment .appHeaderBlue_button:active,
#AppGloReminders .appHeader_buttonHelp:active,
#AppGloReminders .appHeader_buttonDownload:active,
#AppGloReminders .appHeader_button:active,
#AppGloReminders .appHeaderBlue_button:active,
#AppHelp .appHeader_buttonHelp:active,
#AppHelp .appHeader_buttonDownload:active,
#AppHelp .appHeader_button:active,
#AppHelp .appHeaderBlue_button:active,
#AppHowToLandingPage .appHeader_buttonHelp:active,
#AppHowToLandingPage .appHeader_buttonDownload:active,
#AppHowToLandingPage .appHeader_button:active,
#AppHowToLandingPage .appHeaderBlue_button:active,
#AppHowToPage0 .appHeader_buttonHelp:active,
#AppHowToPage0 .appHeader_buttonDownload:active,
#AppHowToPage0 .appHeader_button:active,
#AppHowToPage0 .appHeaderBlue_button:active,
#AppHowToPage1 .appHeader_buttonHelp:active,
#AppHowToPage1 .appHeader_buttonDownload:active,
#AppHowToPage1 .appHeader_button:active,
#AppHowToPage1 .appHeaderBlue_button:active,
#AppHowToPage2 .appHeader_buttonHelp:active,
#AppHowToPage2 .appHeader_buttonDownload:active,
#AppHowToPage2 .appHeader_button:active,
#AppHowToPage2 .appHeaderBlue_button:active,
#AppLive .appHeader_buttonHelp:active,
#AppLive .appHeader_buttonDownload:active,
#AppLive .appHeader_button:active,
#AppLive .appHeaderBlue_button:active,
#AppMedicalDocuments .appHeader_buttonHelp:active,
#AppMedicalDocuments .appHeader_buttonDownload:active,
#AppMedicalDocuments .appHeader_button:active,
#AppMedicalDocuments .appHeaderBlue_button:active,
#AppMedicalAnamnesis .appHeader_buttonHelp:active,
#AppMedicalAnamnesis .appHeader_buttonDownload:active,
#AppMedicalAnamnesis .appHeader_button:active,
#AppMedicalAnamnesis .appHeaderBlue_button:active,
#AppMedicalHistory .appHeader_buttonHelp:active,
#AppMedicalHistory .appHeader_buttonDownload:active,
#AppMedicalHistory .appHeader_button:active,
#AppMedicalHistory .appHeaderBlue_button:active,
#AppMedicalTimeline .appHeader_buttonHelp:active,
#AppMedicalTimeline .appHeader_buttonDownload:active,
#AppMedicalTimeline .appHeader_button:active,
#AppMedicalTimeline .appHeaderBlue_button:active,
#AppPlans .appHeader_buttonHelp:active,
#AppPlans .appHeader_buttonDownload:active,
#AppPlans .appHeader_button:active,
#AppPlans .appHeaderBlue_button:active,
#AppPlansHelp .appHeader_buttonHelp:active,
#AppPlansHelp .appHeader_buttonDownload:active,
#AppPlansHelp .appHeader_button:active,
#AppPlansHelp .appHeaderBlue_button:active,
#AppProductData .appHeader_buttonHelp:active,
#AppProductData .appHeader_buttonDownload:active,
#AppProductData .appHeader_button:active,
#AppProductData .appHeaderBlue_button:active,
#AppSelectClinic .appHeader_buttonHelp:active,
#AppSelectClinic .appHeader_buttonDownload:active,
#AppSelectClinic .appHeader_button:active,
#AppSelectClinic .appHeaderBlue_button:active,
#AppSettingsAbout .appHeader_buttonHelp:active,
#AppSettingsAbout .appHeader_buttonDownload:active,
#AppSettingsAbout .appHeader_button:active,
#AppSettingsAbout .appHeaderBlue_button:active,
#AppSettingAccount .appHeader_buttonHelp:active,
#AppSettingAccount .appHeader_buttonDownload:active,
#AppSettingAccount .appHeader_button:active,
#AppSettingAccount .appHeaderBlue_button:active,
#AppSettingsPassword .appHeader_buttonHelp:active,
#AppSettingsPassword .appHeader_buttonDownload:active,
#AppSettingsPassword .appHeader_button:active,
#AppSettingsPassword .appHeaderBlue_button:active,
#AppSimulate .appHeader_buttonHelp:active,
#AppSimulate .appHeader_buttonDownload:active,
#AppSimulate .appHeader_button:active,
#AppSimulate .appHeaderBlue_button:active,
#AppSimulationAndDiagnostics .appHeader_buttonHelp:active,
#AppSimulationAndDiagnostics .appHeader_buttonDownload:active,
#AppSimulationAndDiagnostics .appHeader_button:active,
#AppSimulationAndDiagnostics .appHeaderBlue_button:active,
#AppTakePhoto .appHeader_buttonHelp:active,
#AppTakePhoto .appHeader_buttonDownload:active,
#AppTakePhoto .appHeader_button:active,
#AppTakePhoto .appHeaderBlue_button:active,
#AppTreatment .appHeader_buttonHelp:active,
#AppTreatment .appHeader_buttonDownload:active,
#AppTreatment .appHeader_button:active,
#AppTreatment .appHeaderBlue_button:active,
#AppTreatmentReminders .appHeader_buttonHelp:active,
#AppTreatmentReminders .appHeader_buttonDownload:active,
#AppTreatmentReminders .appHeader_button:active,
#AppTreatmentReminders .appHeaderBlue_button:active,
#AppTreatments .appHeader_buttonHelp:active,
#AppTreatments .appHeader_buttonDownload:active,
#AppTreatments .appHeader_button:active,
#AppTreatments .appHeaderBlue_button:active,
#AppVideoChat .appHeader_buttonHelp:active,
#AppVideoChat .appHeader_buttonDownload:active,
#AppVideoChat .appHeader_button:active,
#AppVideoChat .appHeaderBlue_button:active,
#AppCleaningReminders .appHeader_buttonHelp:active,
#AppCleaningReminders .appHeader_buttonDownload:active,
#AppCleaningReminders .appHeader_button:active,
#AppCleaningReminders .appHeaderBlue_button:active,
#AppCleaningStatistics .appHeader_buttonHelp:active,
#AppCleaningStatistics .appHeader_buttonDownload:active,
#AppCleaningStatistics .appHeader_button:active,
#AppCleaningStatistics .appHeaderBlue_button:active,
#AppCleaningHistory .appHeader_buttonHelp:active,
#AppCleaningHistory .appHeader_buttonDownload:active,
#AppCleaningHistory .appHeader_button:active,
#AppCleaningHistory .appHeaderBlue_button:active,
#AppFormSendInfo .appHeader_buttonHelp:active,
#AppFormSendInfo .appHeader_buttonDownload:active,
#AppFormSendInfo .appHeader_button:active,
#AppFormSendInfo .appHeaderBlue_button:active,
#AppFormSignIn .appHeader_buttonHelp:active,
#AppFormSignIn .appHeader_buttonDownload:active,
#AppFormSignIn .appHeader_button:active,
#AppFormSignIn .appHeaderBlue_button:active,
#AppGloHistory .appHeader_buttonHelp:active,
#AppGloHistory .appHeader_buttonDownload:active,
#AppGloHistory .appHeader_button:active,
#AppGloHistory .appHeaderBlue_button:active {
  background-color: #4696c8;
}
#SmyWhiteHeaderElements .appHeader_nextButton,
#AppFidelity .appHeader_nextButton,
#AppFidelityMovements .appHeader_nextButton,
#AppFidelityReferrals .appHeader_nextButton,
#AppBluetooth .appHeader_nextButton,
#AppCleaning .appHeader_nextButton,
#AppCaptureInstructions .appHeader_nextButton,
#AppClinic .appHeader_nextButton,
#AppComparison .appHeader_nextButton,
#AppContact .appHeader_nextButton,
#AppDataSent .appHeader_nextButton,
#AppFormSignUp .appHeader_nextButton,
#AppGallery .appHeader_nextButton,
#AppGeneralMenu .appHeader_nextButton,
#AppGloTreatment .appHeader_nextButton,
#AppGloReminders .appHeader_nextButton,
#AppHelp .appHeader_nextButton,
#AppHowToLandingPage .appHeader_nextButton,
#AppHowToPage0 .appHeader_nextButton,
#AppHowToPage1 .appHeader_nextButton,
#AppHowToPage2 .appHeader_nextButton,
#AppLive .appHeader_nextButton,
#AppMedicalDocuments .appHeader_nextButton,
#AppMedicalAnamnesis .appHeader_nextButton,
#AppMedicalHistory .appHeader_nextButton,
#AppMedicalTimeline .appHeader_nextButton,
#AppPlans .appHeader_nextButton,
#AppPlansHelp .appHeader_nextButton,
#AppProductData .appHeader_nextButton,
#AppSelectClinic .appHeader_nextButton,
#AppSettingsAbout .appHeader_nextButton,
#AppSettingAccount .appHeader_nextButton,
#AppSettingsPassword .appHeader_nextButton,
#AppSimulate .appHeader_nextButton,
#AppSimulationAndDiagnostics .appHeader_nextButton,
#AppTakePhoto .appHeader_nextButton,
#AppTreatment .appHeader_nextButton,
#AppTreatmentReminders .appHeader_nextButton,
#AppTreatments .appHeader_nextButton,
#AppVideoChat .appHeader_nextButton,
#AppCleaningReminders .appHeader_nextButton,
#AppCleaningStatistics .appHeader_nextButton,
#AppCleaningHistory .appHeader_nextButton,
#AppFormSendInfo .appHeader_nextButton,
#AppFormSignIn .appHeader_nextButton,
#AppGloHistory .appHeader_nextButton {
  margin: 0 1.55rem;
  background-color: transparent;
  height: 3.2rem;
  width: 3.2rem;
  padding: 0.5rem 0.5rem;
  box-sizing: border-box;
  background-origin: content-box;
  text-align: center;
  border-radius: 100%;
  float: right;
  cursor: pointer;
}
#SmyWhiteHeaderElements .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFidelity .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFidelityMovements .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFidelityReferrals .appHeader_nextButton .appHeader_nextButtonIcon,
#AppBluetooth .appHeader_nextButton .appHeader_nextButtonIcon,
#AppCleaning .appHeader_nextButton .appHeader_nextButtonIcon,
#AppCaptureInstructions .appHeader_nextButton .appHeader_nextButtonIcon,
#AppClinic .appHeader_nextButton .appHeader_nextButtonIcon,
#AppComparison .appHeader_nextButton .appHeader_nextButtonIcon,
#AppContact .appHeader_nextButton .appHeader_nextButtonIcon,
#AppDataSent .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFormSignUp .appHeader_nextButton .appHeader_nextButtonIcon,
#AppGallery .appHeader_nextButton .appHeader_nextButtonIcon,
#AppGeneralMenu .appHeader_nextButton .appHeader_nextButtonIcon,
#AppGloTreatment .appHeader_nextButton .appHeader_nextButtonIcon,
#AppGloReminders .appHeader_nextButton .appHeader_nextButtonIcon,
#AppHelp .appHeader_nextButton .appHeader_nextButtonIcon,
#AppHowToLandingPage .appHeader_nextButton .appHeader_nextButtonIcon,
#AppHowToPage0 .appHeader_nextButton .appHeader_nextButtonIcon,
#AppHowToPage1 .appHeader_nextButton .appHeader_nextButtonIcon,
#AppHowToPage2 .appHeader_nextButton .appHeader_nextButtonIcon,
#AppLive .appHeader_nextButton .appHeader_nextButtonIcon,
#AppMedicalDocuments .appHeader_nextButton .appHeader_nextButtonIcon,
#AppMedicalAnamnesis .appHeader_nextButton .appHeader_nextButtonIcon,
#AppMedicalHistory .appHeader_nextButton .appHeader_nextButtonIcon,
#AppMedicalTimeline .appHeader_nextButton .appHeader_nextButtonIcon,
#AppPlans .appHeader_nextButton .appHeader_nextButtonIcon,
#AppPlansHelp .appHeader_nextButton .appHeader_nextButtonIcon,
#AppProductData .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSelectClinic .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSettingsAbout .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSettingAccount .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSettingsPassword .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSimulate .appHeader_nextButton .appHeader_nextButtonIcon,
#AppSimulationAndDiagnostics .appHeader_nextButton .appHeader_nextButtonIcon,
#AppTakePhoto .appHeader_nextButton .appHeader_nextButtonIcon,
#AppTreatment .appHeader_nextButton .appHeader_nextButtonIcon,
#AppTreatmentReminders .appHeader_nextButton .appHeader_nextButtonIcon,
#AppTreatments .appHeader_nextButton .appHeader_nextButtonIcon,
#AppVideoChat .appHeader_nextButton .appHeader_nextButtonIcon,
#AppCleaningReminders .appHeader_nextButton .appHeader_nextButtonIcon,
#AppCleaningStatistics .appHeader_nextButton .appHeader_nextButtonIcon,
#AppCleaningHistory .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFormSendInfo .appHeader_nextButton .appHeader_nextButtonIcon,
#AppFormSignIn .appHeader_nextButton .appHeader_nextButtonIcon,
#AppGloHistory .appHeader_nextButton .appHeader_nextButtonIcon {
  height: 100%;
  width: 100%;
  fill: black;
  transform: scale(-1);
}
#SmyWhiteHeaderElements .appHeader_nextButton:active,
#AppFidelity .appHeader_nextButton:active,
#AppFidelityMovements .appHeader_nextButton:active,
#AppFidelityReferrals .appHeader_nextButton:active,
#AppBluetooth .appHeader_nextButton:active,
#AppCleaning .appHeader_nextButton:active,
#AppCaptureInstructions .appHeader_nextButton:active,
#AppClinic .appHeader_nextButton:active,
#AppComparison .appHeader_nextButton:active,
#AppContact .appHeader_nextButton:active,
#AppDataSent .appHeader_nextButton:active,
#AppFormSignUp .appHeader_nextButton:active,
#AppGallery .appHeader_nextButton:active,
#AppGeneralMenu .appHeader_nextButton:active,
#AppGloTreatment .appHeader_nextButton:active,
#AppGloReminders .appHeader_nextButton:active,
#AppHelp .appHeader_nextButton:active,
#AppHowToLandingPage .appHeader_nextButton:active,
#AppHowToPage0 .appHeader_nextButton:active,
#AppHowToPage1 .appHeader_nextButton:active,
#AppHowToPage2 .appHeader_nextButton:active,
#AppLive .appHeader_nextButton:active,
#AppMedicalDocuments .appHeader_nextButton:active,
#AppMedicalAnamnesis .appHeader_nextButton:active,
#AppMedicalHistory .appHeader_nextButton:active,
#AppMedicalTimeline .appHeader_nextButton:active,
#AppPlans .appHeader_nextButton:active,
#AppPlansHelp .appHeader_nextButton:active,
#AppProductData .appHeader_nextButton:active,
#AppSelectClinic .appHeader_nextButton:active,
#AppSettingsAbout .appHeader_nextButton:active,
#AppSettingAccount .appHeader_nextButton:active,
#AppSettingsPassword .appHeader_nextButton:active,
#AppSimulate .appHeader_nextButton:active,
#AppSimulationAndDiagnostics .appHeader_nextButton:active,
#AppTakePhoto .appHeader_nextButton:active,
#AppTreatment .appHeader_nextButton:active,
#AppTreatmentReminders .appHeader_nextButton:active,
#AppTreatments .appHeader_nextButton:active,
#AppVideoChat .appHeader_nextButton:active,
#AppCleaningReminders .appHeader_nextButton:active,
#AppCleaningStatistics .appHeader_nextButton:active,
#AppCleaningHistory .appHeader_nextButton:active,
#AppFormSendInfo .appHeader_nextButton:active,
#AppFormSignIn .appHeader_nextButton:active,
#AppGloHistory .appHeader_nextButton:active {
  background-color: #be2323;
}
#AppBulletlistElements .appBulletlist_outerCircle,
#AppCaptureInstructions .appBulletlist_outerCircle,
#AppWelcomeScreen .appBulletlist_outerCircle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
}
#AppBulletlistElements .appBulletlist_circle,
#AppCaptureInstructions .appBulletlist_circle,
#AppWelcomeScreen .appBulletlist_circle {
  border: 0.1rem solid #307FE2;
  display: block;
  border-radius: 50%;
  height: 0.7rem;
  width: 0.7rem;
  margin: 0.55rem;
}
#AppBulletlistElements .appBulletlist_circle._selected,
#AppCaptureInstructions .appBulletlist_circle._selected,
#AppWelcomeScreen .appBulletlist_circle._selected {
  background: #307FE2;
}
#AppFormSignRemember,
#AppFormSignUp,
#AppFormSendInfo,
#AppFormSignIn {
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
#AppFormSignRemember .container,
#AppFormSignUp .container,
#AppFormSendInfo .container,
#AppFormSignIn .container {
  display: block;
  position: relative;
  padding-left: 4.26rem;
  margin-bottom: 1.46rem;
  cursor: pointer;
  font-size: 1.5rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.7rem;
  margin-top: 1rem;
}
#AppFormSignRemember .container input,
#AppFormSignUp .container input,
#AppFormSendInfo .container input,
#AppFormSignIn .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#AppFormSignRemember .checkmark,
#AppFormSignUp .checkmark,
#AppFormSendInfo .checkmark,
#AppFormSignIn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.8rem;
  width: 2.8rem;
  background-color: #e0e0e0;
  pointer-events: none;
}
#AppFormSignRemember .container:hover input ~ .checkmark,
#AppFormSignUp .container:hover input ~ .checkmark,
#AppFormSendInfo .container:hover input ~ .checkmark,
#AppFormSignIn .container:hover input ~ .checkmark {
  background-color: #ccc;
}
#AppFormSignRemember .container input:checked ~ .checkmark,
#AppFormSignUp .container input:checked ~ .checkmark,
#AppFormSendInfo .container input:checked ~ .checkmark,
#AppFormSignIn .container input:checked ~ .checkmark {
  background-color: black;
}
#AppFormSignRemember .checkmark:after,
#AppFormSignUp .checkmark:after,
#AppFormSendInfo .checkmark:after,
#AppFormSignIn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#AppFormSignRemember .container input:checked ~ .checkmark:after,
#AppFormSignUp .container input:checked ~ .checkmark:after,
#AppFormSendInfo .container input:checked ~ .checkmark:after,
#AppFormSignIn .container input:checked ~ .checkmark:after {
  display: block;
}
#AppFormSignRemember .container .checkmark:after,
#AppFormSignUp .container .checkmark:after,
#AppFormSendInfo .container .checkmark:after,
#AppFormSignIn .container .checkmark:after {
  left: 0.97rem;
  top: 0.37rem;
  width: 0.6rem;
  height: 1.2rem;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#AppSettingsScreens .appSetingsNextButtonSvg,
#AppFidelity .appSetingsNextButtonSvg,
#AppFidelityMovements .appSetingsNextButtonSvg,
#AppFidelityReferrals .appSetingsNextButtonSvg,
#AppBluetooth .appSetingsNextButtonSvg,
#AppCleaningReminders .appSetingsNextButtonSvg,
#AppCleaningStatistics .appSetingsNextButtonSvg,
#AppContact .appSetingsNextButtonSvg,
#AppGloReminders .appSetingsNextButtonSvg,
#AppHelp .appSetingsNextButtonSvg,
#AppOverlayGloFirstTreatmentAfterInstallation .appSetingsNextButtonSvg,
#AppSettingsAbout .appSetingsNextButtonSvg,
#AppSettingAccount .appSetingsNextButtonSvg,
#AppSettingsPassword .appSetingsNextButtonSvg {
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  fill: #1279a1;
}
#AppSettingsScreens .appSettingsInputs,
#AppFidelity .appSettingsInputs,
#AppFidelityMovements .appSettingsInputs,
#AppFidelityReferrals .appSettingsInputs,
#AppBluetooth .appSettingsInputs,
#AppCleaningReminders .appSettingsInputs,
#AppCleaningStatistics .appSettingsInputs,
#AppContact .appSettingsInputs,
#AppGloReminders .appSettingsInputs,
#AppHelp .appSettingsInputs,
#AppOverlayGloFirstTreatmentAfterInstallation .appSettingsInputs,
#AppSettingsAbout .appSettingsInputs,
#AppSettingAccount .appSettingsInputs,
#AppSettingsPassword .appSettingsInputs {
  width: 100%;
  overflow: auto;
  padding-left: 4rem;
  padding-right: 4rem;
  box-sizing: border-box;
  padding-bottom: 8rem;
}
#AppSettingsScreens .AppSettingsAccountInput,
#AppFidelity .AppSettingsAccountInput,
#AppFidelityMovements .AppSettingsAccountInput,
#AppFidelityReferrals .AppSettingsAccountInput,
#AppBluetooth .AppSettingsAccountInput,
#AppCleaningReminders .AppSettingsAccountInput,
#AppCleaningStatistics .AppSettingsAccountInput,
#AppContact .AppSettingsAccountInput,
#AppGloReminders .AppSettingsAccountInput,
#AppHelp .AppSettingsAccountInput,
#AppOverlayGloFirstTreatmentAfterInstallation .AppSettingsAccountInput,
#AppSettingsAbout .AppSettingsAccountInput,
#AppSettingAccount .AppSettingsAccountInput,
#AppSettingsPassword .AppSettingsAccountInput {
  border: none;
  border-bottom: 0.114rem solid #c4e7eb;
  color: #00b3c5;
  background-color: transparent;
  width: 100%;
  font-size: 2.048rem;
  height: 3rem;
}
#AppSettingsScreens .AppSettingsAccountInput::placeholder,
#AppFidelity .AppSettingsAccountInput::placeholder,
#AppFidelityMovements .AppSettingsAccountInput::placeholder,
#AppFidelityReferrals .AppSettingsAccountInput::placeholder,
#AppBluetooth .AppSettingsAccountInput::placeholder,
#AppCleaningReminders .AppSettingsAccountInput::placeholder,
#AppCleaningStatistics .AppSettingsAccountInput::placeholder,
#AppContact .AppSettingsAccountInput::placeholder,
#AppGloReminders .AppSettingsAccountInput::placeholder,
#AppHelp .AppSettingsAccountInput::placeholder,
#AppOverlayGloFirstTreatmentAfterInstallation .AppSettingsAccountInput::placeholder,
#AppSettingsAbout .AppSettingsAccountInput::placeholder,
#AppSettingAccount .AppSettingsAccountInput::placeholder,
#AppSettingsPassword .AppSettingsAccountInput::placeholder {
  color: #00b3c5;
}
#AppSettingsScreens .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppFidelity .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppFidelityMovements .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppFidelityReferrals .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppBluetooth .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppCleaningReminders .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppCleaningStatistics .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppContact .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppGloReminders .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppHelp .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppOverlayGloFirstTreatmentAfterInstallation .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppSettingsAbout .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppSettingAccount .AppSettingsAccountInputGroup._error .AppSettingsAccountInput,
#AppSettingsPassword .AppSettingsAccountInputGroup._error .AppSettingsAccountInput {
  border-bottom-color: red;
}
#AppSettingsScreens .AppSettingsAccountInput:focus,
#AppFidelity .AppSettingsAccountInput:focus,
#AppFidelityMovements .AppSettingsAccountInput:focus,
#AppFidelityReferrals .AppSettingsAccountInput:focus,
#AppBluetooth .AppSettingsAccountInput:focus,
#AppCleaningReminders .AppSettingsAccountInput:focus,
#AppCleaningStatistics .AppSettingsAccountInput:focus,
#AppContact .AppSettingsAccountInput:focus,
#AppGloReminders .AppSettingsAccountInput:focus,
#AppHelp .AppSettingsAccountInput:focus,
#AppOverlayGloFirstTreatmentAfterInstallation .AppSettingsAccountInput:focus,
#AppSettingsAbout .AppSettingsAccountInput:focus,
#AppSettingAccount .AppSettingsAccountInput:focus,
#AppSettingsPassword .AppSettingsAccountInput:focus {
  outline: none;
}
#AppSettingsScreens input[disabled].AppSettingsAccountInput,
#AppFidelity input[disabled].AppSettingsAccountInput,
#AppFidelityMovements input[disabled].AppSettingsAccountInput,
#AppFidelityReferrals input[disabled].AppSettingsAccountInput,
#AppBluetooth input[disabled].AppSettingsAccountInput,
#AppCleaningReminders input[disabled].AppSettingsAccountInput,
#AppCleaningStatistics input[disabled].AppSettingsAccountInput,
#AppContact input[disabled].AppSettingsAccountInput,
#AppGloReminders input[disabled].AppSettingsAccountInput,
#AppHelp input[disabled].AppSettingsAccountInput,
#AppOverlayGloFirstTreatmentAfterInstallation input[disabled].AppSettingsAccountInput,
#AppSettingsAbout input[disabled].AppSettingsAccountInput,
#AppSettingAccount input[disabled].AppSettingsAccountInput,
#AppSettingsPassword input[disabled].AppSettingsAccountInput {
  opacity: 0.5;
}
#AppSettingsScreens .AppSettingsAccountInputGroup,
#AppFidelity .AppSettingsAccountInputGroup,
#AppFidelityMovements .AppSettingsAccountInputGroup,
#AppFidelityReferrals .AppSettingsAccountInputGroup,
#AppBluetooth .AppSettingsAccountInputGroup,
#AppCleaningReminders .AppSettingsAccountInputGroup,
#AppCleaningStatistics .AppSettingsAccountInputGroup,
#AppContact .AppSettingsAccountInputGroup,
#AppGloReminders .AppSettingsAccountInputGroup,
#AppHelp .AppSettingsAccountInputGroup,
#AppOverlayGloFirstTreatmentAfterInstallation .AppSettingsAccountInputGroup,
#AppSettingsAbout .AppSettingsAccountInputGroup,
#AppSettingAccount .AppSettingsAccountInputGroup,
#AppSettingsPassword .AppSettingsAccountInputGroup {
  width: 100%;
  height: 9rem;
  padding-top: 1rem;
}
#AppSettingsScreens .appTreatment_outterTitle,
#AppFidelity .appTreatment_outterTitle,
#AppFidelityMovements .appTreatment_outterTitle,
#AppFidelityReferrals .appTreatment_outterTitle,
#AppBluetooth .appTreatment_outterTitle,
#AppCleaningReminders .appTreatment_outterTitle,
#AppCleaningStatistics .appTreatment_outterTitle,
#AppContact .appTreatment_outterTitle,
#AppGloReminders .appTreatment_outterTitle,
#AppHelp .appTreatment_outterTitle,
#AppOverlayGloFirstTreatmentAfterInstallation .appTreatment_outterTitle,
#AppSettingsAbout .appTreatment_outterTitle,
#AppSettingAccount .appTreatment_outterTitle,
#AppSettingsPassword .appTreatment_outterTitle {
  margin-left: 4rem;
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  font-size: 3.755rem;
  color: white;
  align-self: flex-start;
}
#AppSettingsScreens .appSettingsButtons,
#AppFidelity .appSettingsButtons,
#AppFidelityMovements .appSettingsButtons,
#AppFidelityReferrals .appSettingsButtons,
#AppBluetooth .appSettingsButtons,
#AppCleaningReminders .appSettingsButtons,
#AppCleaningStatistics .appSettingsButtons,
#AppContact .appSettingsButtons,
#AppGloReminders .appSettingsButtons,
#AppHelp .appSettingsButtons,
#AppOverlayGloFirstTreatmentAfterInstallation .appSettingsButtons,
#AppSettingsAbout .appSettingsButtons,
#AppSettingAccount .appSettingsButtons,
#AppSettingsPassword .appSettingsButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  /* position: absolute; */
  /* left: 0.569rem; */
  /* top: -38px; */
  width: 100%;
  height: 9rem;
  border-bottom: 1px solid black;
  font-size: 2.048rem;
}
#AppCommonControls .checkbox input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 3.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppCommonControls .checkbox input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppCommonControls .checkbox input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppCommonControls .checkbox input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppCommonControls .checkbox [type="checkbox"]:not(:checked),
#AppCommonControls .checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppCommonControls .checkbox [type="checkbox"]:not(:checked) + label,
#AppCommonControls .checkbox [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppCommonControls .checkbox [type="checkbox"]:not(:checked) + label:before,
#AppCommonControls .checkbox [type="checkbox"]:checked + label:before,
#AppCommonControls .checkbox [type="checkbox"]:not(:checked) + label:after,
#AppCommonControls .checkbox [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppCommonControls .checkbox [type="checkbox"]:not(:checked) + label:before,
#AppCommonControls .checkbox [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppCommonControls .checkbox [type="checkbox"]:not(:checked) + label:after,
#AppCommonControls .checkbox [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppCommonControls .checkbox [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppCommonControls .checkbox [type="checkbox"]:checked + label:before {
  background-color: #88EEEF;
  border-color: #ffffff;
}
app-chat.chat {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 110vh;
  right: 1rem;
  width: 30%;
  height: 50vh;
  max-height: 50vh;
  font-family: 'PrimaryFont';
  font-size: 0.9rem;
  box-shadow: 0 7px 40px 10px rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  z-index: 1002;
}
app-chat.chat._closingChat {
  animation-duration: 1s;
  animation-name: slidedown;
}
app-chat.chat._openingChat {
  animation-duration: 1s;
  animation-name: slideup;
  top: 110vh;
  transform: translateY(-61vh);
}
app-chat.chat._openingChatKeyboard {
  animation-duration: 1s;
  animation-name: slideupKeyboard;
  top: 0;
  transform: translateY(1vh);
}
app-chat.chat._closingChatKeyboard {
  animation-duration: 1s;
  animation-name: slidedownKeyboard;
  top: 0;
  transform: translateY(-61vh);
}
@keyframes slideup {
  from {
    transform: translateY(0rem);
  }
  to {
    transform: translateY(-61vh);
  }
}
@keyframes slidedown {
  from {
    transform: translateY(-61vh);
  }
  to {
    ransform: translateY(0rem);
  }
}
@keyframes slideupKeyboard {
  from {
    transform: translateY(-61rem);
  }
  to {
    transform: translateY(1vh);
  }
}
@keyframes slidedownKeyboard {
  from {
    transform: translateY(1vh);
  }
  to {
    ransform: translateY(-61rem);
  }
}
app-chat.chat ._chatHeader {
  padding: 0px 1vh;
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10vh;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #4696c8;
  color: white;
}
app-chat.chat ._chatLogo {
  height: 6vh;
  width: 6vh;
  background-image: url(../res/logoChat.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.2rem;
}
app-chat.chat ._chatHeaderClinicUser {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1vh 0;
}
app-chat.chat ._chatHeaderText,
app-chat.chat ._chatHeaderPerson {
  display: flex;
  text-align: center;
  font-size: 0.8rem;
  color: white;
}
app-chat.chat ._chatClose {
  height: 4vh;
  width: 4vh;
  background-image: url(../res/hide.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.2rem;
}
app-chat.chat ._scrollChatConversation {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  height: 35vh;
  min-height: 25vh;
  overflow: hidden;
  overflow-y: scroll;
  background-color: #eeeeee;
}
app-chat.chat ._chatConversation {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  background-color: #eeeeee;
  color: #5E19FE;
  padding: 0.8vh 0.4rem;
}
app-chat.chat ._chatConversationEden {
  width: fit-content;
  max-width: 75%;
  margin-top: 0.8vh;
  margin-bottom: 0.8vh;
  padding: 0.6vh 0.6rem;
  border-radius: 0.4rem;
  background-color: #88EEEF;
  color: #5E19FE;
  box-sizing: border-box;
  white-space: pre-wrap;
}
app-chat.chat ._chatConversationUser {
  width: fit-content;
  max-width: 75%;
  margin-top: 0.8vh;
  margin-bottom: 0.8vh;
  margin-left: auto;
  padding: 0.6vh 0.6rem;
  border-radius: 0.4rem;
  background-color: white;
  color: black;
  white-space: pre-wrap;
}
app-chat.chat ._chatInputContainer {
  display: flex;
  flex: 1 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #5E19FE;
  border-radius: 0 0 0.5rem 0.5rem;
  width: 100%;
}
app-chat.chat ._chatInputContainer ._chatInput {
  min-height: 1.8vh;
  max-height: 8vh;
  line-height: 1.3;
  width: 85%;
  border-radius: 0.9rem;
  border: 0;
  padding: 0.6vh 0.9rem;
  margin: 0.8vh 0.4rem;
  box-sizing: border-box;
  font-family: 'PrimaryFont';
  font-size: 0.9rem;
  background-color: white;
  color: black;
  outline: none;
  overflow: auto;
  -webkit-user-select: text;
  user-select: text;
}
app-chat.chat ._chatInputContainer ._chatSend {
  background-image: url(../res/continue.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 4vh;
  width: 4vh;
  box-sizing: border-box;
  margin: 1vh;
}
#CommonSwippable app-swippable,
#AppCaptureInstructions app-swippable,
#AppWelcomeScreen app-swippable {
  --n: 1;
  display: flex;
  align-items: center;
  width: 100%;
  width: calc(var(--n)*100%);
  transform: translate(calc(var(--tx, 0px) + var(--i, 0)/var(--n)*-100%));
  height: 100%;
  padding-bottom: 23rem;
  box-sizing: border-box;
}
#CommonSwippable app-swippable.smooth,
#AppCaptureInstructions app-swippable.smooth,
#AppWelcomeScreen app-swippable.smooth {
  transition: transform calc(var(--f, 1)*.5s) ease-out;
}
#CommonSwippable app-swippable.smooth .swipe_page.current,
#AppCaptureInstructions app-swippable.smooth .swipe_page.current,
#AppWelcomeScreen app-swippable.smooth .swipe_page.current {
  opacity: 1;
}
#CommonSwippable app-swippable .swipe_page,
#AppCaptureInstructions app-swippable .swipe_page,
#AppWelcomeScreen app-swippable .swipe_page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  width: calc(100%/var(--n));
  user-select: none;
}
app-notifications.notifications .notifications_button {
  background-color: transparent;
  background-origin: content-box;
  box-sizing: border-box;
  cursor: pointer;
  fill: white;
  margin: 0;
  padding: 0.8rem 0rem;
  text-align: center;
  width: 4rem;
}
app-notifications.notifications .notifications_button.hidden {
  display: none;
}
app-notifications.notifications .notifications_button .notifications_icon {
  background-image: url('../res/notifications.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
  display: flex;
  height: 2rem;
  width: 2rem;
}
app-notifications.notifications .notifications_button .notifications_text {
  align-items: center;
  border-radius: 0.8rem;
  background-color: red;
  box-sizing: border-box;
  color: white;
  display: flex;
  height: 0.8rem;
  justify-content: center;
  margin-left: 1.0rem;
  padding: 0.8rem;
  width: 0.8rem;
}
app-refresh.refresh .refresh_button {
  background-color: transparent;
  background-origin: content-box;
  box-sizing: border-box;
  cursor: pointer;
  fill: white;
  margin: 0;
  padding: 0.8rem 0rem;
  text-align: center;
  width: 4rem;
}
app-refresh.refresh .refresh_button .refresh_icon {
  background-image: url('../res/refresh.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
  display: flex;
  height: 2rem;
  width: 2rem;
}
#AppFidelity {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: inherit;
  align-items: unset;
  overflow-y: overlay !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  z-index: -12;
}
#AppFidelity .text_data {
  font-size: 2.4rem;
}
#AppFidelity .text_label {
  font-size: 1.8rem;
}
#AppFidelity .text_number {
  font-size: 2.5rem;
}
#AppFidelity .appLogo {
  height: 8.4rem;
  width: 8.4rem;
}
#AppFidelity .appFidelityMenuLogo {
  height: 10rem;
}
#AppFidelity .appFidelityPage {
  position: relative;
  width: 100%;
  height: 100%;
}
#AppFidelity .appFidelityBg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#AppFidelity .app_fidelity_outer {
  position: relative;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
#AppFidelity .appFidelity_card {
  padding: 2.1rem 0 0;
  flex: 1 0 auto;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card {
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  color: black;
}
#AppFidelity .appfidelity_fidelity_card.basic {
  background-color: #E6E6E6;
}
#AppFidelity .appfidelity_fidelity_card.gold {
  background: linear-gradient(90deg, #C3A966 0%, #C19A51 25%, #C4AA67 70%);
}
#AppFidelity .appfidelity_fidelity_card.platinum {
  background: linear-gradient(90deg, #9A9A9A 0%, #B1B1B1 25%, #848484 70%);
}
#AppFidelity .appfidelity_fidelity_card .top {
  padding: 0 2.5rem 1rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card .top .title {
  padding: 2rem 0;
}
#AppFidelity .appfidelity_fidelity_card .top .s_plus {
  line-height: 4rem;
  text-align: end;
  background-color: black;
  color: white;
  margin-bottom: 1rem;
  width: 12rem;
  height: 12rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}
#AppFidelity .appfidelity_fidelity_card .top .s_plus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelity .appfidelity_fidelity_card .middle {
  padding: 0 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card .middle .data_item {
  padding: 1rem 0;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card .middle .s_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelity .appfidelity_fidelity_card .middle .s_qr .qr_img {
  box-sizing: border-box;
  width: 14rem;
  height: 14rem;
}
#AppFidelity .appfidelity_fidelity_card .middle .s_qr .qr_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelity .appfidelity_fidelity_card .bottom {
  padding: 0 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card .bottom .data_item {
  padding: 1rem 0;
  box-sizing: border-box;
}
#AppFidelity .appfidelity_fidelity_card .bottom .s_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelity .appfidelity_fidelity_card .bottom .s_qr .qr_img {
  box-sizing: border-box;
  width: 14rem;
  height: 14rem;
}
#AppFidelity .appfidelity_fidelity_card .bottom .s_qr .qr_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelity .visible {
  opacity: 1;
}
#AppFidelity .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  flex: 0 1 auto;
}
#AppFidelity .AppHowOverlayFooter {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
#AppFidelity .AppHowOverlayFooterBack {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
._transition > #AppFidelity._in._from_AppFormSignUp,
._transition > #AppFidelity._in._from_AppFormSignIn {
  animation-name: bottom2center;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppFidelityMovements {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: inherit;
  align-items: unset;
  overflow-y: overlay !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  z-index: -12;
}
#AppFidelityMovements .text_data {
  font-size: 2.4rem;
}
#AppFidelityMovements .text_label {
  font-size: 1.8rem;
}
#AppFidelityMovements .text_number {
  font-size: 2.5rem;
}
#AppFidelityMovements .appLogo {
  height: 8.4rem;
  width: 8.4rem;
}
#AppFidelityMovements .appFidelityMovementsMenuLogo {
  height: 10rem;
}
#AppFidelityMovements #AppFidelityMovementsPage {
  position: relative;
  width: 100%;
  height: 100%;
}
#AppFidelityMovements .appFidelityMovementsBg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#AppFidelityMovements .app_fidelity_movements_outer {
  position: relative;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
#AppFidelityMovements .appFidelityMovements_card {
  padding: 2.1rem 0;
  flex: 0 1 auto;
}
#AppFidelityMovements .apphome_fidelity_card_small {
  display: flex;
  border-radius: 1.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  color: black;
}
#AppFidelityMovements .apphome_fidelity_card_small.basic {
  background-color: #E6E6E6;
}
#AppFidelityMovements .apphome_fidelity_card_small.gold {
  background: linear-gradient(90deg, #C3A966 0%, #C19A51 25%, #C4AA67 70%);
}
#AppFidelityMovements .apphome_fidelity_card_small.platinum {
  background: linear-gradient(90deg, #9A9A9A 0%, #B1B1B1 25%, #848484 70%);
}
#AppFidelityMovements .apphome_fidelity_card_small .left {
  padding: 1.4rem 0 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#AppFidelityMovements .apphome_fidelity_card_small .right {
  padding: 0 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelityMovements .apphome_fidelity_card_small .right .s_plus {
  line-height: 4rem;
  text-align: end;
  background-color: black;
  color: white;
  margin-bottom: 1rem;
  width: 6rem;
  height: 6rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}
#AppFidelityMovements .apphome_fidelity_card_small .right .s_plus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelityMovements .apphome_fidelity_card_small .right .s_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelityMovements .apphome_fidelity_card_small .right .s_qr .qr_img {
  box-sizing: border-box;
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.5rem;
}
#AppFidelityMovements .apphome_fidelity_card_small .right .s_qr .qr_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelityMovements .appFidelityMovements_list {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
#AppFidelityMovements .apphome_fidelity_list_title {
  text-align: center;
  flex: 0 1 auto;
}
#AppFidelityMovements .apphome_fidelity_list {
  margin: 0.5rem 0;
  flex: 0 1 auto;
  background-color: white;
  border-radius: 0.5rem;
  overflow-y: auto;
  font-size: 1.3rem;
  color: black;
  padding: 1.5rem;
  box-sizing: border-box;
}
#AppFidelityMovements .apphome_fidelity_list .list_item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px solid lightgrey;
}
#AppFidelityMovements .apphome_fidelity_list .list_item:last-child {
  border-bottom: none;
}
#AppFidelityMovements .apphome_fidelity_list .list_item .first_row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
#AppFidelityMovements .apphome_fidelity_list .list_item .second_row {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
#AppFidelityMovements .visible {
  opacity: 1;
}
#AppFidelityMovements .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
}
#AppFidelityMovements .AppHowOverlayFooter {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
#AppFidelityMovements .AppHowOverlayFooterBack {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
._transition > #AppFidelityMovements._in._from_AppFormSignUp,
._transition > #AppFidelityMovements._in._from_AppFormSignIn {
  animation-name: bottom2center;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppFidelityReferrals {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: inherit;
  align-items: unset;
  overflow-y: overlay !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  z-index: -12;
}
#AppFidelityReferrals .text_data {
  font-size: 2.4rem;
}
#AppFidelityReferrals .text_label {
  font-size: 1.8rem;
}
#AppFidelityReferrals .text_number {
  font-size: 2.5rem;
}
#AppFidelityReferrals .appLogo {
  height: 8.4rem;
  width: 8.4rem;
}
#AppFidelityReferrals .appFidelityReferralsMenuLogo {
  height: 10rem;
}
#AppFidelityReferrals .appFidelityReferralsPage {
  position: relative;
  width: 100%;
  height: 100%;
}
#AppFidelityReferrals .appFidelityReferralsBg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#AppFidelityReferrals .app_fidelity_referrals_outer {
  position: relative;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
#AppFidelityReferrals .appFidelityReferrals_card {
  padding: 2.1rem 0;
  flex: 0 1 auto;
}
#AppFidelityReferrals .apphome_fidelity_card_small {
  display: flex;
  border-radius: 1.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  color: black;
}
#AppFidelityReferrals .apphome_fidelity_card_small.basic {
  background-color: #E6E6E6;
}
#AppFidelityReferrals .apphome_fidelity_card_small.gold {
  background: linear-gradient(90deg, #C3A966 0%, #C19A51 25%, #C4AA67 70%);
}
#AppFidelityReferrals .apphome_fidelity_card_small.platinum {
  background: linear-gradient(90deg, #9A9A9A 0%, #B1B1B1 25%, #848484 70%);
}
#AppFidelityReferrals .apphome_fidelity_card_small .left {
  padding: 1.4rem 0 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right {
  padding: 0 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right .s_plus {
  line-height: 4rem;
  text-align: end;
  background-color: black;
  color: white;
  margin-bottom: 1rem;
  width: 6rem;
  height: 6rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right .s_plus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right .s_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right .s_qr .qr_img {
  box-sizing: border-box;
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.5rem;
}
#AppFidelityReferrals .apphome_fidelity_card_small .right .s_qr .qr_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppFidelityReferrals .appFidelityReferrals_list {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
#AppFidelityReferrals .apphome_fidelity_list_title {
  text-align: center;
  flex: 0 1 auto;
}
#AppFidelityReferrals .apphome_fidelity_list {
  margin: 0.5rem 0;
  flex: 0 1 auto;
  background-color: white;
  border-radius: 0.5rem;
  overflow-y: auto;
  font-size: 1.3rem;
  color: black;
  padding: 1.5rem;
  box-sizing: border-box;
}
#AppFidelityReferrals .apphome_fidelity_list .list_item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px solid lightgrey;
}
#AppFidelityReferrals .apphome_fidelity_list .list_item:last-child {
  border-bottom: none;
}
#AppFidelityReferrals .apphome_fidelity_list .list_item .first_row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
#AppFidelityReferrals .apphome_fidelity_list .list_item .second_row {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
#AppFidelityReferrals .visible {
  opacity: 1;
}
#AppFidelityReferrals .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}
#AppFidelityReferrals .AppHowOverlayFooter {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
#AppFidelityReferrals .AppHowOverlayFooterBack {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
._transition > #AppFidelityReferrals._in._from_AppFormSignUp,
._transition > #AppFidelityReferrals._in._from_AppFormSignIn {
  animation-name: bottom2center;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppBluetooth {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: flex-start;
  align-items: center;
}
#AppBluetooth .appSettingsButtons {
  border-bottom: 1px solid white;
}
#AppBluetooth .appSetingsNextButtonSvg {
  fill: white;
}
#AppBluetooth .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppBluetooth .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppBluetooth .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppBluetooth .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppBluetooth .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppBluetooth .AppBluetooth_font {
  font-size: 4rem;
}
#AppBluetooth .appSetingsNextButton {
  max-width: 5%;
}
#AppBluetooth select {
  background: url(../res/LittleArrowInput-black.png) no-repeat 96% 44%;
  background-size: 2rem;
  overflow: hidden;
  margin: 0;
  font-size: 1.3rem;
  border: none;
  font-size: 1.59rem;
  padding: 0.6rem 4rem 0.6rem 1rem;
  z-index: 99;
  -webkit-appearance: none;
  background-color: #e0e0e0;
  height: 3rem;
  color: #000000;
  outline: none;
}
#AppBluetooth select option {
  font-size: 0.7rem;
}
#AppBluetooth input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppBluetooth input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppBluetooth input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppBluetooth input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppBluetooth [type="checkbox"]:not(:checked),
#AppBluetooth [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppBluetooth [type="checkbox"]:not(:checked) + label,
#AppBluetooth [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppBluetooth [type="checkbox"]:not(:checked) + label:before,
#AppBluetooth [type="checkbox"]:checked + label:before,
#AppBluetooth [type="checkbox"]:not(:checked) + label:after,
#AppBluetooth [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppBluetooth [type="checkbox"]:not(:checked) + label:before,
#AppBluetooth [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  border-radius: 1.1em;
}
#AppBluetooth [type="checkbox"]:not(:checked) + label:after,
#AppBluetooth [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppBluetooth [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppBluetooth [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppBluetooth .appSettingsCheckboxOutter {
  width: 12%;
}
._transition > #AppBluetooth._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppBluetooth._in._from_AppSettingAccount,
._transition > #AppBluetooth._in._from_AppSettingsDevices,
._transition > #AppBluetooth._in._from_AppSettingsAbout {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppBluetooth._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppBluetooth._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppBluetooth._out._to_AppSettingAccount,
._transition > #AppBluetooth._out._to_AppSettingsDevices,
._transition > #AppBluetooth._out._to_AppSettingsAbout {
  animation-name: center2left;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppCleaning,
#AppCleaningReminders,
#AppCleaningStatistics,
#AppCleaningHistory,
#AppGloHistory {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  color: black;
  background: #FDFDF6;
}
#AppCleaning .appHeader,
#AppCleaningReminders .appHeader,
#AppCleaningStatistics .appHeader,
#AppCleaningHistory .appHeader,
#AppGloHistory .appHeader {
  background-color: black;
}
#AppCleaning .appCleaning_outterTitle,
#AppCleaningReminders .appCleaning_outterTitle,
#AppCleaningStatistics .appCleaning_outterTitle,
#AppCleaningHistory .appCleaning_outterTitle,
#AppGloHistory .appCleaning_outterTitle {
  width: 100%;
  margin-top: 7px;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  height: 35px;
  z-index: 100;
  pointer-events: none;
}
#AppCleaning .appSettingsButtons,
#AppCleaningReminders .appSettingsButtons,
#AppCleaningStatistics .appSettingsButtons,
#AppCleaningHistory .appSettingsButtons,
#AppGloHistory .appSettingsButtons {
  color: black;
}
#AppCleaning .appCleaning_changeZoneContainer,
#AppCleaningReminders .appCleaning_changeZoneContainer,
#AppCleaningStatistics .appCleaning_changeZoneContainer,
#AppCleaningHistory .appCleaning_changeZoneContainer,
#AppGloHistory .appCleaning_changeZoneContainer {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  z-index: 1;
  color: #8ddde5;
  display: flex;
}
#AppCleaning .appCleaning_changeZoneContainer._hidden,
#AppCleaningReminders .appCleaning_changeZoneContainer._hidden,
#AppCleaningStatistics .appCleaning_changeZoneContainer._hidden,
#AppCleaningHistory .appCleaning_changeZoneContainer._hidden,
#AppGloHistory .appCleaning_changeZoneContainer._hidden {
  display: none;
}
#AppCleaning .appCleaning_changeZoneContainer div,
#AppCleaningReminders .appCleaning_changeZoneContainer div,
#AppCleaningStatistics .appCleaning_changeZoneContainer div,
#AppCleaningHistory .appCleaning_changeZoneContainer div,
#AppGloHistory .appCleaning_changeZoneContainer div {
  width: 3rem;
  height: 3rem;
  margin: 1rem;
  fill: #e0e0e0;
}
#AppCleaning .appCleaning_odontogramOutter,
#AppCleaningReminders .appCleaning_odontogramOutter,
#AppCleaningStatistics .appCleaning_odontogramOutter,
#AppCleaningHistory .appCleaning_odontogramOutter,
#AppGloHistory .appCleaning_odontogramOutter {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  padding-top: 2rem;
}
#AppCleaning .descriptionButton,
#AppCleaningReminders .descriptionButton,
#AppCleaningStatistics .descriptionButton,
#AppCleaningHistory .descriptionButton,
#AppGloHistory .descriptionButton {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}
#AppCleaning .descriptionButton._hide,
#AppCleaningReminders .descriptionButton._hide,
#AppCleaningStatistics .descriptionButton._hide,
#AppCleaningHistory .descriptionButton._hide,
#AppGloHistory .descriptionButton._hide {
  display: none;
}
#AppCleaning .description_scrollOutter,
#AppCleaningReminders .description_scrollOutter,
#AppCleaningStatistics .description_scrollOutter,
#AppCleaningHistory .description_scrollOutter,
#AppGloHistory .description_scrollOutter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppCleaning .description_scrollInner,
#AppCleaningReminders .description_scrollInner,
#AppCleaningStatistics .description_scrollInner,
#AppCleaningHistory .description_scrollInner,
#AppGloHistory .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
}
#AppCleaning .odontogram,
#AppCleaningReminders .odontogram,
#AppCleaningStatistics .odontogram,
#AppCleaningHistory .odontogram,
#AppGloHistory .odontogram {
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex: 1 0 0;
  position: relative;
}
#AppCleaning .odontogram > svg,
#AppCleaningReminders .odontogram > svg,
#AppCleaningStatistics .odontogram > svg,
#AppCleaningHistory .odontogram > svg,
#AppGloHistory .odontogram > svg {
  width: 100%;
  height: 100%;
  position: absolute;
}
#AppCleaning .pieceDescription,
#AppCleaningReminders .pieceDescription,
#AppCleaningStatistics .pieceDescription,
#AppCleaningHistory .pieceDescription,
#AppGloHistory .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppCleaning .descriptionOutter,
#AppCleaningReminders .descriptionOutter,
#AppCleaningStatistics .descriptionOutter,
#AppCleaningHistory .descriptionOutter,
#AppGloHistory .descriptionOutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 15%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppCleaning .statsBox,
#AppCleaningReminders .statsBox,
#AppCleaningStatistics .statsBox,
#AppCleaningHistory .statsBox,
#AppGloHistory .statsBox {
  position: absolute;
  top: 0;
  right: 0rem;
  left: 0rem;
  font-size: 1.5rem;
  padding: 1rem;
  box-sizing: border-box;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  max-height: 50%;
  overflow: auto;
}
#AppCleaning .statsBox .infoButton,
#AppCleaningReminders .statsBox .infoButton,
#AppCleaningStatistics .statsBox .infoButton,
#AppCleaningHistory .statsBox .infoButton,
#AppGloHistory .statsBox .infoButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: white;
}
#AppCleaning .statsBox._hidden,
#AppCleaningReminders .statsBox._hidden,
#AppCleaningStatistics .statsBox._hidden,
#AppCleaningHistory .statsBox._hidden,
#AppGloHistory .statsBox._hidden {
  display: none;
}
#AppCleaning .descriptionInner,
#AppCleaningReminders .descriptionInner,
#AppCleaningStatistics .descriptionInner,
#AppCleaningHistory .descriptionInner,
#AppGloTreatment .outerContent .descriptionInner,
#AppGloHistory .descriptionInner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  background-color: #e0e0e0;
}
#AppCleaning .descriptionInner .pieceDescriptionTitle,
#AppCleaningReminders .descriptionInner .pieceDescriptionTitle,
#AppCleaningStatistics .descriptionInner .pieceDescriptionTitle,
#AppCleaningHistory .descriptionInner .pieceDescriptionTitle,
#AppGloTreatment .outerContent .descriptionInner .pieceDescriptionTitle,
#AppGloHistory .descriptionInner .pieceDescriptionTitle {
  flex: 1 0 auto;
  color: #000000;
  font-size: 1.8rem;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid white;
}
#AppCleaning .descriptionInner .pieceDescriptionTitle:last-child,
#AppCleaningReminders .descriptionInner .pieceDescriptionTitle:last-child,
#AppCleaningStatistics .descriptionInner .pieceDescriptionTitle:last-child,
#AppCleaningHistory .descriptionInner .pieceDescriptionTitle:last-child,
#AppGloTreatment .outerContent .descriptionInner .pieceDescriptionTitle:last-child,
#AppGloHistory .descriptionInner .pieceDescriptionTitle:last-child {
  border-right: none;
}
#AppCleaning .pieceDescriptionSubTitle,
#AppCleaningReminders .pieceDescriptionSubTitle,
#AppCleaningStatistics .pieceDescriptionSubTitle,
#AppCleaningHistory .pieceDescriptionSubTitle,
#AppGloHistory .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppCleaning .pieceDescriptionText,
#AppCleaningReminders .pieceDescriptionText,
#AppCleaningStatistics .pieceDescriptionText,
#AppCleaningHistory .pieceDescriptionText,
#AppGloHistory .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppCleaning .areaDiv,
#AppCleaningReminders .areaDiv,
#AppCleaningStatistics .areaDiv,
#AppCleaningHistory .areaDiv,
#AppGloHistory .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #1279a1;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppCleaning .odontogram-wholePiece,
#AppCleaningReminders .odontogram-wholePiece,
#AppCleaningStatistics .odontogram-wholePiece,
#AppCleaningHistory .odontogram-wholePiece,
#AppGloHistory .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppCleaning .odontogram-numberContainer,
#AppCleaningReminders .odontogram-numberContainer,
#AppCleaningStatistics .odontogram-numberContainer,
#AppCleaningHistory .odontogram-numberContainer,
#AppGloHistory .odontogram-numberContainer {
  fill: #e0e0e0;
  stroke-width: 2px;
  stroke: white;
}
#AppCleaning .odontogram-numberContainer-active,
#AppCleaningReminders .odontogram-numberContainer-active,
#AppCleaningStatistics .odontogram-numberContainer-active,
#AppCleaningHistory .odontogram-numberContainer-active,
#AppGloHistory .odontogram-numberContainer-active {
  fill: #1279a1;
  stroke-width: 10px;
  stroke: #88eeef;
}
#AppCleaning .appCleaning_buttonsContainer,
#AppCleaningReminders .appCleaning_buttonsContainer,
#AppCleaningStatistics .appCleaning_buttonsContainer,
#AppCleaningHistory .appCleaning_buttonsContainer,
#AppGloHistory .appCleaning_buttonsContainer {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
#AppCleaning .appCleaning_buttons,
#AppCleaningReminders .appCleaning_buttons,
#AppCleaningStatistics .appCleaning_buttons,
#AppCleaningHistory .appCleaning_buttons,
#AppGloHistory .appCleaning_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#AppCleaning .appCleaning_buttons button,
#AppCleaningReminders .appCleaning_buttons button,
#AppCleaningStatistics .appCleaning_buttons button,
#AppCleaningHistory .appCleaning_buttons button,
#AppGloHistory .appCleaning_buttons button {
  outline: none;
  font: inherit;
  padding: 1rem;
  border: none;
  background-color: #e0e0e0;
  color: black;
}
#AppCleaning .appCleaning_buttons button:active,
#AppCleaningReminders .appCleaning_buttons button:active,
#AppCleaningStatistics .appCleaning_buttons button:active,
#AppCleaningHistory .appCleaning_buttons button:active,
#AppGloHistory .appCleaning_buttons button:active {
  color: black;
  background-color: #e0e0e0;
}
#AppCleaning .appCleaning_buttons .appCleaning_cleaningState,
#AppCleaningReminders .appCleaning_buttons .appCleaning_cleaningState,
#AppCleaningStatistics .appCleaning_buttons .appCleaning_cleaningState,
#AppCleaningHistory .appCleaning_buttons .appCleaning_cleaningState,
#AppGloHistory .appCleaning_buttons .appCleaning_cleaningState {
  background-color: red;
  height: 2rem;
  width: 2rem;
  border-radius: 100%;
}
#AppCleaning .appCleaning_buttons .appCleaning_cleaningState._ok,
#AppCleaningReminders .appCleaning_buttons .appCleaning_cleaningState._ok,
#AppCleaningStatistics .appCleaning_buttons .appCleaning_cleaningState._ok,
#AppCleaningHistory .appCleaning_buttons .appCleaning_cleaningState._ok,
#AppGloHistory .appCleaning_buttons .appCleaning_cleaningState._ok {
  background-color: green;
}
#AppCleaning .appCleaning_buttons._buttons,
#AppCleaningReminders .appCleaning_buttons._buttons,
#AppCleaningStatistics .appCleaning_buttons._buttons,
#AppCleaningHistory .appCleaning_buttons._buttons,
#AppGloHistory .appCleaning_buttons._buttons {
  flex-direction: row;
  justify-content: space-around;
}
#AppCleaning .appCleaning_buttons._active,
#AppCleaningReminders .appCleaning_buttons._active,
#AppCleaningStatistics .appCleaning_buttons._active,
#AppCleaningHistory .appCleaning_buttons._active,
#AppGloHistory .appCleaning_buttons._active {
  background-color: #00b3c5;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppCleaning .appCleaning_buttons > svg,
#AppCleaningReminders .appCleaning_buttons > svg,
#AppCleaningStatistics .appCleaning_buttons > svg,
#AppCleaningHistory .appCleaning_buttons > svg,
#AppGloHistory .appCleaning_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppCleaning .topleftRadius,
#AppCleaningReminders .topleftRadius,
#AppCleaningStatistics .topleftRadius,
#AppCleaningHistory .topleftRadius,
#AppGloHistory .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppCleaning .topleftRadius > div,
#AppCleaningReminders .topleftRadius > div,
#AppCleaningStatistics .topleftRadius > div,
#AppCleaningHistory .topleftRadius > div,
#AppGloHistory .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppCleaning .toprightRadius,
#AppCleaningReminders .toprightRadius,
#AppCleaningStatistics .toprightRadius,
#AppCleaningHistory .toprightRadius,
#AppGloHistory .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #1279a1;
  display: flex;
}
#AppCleaning .toprightRadius > div,
#AppCleaningReminders .toprightRadius > div,
#AppCleaningStatistics .toprightRadius > div,
#AppCleaningHistory .toprightRadius > div,
#AppGloHistory .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppCleaning input[type="checkbox"] + label:before,
#AppCleaningReminders input[type="checkbox"] + label:before,
#AppCleaningStatistics input[type="checkbox"] + label:before,
#AppCleaningHistory input[type="checkbox"] + label:before,
#AppGloHistory input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 3.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppCleaning input[type="checkbox"] + label:after,
#AppCleaningReminders input[type="checkbox"] + label:after,
#AppCleaningStatistics input[type="checkbox"] + label:after,
#AppCleaningHistory input[type="checkbox"] + label:after,
#AppGloHistory input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppCleaning input[type="checkbox"]:checked + label:after,
#AppCleaningReminders input[type="checkbox"]:checked + label:after,
#AppCleaningStatistics input[type="checkbox"]:checked + label:after,
#AppCleaningHistory input[type="checkbox"]:checked + label:after,
#AppGloHistory input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppCleaning input[type="checkbox"] + label,
#AppCleaningReminders input[type="checkbox"] + label,
#AppCleaningStatistics input[type="checkbox"] + label,
#AppCleaningHistory input[type="checkbox"] + label,
#AppGloHistory input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppCleaning [type="checkbox"]:not(:checked),
#AppCleaning [type="checkbox"]:checked,
#AppCleaningReminders [type="checkbox"]:not(:checked),
#AppCleaningReminders [type="checkbox"]:checked,
#AppCleaningStatistics [type="checkbox"]:not(:checked),
#AppCleaningStatistics [type="checkbox"]:checked,
#AppCleaningHistory [type="checkbox"]:not(:checked),
#AppCleaningHistory [type="checkbox"]:checked,
#AppGloHistory [type="checkbox"]:not(:checked),
#AppGloHistory [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppCleaning [type="checkbox"]:not(:checked) + label,
#AppCleaning [type="checkbox"]:checked + label,
#AppCleaningReminders [type="checkbox"]:not(:checked) + label,
#AppCleaningReminders [type="checkbox"]:checked + label,
#AppCleaningStatistics [type="checkbox"]:not(:checked) + label,
#AppCleaningStatistics [type="checkbox"]:checked + label,
#AppCleaningHistory [type="checkbox"]:not(:checked) + label,
#AppCleaningHistory [type="checkbox"]:checked + label,
#AppGloHistory [type="checkbox"]:not(:checked) + label,
#AppGloHistory [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppCleaning [type="checkbox"]:not(:checked) + label:before,
#AppCleaning [type="checkbox"]:checked + label:before,
#AppCleaning [type="checkbox"]:not(:checked) + label:after,
#AppCleaning [type="checkbox"]:checked + label:after,
#AppCleaningReminders [type="checkbox"]:not(:checked) + label:before,
#AppCleaningReminders [type="checkbox"]:checked + label:before,
#AppCleaningReminders [type="checkbox"]:not(:checked) + label:after,
#AppCleaningReminders [type="checkbox"]:checked + label:after,
#AppCleaningStatistics [type="checkbox"]:not(:checked) + label:before,
#AppCleaningStatistics [type="checkbox"]:checked + label:before,
#AppCleaningStatistics [type="checkbox"]:not(:checked) + label:after,
#AppCleaningStatistics [type="checkbox"]:checked + label:after,
#AppCleaningHistory [type="checkbox"]:not(:checked) + label:before,
#AppCleaningHistory [type="checkbox"]:checked + label:before,
#AppCleaningHistory [type="checkbox"]:not(:checked) + label:after,
#AppCleaningHistory [type="checkbox"]:checked + label:after,
#AppGloHistory [type="checkbox"]:not(:checked) + label:before,
#AppGloHistory [type="checkbox"]:checked + label:before,
#AppGloHistory [type="checkbox"]:not(:checked) + label:after,
#AppGloHistory [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppCleaning [type="checkbox"]:not(:checked) + label:before,
#AppCleaning [type="checkbox"]:checked + label:before,
#AppCleaningReminders [type="checkbox"]:not(:checked) + label:before,
#AppCleaningReminders [type="checkbox"]:checked + label:before,
#AppCleaningStatistics [type="checkbox"]:not(:checked) + label:before,
#AppCleaningStatistics [type="checkbox"]:checked + label:before,
#AppCleaningHistory [type="checkbox"]:not(:checked) + label:before,
#AppCleaningHistory [type="checkbox"]:checked + label:before,
#AppGloHistory [type="checkbox"]:not(:checked) + label:before,
#AppGloHistory [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppCleaning [type="checkbox"]:not(:checked) + label:after,
#AppCleaning [type="checkbox"]:checked + label:after,
#AppCleaningReminders [type="checkbox"]:not(:checked) + label:after,
#AppCleaningReminders [type="checkbox"]:checked + label:after,
#AppCleaningStatistics [type="checkbox"]:not(:checked) + label:after,
#AppCleaningStatistics [type="checkbox"]:checked + label:after,
#AppCleaningHistory [type="checkbox"]:not(:checked) + label:after,
#AppCleaningHistory [type="checkbox"]:checked + label:after,
#AppGloHistory [type="checkbox"]:not(:checked) + label:after,
#AppGloHistory [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppCleaning [type="checkbox"]:checked + label:after,
#AppCleaningReminders [type="checkbox"]:checked + label:after,
#AppCleaningStatistics [type="checkbox"]:checked + label:after,
#AppCleaningHistory [type="checkbox"]:checked + label:after,
#AppGloHistory [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppCleaning [type="checkbox"]:checked + label:before,
#AppCleaningReminders [type="checkbox"]:checked + label:before,
#AppCleaningStatistics [type="checkbox"]:checked + label:before,
#AppCleaningHistory [type="checkbox"]:checked + label:before,
#AppGloHistory [type="checkbox"]:checked + label:before {
  background-color: #88EEEF;
  border-color: #ffffff;
}
#AppCleaning .appSettingsCheckboxOutter,
#AppCleaningReminders .appSettingsCheckboxOutter,
#AppCleaningStatistics .appSettingsCheckboxOutter,
#AppCleaningHistory .appSettingsCheckboxOutter,
#AppGloHistory .appSettingsCheckboxOutter {
  width: 12%;
}
#AppCleaningReminders .appSettingsButtons {
  padding: 0 3rem;
  box-sizing: border-box;
  color: black;
}
#AppCleaningReminders .appSettingsButtons input[type="checkbox"]:not(:checked) + label:before {
  background: #e0e0e0;
}
#AppCleaningReminders [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
}
#AppCleaningReminders .timeTableContainer {
  flex: 1 0 0;
  font-size: 2rem;
  padding: 1rem;
  overflow: auto;
  color: #00b3c5;
}
#AppCleaningReminders table {
  width: 100%;
  color: black;
}
#AppCleaningReminders table td {
  font-size: 2rem;
}
#AppCleaningReminders .dayHourContainer {
  width: 100%;
  padding: 1rem 0;
  font-size: 1.6rem;
}
#AppCleaningReminders .dayHourContainer .dayHourList {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#AppCleaningReminders .dayHourContainer .dayHour {
  padding: 0.2rem 1rem;
  display: flex;
  align-items: center;
}
#AppCleaningReminders .dayHourContainer .dayHour input {
  margin: 0;
  background-color: #e0e0e0;
  color: black;
  font: inherit;
  -webkit-appearance: none;
  display: inline;
  height: unset;
  width: 12rem;
}
#AppCleaningReminders .dayHourContainer .dayHour div {
  margin: 0 0.5rem;
}
#AppCleaningStatistics .appSettingsButtons {
  padding: 0 3rem;
  box-sizing: border-box;
  color: black;
}
#AppCleaningStatistics .appSettingsButtons input[type="checkbox"]:not(:checked) + label:before {
  background: #d3d3d3;
}
#AppCleaningStatistics .appSettingsButtons select {
  background: url(../res/LittleArrowInput-black.png) no-repeat 96% 44%;
  background-size: 2rem;
  overflow: hidden;
  margin: 0;
  font-size: 1.5rem;
  border: none;
  font-size: 1.59rem;
  padding: 0.6rem 4rem 0.6rem 1rem;
  z-index: 99;
  -webkit-appearance: none;
  background-color: #e0e0e0;
  height: 3rem;
  color: black;
  outline: none;
}
#AppCleaningStatistics .appSettingsButtons select option {
  font-size: 1.5rem;
}
#AppCleaningStatistics .mainContent {
  flex: 1 0 0;
  font-size: 2rem;
  padding: 1rem;
  overflow: auto;
  color: black;
}
#AppCleaningStatistics .mainContent td {
  font-size: 1.5rem;
}
#AppCleaningHistory .historyContainer,
#AppGloHistory .historyContainer {
  flex: 1 0 0;
  font-size: 2rem;
  padding: 1rem;
  overflow: auto;
  color: black;
}
#AppCleaningHistory .historyContainer .historyEntry,
#AppGloHistory .historyContainer .historyEntry {
  padding: 1rem;
  border-bottom: 1px solid black;
}
#AppCleaningHistory .historyContainer .historyEntry .first_line,
#AppGloHistory .historyContainer .historyEntry .first_line {
  font-size: 1.2rem;
}
#AppCleaningHistory .historyContainer .historyEntry .second_line,
#AppGloHistory .historyContainer .historyEntry .second_line {
  display: flex;
  justify-content: space-between;
}
#AppCleaningHistory .historyContainer .noEntries,
#AppGloHistory .historyContainer .noEntries {
  padding: 1rem;
  text-align: center;
}
#AppCaptureInstructions {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
}
#AppCaptureInstructions .appBulletlist_outerCircle {
  position: absolute;
  bottom: 4rem;
  /* margin: auto; */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#AppCaptureInstructions .appBulletlist_outerCircle .appBulletlist_circle {
  border-color: black;
  height: 1.5rem;
  width: 1.5rem;
}
#AppCaptureInstructions .appBulletlist_outerCircle .appBulletlist_circle._selected {
  background-color: black;
}
#AppCaptureInstructions .instructionsContainer {
  height: 90%;
  width: 85%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 2rem;
  color: black;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.25);
}
#AppCaptureInstructions .instructionsContainer app-swippable {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding-bottom: 10rem;
}
#AppCaptureInstructions .instructionsContainer app-swippable .swipe_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
  padding: 0 4rem 0 4rem;
}
#AppCaptureInstructions .instructionsContainer .spacer1 {
  flex: 1 0 0;
}
#AppCaptureInstructions .instructionsContainer .spacer2 {
  flex: 0.4 0 0;
}
#AppCaptureInstructions .instructionsContainer h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  height: 1em;
  width: 1em;
  border: 2px solid black;
  margin: 0;
  border-radius: 100%;
  font-size: 9rem;
  font-family: BoldFont;
  color: black;
  margin-top: 1rem;
}
#AppCaptureInstructions .instructionsContainer p {
  font-size: 2rem;
  font-family: PrimaryFont;
  color: black;
  text-align: center;
  flex: 2 0 0;
}
#AppCaptureInstructions .instructionsContainer hr {
  border: 1px solid black;
  width: 90%;
  margin-top: auto;
  margin-bottom: 4rem;
}
#AppCaptureInstructions .instructionsContainer img,
#AppCaptureInstructions .instructionsContainer video {
  height: 19rem;
  width: 18rem;
  object-fit: contain;
}
#AppCaptureInstructions .instructionsContainer button {
  color: #000000;
  background-color: #e0e0e0;
  font-family: PrimaryFont;
  font-size: 2rem;
  border: 0;
  padding: 2rem 2rem;
  border-radius: 1rem;
  outline: none;
}
#AppCaptureInstructions .instructionsContainer button:active {
  color: #000000;
  background-color: #e0e0e0;
}
._transition > #AppCaptureInstructions._in {
  animation-name: show_opacity;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppCaptureInstructions._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppClinic {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  z-index: 1;
  background: #00b3c5;
}
#AppClinic #clinic1b {
  margin-top: 4.0rem;
  font-size: 16px;
  text-shadow: none !important;
}
#AppClinic #clinic1b .azp_element > section {
  overflow: auto;
}
#AppClinic ._chatWhatsApp {
  position: absolute;
  right: 2.0rem;
}
#AppClinic ._chatWhatsApp img {
  width: 4.0rem;
}
#AppClinic #chatContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  position: absolute;
  z-index: 9999;
  bottom: 3rem;
  padding: 1rem;
  box-sizing: border-box;
}
#AppClinic .chat {
  position: unset;
  width: 100%;
}
#AppClinic ._chatHeaderCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#AppClinic ._chatHeader {
  background-color: #5E19FE;
  justify-content: space-between;
  height: 8vh;
}
#AppClinic ._chatInputContainer {
  justify-content: center;
}
#AppClinic ._chatInput,
#AppClinic ._chatHeaderText,
#AppClinic ._chatHeaderPerson,
#AppClinic .chat {
  font-size: 1.5rem;
}
#AppClinic ._chatInput {
  margin: 0.8vh 0;
  width: 95%;
}
#AppClinic ._chatHeaderText {
  color: white;
  margin: 0 0.5rem 0 0;
}
#AppClinic ._chatlogo {
  visibility: hidden;
}
#AppClinic ._chatSend {
  display: none;
}
._transition > #AppClinic._in {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppClinic._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppComparison {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
}
#AppComparison .appFooterIconsGreeny._medium {
  stroke: white;
}
#AppComparison .appFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1.5 2rem;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0rem;
  height: 6.83rem;
  box-sizing: border-box;
  background-color: #e0e0e0;
}
#AppComparison .appFooterIcons {
  fill: black;
  stroke: black;
}
#AppComparison .appFooter._white {
  color: white !important;
  background: transparent;
}
#AppComparison .background {
  background: #302E3B;
}
#AppComparison .appFooterIconsGreeny {
  fill: white;
}
#AppComparison input[type=range] {
  -webkit-appearance: none;
  margin: 1.138rem 0;
  width: 90%;
}
#AppComparison input[type=range]:focus {
  outline: none;
}
#AppComparison input[type=range]::-webkit-slider-runnable-track {
  width: 90%;
  height: 0.228rem;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: #a4aab3;
  border-radius: 0.114rem;
  border: 0px solid transparent;
}
#AppComparison input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid white;
  height: 2.276rem;
  width: 2.276rem;
  border-radius: 1.138rem;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
}
#AppComparison input[type=range]:focus::-webkit-slider-runnable-track {
  background: #b2b7bf;
}
#AppComparison input[type=range]::-moz-range-track {
  width: 90%;
  height: 0.228rem;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  background: #a4aab3;
  border-radius: 0.114rem;
  border: 0px solid transparent;
}
#AppComparison input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid white;
  height: 2.276rem;
  width: 2.276rem;
  border-radius: 1.138rem;
  background: white;
  cursor: pointer;
}
#AppComparison input[type=range]::-ms-track {
  width: 90%;
  height: 0.228rem;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 2.276rem 0;
  color: transparent;
}
#AppComparison input[type=range]::-ms-fill-lower {
  background: #969da7;
  border: 0px solid transparent;
  border-radius: 0.228rem;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}
#AppComparison input[type=range]::-ms-fill-upper {
  background: #a4aab3;
  border: 0px solid transparent;
  border-radius: 0.228rem;
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
}
#AppComparison input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px transparent, 0px 0px 0px rgba(13, 13, 13, 0);
  border: 0px solid white;
  height: 2.276rem;
  width: 2.276rem;
  border-radius: 1.138rem;
  background: white;
  cursor: pointer;
}
#AppComparison input[type=range]:focus::-ms-fill-lower {
  background: #a4aab3;
}
#AppComparison input[type=range]:focus::-ms-fill-upper {
  background: #b2b7bf;
}
#AppComparison .appheaderNoDisplay {
  display: none;
}
#AppComparison .appLogo {
  height: 9rem;
  width: 9rem;
}
#AppComparison .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
  right: 50%;
  transform: translate(50%, 0);
}
#AppComparison .appComparisonImagesTitle {
  text-align: center;
  font-weight: normal;
}
#AppComparison .appComparisonImages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
  flex: 1 0 auto;
  max-height: 100%;
}
#AppComparison .appComparisonView {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
#AppComparison .appComparisonView .appComparisonOutputImage {
  width: 100%;
  height: 100%;
}
#AppComparison .appComparisonControls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 13rem;
  width: 100%;
}
#AppComparison .appComparisonControl_white1 {
  display: flex;
  flex-direction: column;
  max-height: 30rem;
  border-radius: 2rem;
}
#AppComparison .appComparisonControl_white1.disabled {
  filter: blur(0.228rem);
  -webkit-filter: blur(0.228rem);
  opacity: 0.5;
  pointer-events: none;
}
#AppComparison .appComparisonControl_white1.selected .appComparisonControl_images {
  background-color: white;
}
#AppComparison .appComparisonControl_white1.selected .appComparisonControl_title {
  background-color: #00ade3;
}
#AppComparison #AppComparisonBefore,
#AppComparison #AppComparisonAfter {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#AppComparison .appComparisonOutputImage .appComparisonError {
  display: none;
}
#AppComparison .appComparisonOutputImage .appComparisonError._active {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
#AppComparison .appComparisonOutputImage .appComparisonError._active .appComparisonError_icon {
  height: 10rem;
  width: 10rem;
  margin: auto;
}
#AppComparison .appComparisonOutputImage .appComparisonLoading {
  display: none;
}
#AppComparison .appComparisonOutputImage .appComparisonLoading._active {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#AppComparison .appComparisonOutputImage .appComparisonLoading._active .appComparisonLoading_icon {
  height: 5rem;
  width: 5rem;
  margin: auto;
  animation: animation_loading .7s linear 0s infinite forwards;
}
@keyframes animation_loading {
  0% {
    transform: rotate(0deg);
  }
  8.32% {
    transform: rotate(0deg);
  }
  8.33% {
    transform: rotate(30deg);
  }
  16.65% {
    transform: rotate(30deg);
  }
  16.66% {
    transform: rotate(60deg);
  }
  24.98% {
    transform: rotate(60deg);
  }
  24.99% {
    transform: rotate(90deg);
  }
  33.31% {
    transform: rotate(90deg);
  }
  33.32% {
    transform: rotate(120deg);
  }
  41.64% {
    transform: rotate(120deg);
  }
  41.65% {
    transform: rotate(150deg);
  }
  49.97% {
    transform: rotate(150deg);
  }
  49.98% {
    transform: rotate(180deg);
  }
  58.30% {
    transform: rotate(180deg);
  }
  58.31% {
    transform: rotate(210deg);
  }
  66.63% {
    transform: rotate(210deg);
  }
  66.64% {
    transform: rotate(240deg);
  }
  74.96% {
    transform: rotate(240deg);
  }
  74.97% {
    transform: rotate(270deg);
  }
  83.29% {
    transform: rotate(270deg);
  }
  83.30% {
    transform: rotate(300deg);
  }
  91.62% {
    transform: rotate(300deg);
  }
  91.63% {
    transform: rotate(330deg);
  }
  99.99% {
    transform: rotate(330deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html._landscapeRight #AppComparison .appComparisonControl_images,
html._landscapeLeft #AppComparison .appComparisonControl_images,
html #AppComparison._landscape .appComparisonControl_images {
  flex-direction: row;
  align-items: center;
}
html._landscapeRight #AppComparison .appComparisonControl_images div,
html._landscapeLeft #AppComparison .appComparisonControl_images div,
html #AppComparison._landscape .appComparisonControl_images div {
  flex: 1 0 0;
}
html._landscapeRight #AppComparison .appComparisonView,
html._landscapeLeft #AppComparison .appComparisonView,
html #AppComparison._landscape .appComparisonView {
  width: 100%;
  height: 100%;
}
html._landscapeRight #AppComparison .appComparisonImagesTitle,
html._landscapeLeft #AppComparison .appComparisonImagesTitle,
html #AppComparison._landscape .appComparisonImagesTitle {
  margin-right: 23%;
}
html._landscapeRight #AppComparison .appComparisonControls,
html._landscapeLeft #AppComparison .appComparisonControls,
html #AppComparison._landscape .appComparisonControls {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 15rem;
  width: 100%;
}
html._landscapeRight #AppComparison .appComparisonView,
html._landscapeLeft #AppComparison .appComparisonView,
html #AppComparison._landscape .appComparisonView {
  flex-direction: row;
}
html._landscapeRight #AppComparison .appComparisonOutputImage,
html._landscapeLeft #AppComparison .appComparisonOutputImage,
html #AppComparison._landscape .appComparisonOutputImage {
  margin-left: 0.5rem;
  /*
        canvas {
            transform:scale(2);
            transform-origin: 50% 75%;
        }
        */
}
#AppContact {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: flex-start;
  align-items: center;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppContact .appSettingsButtons {
  justify-content: left;
  height: 5rem;
  border: none;
}
#AppContact .appContact_formContainer {
  width: 100%;
  padding: 5rem 5rem;
  padding: 8rem;
  box-sizing: border-box;
  overflow-y: auto;
  outline: none;
}
#AppContact .appContact_formContainer input._error,
#AppContact .appContact_formContainer textarea._error {
  border-color: red;
}
#AppContact .AppSettingsAccountInputGroup {
  margin-top: 1rem;
  margin-bottom: 2rem;
  height: auto;
}
#AppContact .AppSettingsAccountInputGroup textarea {
  width: 100%;
  min-height: 20rem;
  margin-top: 1rem;
  background-color: transparent;
  padding: 0.5rem;
  text-align: left;
  font-size: 1rem;
  font-size: 2.048rem;
  box-shadow: none;
  border: 1px solid white;
  color: white;
  resize: vertical;
  border-radius: 0;
}
#AppContact .AppSettingsAccountInputGroup textarea:focus {
  outline: none;
}
#AppContact .AppSettingsAccountInputGroup .AppSettingsAccountInput {
  border: none;
  border-bottom: 0.114rem solid white;
  color: white;
  background-color: transparent;
  width: 100%;
  font-size: 2.048rem;
  height: 3rem;
  border-radius: 0;
}
#AppDataSent {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  color: #302E3B;
}
#AppDataSent .appDataSentContent {
  display: flex;
  flex-direction: column;
  height: 90%;
  width: 90%;
  justify-content: space-around;
  align-items: center;
  border-radius: 1rem;
  background: white;
  padding: 2rem;
  box-sizing: border-box;
}
#AppDataSent button {
  flex: 0 0 auto;
  background-color: #e0e0e0;
  padding: 1.5rem 4rem;
  border-radius: 5px;
  border: 0;
  font-size: 2.6rem;
  margin: 0 auto;
  color: black;
}
#AppDataSent button:active {
  background-color: #e0e0e0;
}
#AppDataSent .appDataSent_outerFont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 3rem;
}
#AppDataSent .imageContainer {
  flex: 1 0 0;
  margin: 3rem 0 2rem 0;
  position: relative;
  width: 100%;
}
#AppDataSent .appDataSent_outerFont2 {
  flex: 1 0 0;
  overflow-y: auto;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
#AppDataSent .appDataSent_font {
  font-size: 3rem;
  text-align: center;
  white-space: pre-line;
}
#AppDataSent .appDataSent_font2 {
  font-size: 2.2rem;
  text-align: center;
  white-space: pre-line;
}
#AppDataSent .appDataSent_img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#AppDataSent .appDataSent_buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}
#AppFormSignIn .AppMainSignin_form {
  flex: 3 0 0;
  display: flex;
  margin-bottom: 6rem;
}
#AppFormSignIn .appMainSignin_forgot {
  color: white;
  font-size: 1.4rem;
  margin: 1rem;
}
#AppFormSignUp,
#AppFormSendInfo,
#AppFormSignIn {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: center;
  align-items: center;
}
#AppFormSignUp .AppMainSignin_title,
#AppFormSendInfo .AppMainSignin_title,
#AppFormSignIn .AppMainSignin_title {
  font-weight: bold;
  font-size: 2.276rem;
  margin: 0;
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#AppFormSignUp .AppMainSignUp_form,
#AppFormSendInfo .AppMainSignUp_form,
#AppFormSignIn .AppMainSignUp_form {
  flex: 3 0 0;
  margin: 0 0 6rem 0;
}
#AppFormSignUp .AppMainSignin_sign,
#AppFormSendInfo .AppMainSignin_sign,
#AppFormSignIn .AppMainSignin_sign {
  background-color: #e0e0e0;
  padding: 0.8rem 0rem 0.8rem 1rem;
  font-size: 1.5rem;
  border: 0;
  color: black;
  text-align: left;
  min-width: 28rem;
  margin: 0.3rem;
}
#AppFormSignUp .AppMainSignin_sign::placeholder,
#AppFormSendInfo .AppMainSignin_sign::placeholder,
#AppFormSignIn .AppMainSignin_sign::placeholder {
  color: black;
}
#AppFormSignUp .AppMainSignin_termsIcon,
#AppFormSendInfo .AppMainSignin_termsIcon,
#AppFormSignIn .AppMainSignin_termsIcon {
  width: 3rem;
  height: 3rem;
  margin-left: 1rem;
}
#AppFormSignUp .AppMainSignin_svg,
#AppFormSendInfo .AppMainSignin_svg,
#AppFormSignIn .AppMainSignin_svg {
  width: 100%;
  height: 100%;
}
#AppFormSignUp .container,
#AppFormSendInfo .container,
#AppFormSignIn .container {
  justify-content: left;
}
#AppFormSignUp .ApMainSignIn_terms,
#AppFormSendInfo .ApMainSignIn_terms,
#AppFormSignIn .ApMainSignIn_terms {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  margin-top: 0.5rem;
}
#AppFormSignUp .ApMainSignIn_terms._error,
#AppFormSendInfo .ApMainSignIn_terms._error,
#AppFormSignIn .ApMainSignIn_terms._error {
  border-color: red;
}
#AppFormSignUp #AppPhoneWarning,
#AppFormSignUp #AppEmailWarning,
#AppFormSendInfo #AppPhoneWarning,
#AppFormSendInfo #AppEmailWarning,
#AppFormSignIn #AppPhoneWarning,
#AppFormSignIn #AppEmailWarning {
  margin-top: 2rem;
  font-size: 1.5rem;
  visibility: hidden;
}
#AppFormSignUp .appVisible,
#AppFormSendInfo .appVisible,
#AppFormSignIn .appVisible {
  visibility: inherit !important;
}
#AppFormSignUp .AppMainSignin_fbk,
#AppFormSendInfo .AppMainSignin_fbk,
#AppFormSignIn .AppMainSignin_fbk {
  padding: 0.8rem 0rem 0.8rem 1rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  border: 0px;
  color: white;
  text-align: left;
  margin: 0.3rem;
  background: #3B45C2;
  min-width: 27rem;
}
#AppFormSignUp .AppMainSignin_fbkIcon,
#AppFormSendInfo .AppMainSignin_fbkIcon,
#AppFormSignIn .AppMainSignin_fbkIcon {
  width: 0.8rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
  margin-bottom: -0.2rem;
}
#AppFormSignUp .AppMainSignin_outerSign,
#AppFormSendInfo .AppMainSignin_outerSign,
#AppFormSignIn .AppMainSignin_outerSign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  outline: none;
}
#AppFormSignUp ::placeholder,
#AppFormSendInfo ::placeholder,
#AppFormSignIn ::placeholder {
  color: white;
}
#AppFormSignUp ._errorBox,
#AppFormSendInfo ._errorBox,
#AppFormSignIn ._errorBox {
  border: 2px solid transparent;
}
#AppFormSignUp ._errorBox._error,
#AppFormSendInfo ._errorBox._error,
#AppFormSignIn ._errorBox._error {
  border: 2px solid red;
}
#AppGallery {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: #fff;
  /*
    .appFooter {
        display: none;
        flex: 0.1 0 0;
        height: initial;
        position: initial;
    }
    */
}
#AppGallery .appHeader {
  background-color: black;
}
#AppGallery .appHeader_tools {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  color: black;
  fill: black;
  padding: 0rem 2rem;
  display: flex;
  align-items: center;
  font-size: 2rem;
  min-height: 7.1rem;
}
#AppGallery .appHeader_tools:not(._selected) {
  display: none;
}
#AppGallery .appHeader_toolsRightButtons {
  display: flex;
  justify-content: flex-end;
  flex: 1 0 0;
  /* padding: 2rem 0rem; */
  padding-right: 1rem;
  font-weight: bold;
}
#AppGallery .appHeader_toolsRightButtons div {
  padding-left: 2rem;
}
#AppGallery .appHeader_closeIcon {
  height: 3rem;
  width: 3rem;
  stroke: black;
  fill: black;
}
#AppGallery .appGallery_content {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex: 0.9 0 0;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 5rem;
  padding: 0rem 0.7rem;
}
#AppGallery .appGallery_elements {
  display: flex;
  flex-wrap: wrap;
}
#AppGallery .appGallery_imageWrapper {
  position: relative;
  flex: 0 0 25%;
  height: 13rem;
}
#AppGallery .appGallery_imageWrapper._selected {
  background-color: red;
}
#AppGallery .appGallery_imageWrapper._error {
  display: none;
}
#AppGallery .appGallery_fullImageWrapper:not(._selected),
#AppGallery .appGallery_fullStlWrapper:not(._selected),
#AppGallery .appGallery_fullPdfWrapper:not(._selected),
#AppGallery .appGallery_fullVideoWrapper:not(._selected) {
  display: none;
}
#AppGallery .appGallery_fullImageWrapper,
#AppGallery .appGallery_fullStlWrapper,
#AppGallery .appGallery_fullPdfWrapper,
#AppGallery .appGallery_fullVideoWrapper {
  position: absolute;
  z-index: 100;
  background-color: white;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppGallery .appGallery_fullImageWrapper img,
#AppGallery .appGallery_fullStlWrapper img,
#AppGallery .appGallery_fullPdfWrapper img,
#AppGallery .appGallery_fullVideoWrapper img,
#AppGallery .appGallery_fullImageWrapper canvas,
#AppGallery .appGallery_fullStlWrapper canvas,
#AppGallery .appGallery_fullPdfWrapper canvas,
#AppGallery .appGallery_fullVideoWrapper canvas,
#AppGallery .appGallery_fullImageWrapper video,
#AppGallery .appGallery_fullStlWrapper video,
#AppGallery .appGallery_fullPdfWrapper video,
#AppGallery .appGallery_fullVideoWrapper video {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  box-sizing: border-box;
}
#AppGallery .appGallery_image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 0.2rem;
  box-sizing: border-box;
}
#AppGallery .appHeader_button._hidden {
  display: none;
}
#AppGallery .appFooter {
  background-color: #e0e0e0 !important;
}
#AppGallery .appFooterIcons._hidden {
  display: none;
}
#AppGallery .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppGallery .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppGallery .svgicon_edit {
  fill: #1279a1;
  width: 3.5rem;
}
#AppGallery .closeIcon {
  margin-top: 1.6rem;
  padding-left: 0.6rem;
}
#AppGallery .appGallery_actions {
  color: #1279a1;
  font-size: 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: flex-end;
  padding: 1.3rem 1.6rem;
}
#AppGallery .appGallery_actions div {
  margin: 0 1rem;
}
#AppGallery .appGallery_footerIcons {
  height: 5rem;
  width: 5rem;
}
#AppGallery .appGallery_footerIcons._filters {
  fill: transparent;
  stroke: #1279a1;
  stroke-width: 20;
}
#AppGallery .appGallery_footerIcons._filters:active {
  stroke: #307FE2;
}
#AppGallery .appGallery_footerIcons._share {
  fill: #1279a1;
  stroke: transparent;
}
#AppGallery .appGallery_footerIcons._share:active {
  fill: #307FE2;
}
#AppGallery .appGallery_InfoText {
  display: flex;
  justify-content: center;
  color: black;
  font-size: 2.048rem;
  position: fixed;
  width: 100%;
  bottom: 8.5rem;
}
._transition > #AppGallery._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGallery._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGallery._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppGeneralMenu {
  background: #307FE2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
#AppGeneralMenu .appHeader {
  background-color: transparent;
  top: 0;
  min-width: unset;
  right: 0;
  transform: translate(-50%, 60%);
}
#AppGeneralMenu .appHeader .notifications_button {
  display: flex;
  justify-content: center;
}
#AppGeneralMenu .appHeader .notifications_button.hidden {
  display: none;
}
#AppGeneralMenu #AppGeneralMenu2 {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#AppGeneralMenu #appGeneralMenu_sidebar {
  height: 100%;
  /* width: 100%; */
  /* border-radius: 100%; */
  position: absolute;
  z-index: 1;
  right: 0;
  /* left: 0; */
  top: 0;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  overflow-x: hidden;
  display: flex;
  flex-direction: column-reverse;
  padding: 0 2rem;
}
#AppGeneralMenu .AppOverlayMenuTitleGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* width: 17rem; */
  /* justify-content: center; */
  /* margin-bottom: 6rem; */
  align-items: center;
  margin-bottom: 1.8rem;
  /* margin-top: 5rem; */
  /* margin-left: 29rem; */
}
#AppGeneralMenu .AppOverlayMenuOutterIcon {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}
#AppGeneralMenu .AppOverlayMenuIcon {
  width: 3.5rem;
  height: 3.5rem;
  fill: #ffffff;
  stroke: #FFFFFF;
}
#AppGeneralMenu .AppOverlayMenuOutterTitle {
  display: flex;
  font-size: 2.048rem;
  color: #5E19FE;
  width: 100%;
  justify-content: center;
}
#AppGeneralMenu .AppOverlayMenuTitle {
  display: flex;
  margin-right: 2.7rem;
}
#AppGeneralMenu .AppMenuPagesOutterGroup {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  /* min-height: 46rem; */
  justify-content: flex-end;
  /* margin-left: 33rem; */
  /* margin-top: 5rem; */
  padding: 4rem 5rem;
  box-sizing: border-box;
  flex: 1 0 0;
}
#AppGeneralMenu .AppMenuPagesOutterGroup a {
  text-decoration: none;
}
#AppGeneralMenu .AppMenuPagesInner {
  height: 79vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0%;
}
#AppGeneralMenu .AppMenuPagesGroup {
  display: flex;
  flex-direction: row;
  min-width: 100%;
  align-items: center;
  margin-bottom: 2rem;
}
#AppGeneralMenu .AppOverlayMenuPagesOutterIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  fill: white;
}
#AppGeneralMenu .AppOverlayMenuPagesOutterTitle {
  color: white;
  font-size: 1.9rem;
  margin-left: 1.5rem;
}
#AppGeneralMenu .AppOverlayMenuPagesTitle {
  display: flex;
}
#AppGeneralMenu .AppOverlayMenuPagesIcon {
  width: 100%;
  height: 100%;
}
._transition > #AppGeneralMenu._in {
  animation-name: show_opacity;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGeneralMenu._in #appGeneralMenu_sidebar {
  animation-name: right2center;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGeneralMenu._out {
  animation-name: hide_opacity;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGeneralMenu._out #appGeneralMenu_sidebar {
  animation-name: center2right;
  animation-duration: 0.8s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppGloTreatment {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  color: black;
  background: #FDFDF6;
}
#AppGloTreatment .appHeader {
  background-color: black;
}
#AppGloTreatment .outterTitle {
  width: 100%;
  margin-top: 7px;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  height: 35px;
  z-index: 100;
  pointer-events: none;
}
#AppGloTreatment .outerContent {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  padding-top: 2rem;
}
#AppGloTreatment .content {
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex: 1 0 0;
  position: relative;
}
#AppGloTreatment .content .appHeaderBlue {
  top: 0;
}
#AppGloTreatment .content .appHeader {
  z-index: 99;
}
#AppGloTreatment .content .appTreatmentMain .appGloConnection {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
#AppGloTreatment .content .appTreatmentMain .appGloConnection .appGloButton {
  width: 4rem;
  height: 4rem;
}
#AppGloTreatment .content .appTreatmentMain .appGloConnection #AppGloBatteryStatus {
  text-align: center;
}
#AppGloTreatment .content[data-session="0"] .appWhiteningSessionBox {
  display: none;
}
#AppGloTreatment .content[data-session="0"] .appTreatmentMain {
  display: flex;
}
#AppGloTreatment .content[data-session="0"] .appTreatment_OutterImg {
  background-image: url("../res/s1.png");
}
#AppGloTreatment .content[data-session="1"] .appWhiteningSessionBox {
  display: none;
}
#AppGloTreatment .content[data-session="1"] .appTreatmentMain {
  display: flex;
}
#AppGloTreatment .content[data-session="1"] .appTreatment_OutterImg {
  background-image: url("../res/s2.png");
}
#AppGloTreatment .content[data-session="2"] .appWhiteningSessionBox {
  display: none;
}
#AppGloTreatment .content[data-session="2"] .appTreatmentMain {
  display: flex;
}
#AppGloTreatment .content[data-session="2"] .appTreatment_OutterImg {
  background-image: url("../res/s3.png");
}
#AppGloTreatment .content .appTreatmentMain_control._pause {
  display: none;
}
#AppGloTreatment .content[data-state="play"] .appTreatmentMain_control._rewind,
#AppGloTreatment .content[data-state="play"] .appTreatmentMain_control._pause {
  opacity: 1;
  pointer-events: all;
}
#AppGloTreatment .content[data-state="play"] .appTreatmentMain_control._pause {
  display: flex;
}
#AppGloTreatment .content[data-state="play"] .appTreatmentMain_control._play {
  display: none;
}
#AppGloTreatment .content[data-state="pause"] .appTreatmentMain_startText {
  color: red;
}
#AppGloTreatment .content[data-state="pause"] .appTreatmentMain_control._rewind,
#AppGloTreatment .content[data-state="pause"] .appTreatmentMain_control._play {
  opacity: 1;
  pointer-events: all;
}
#AppGloTreatment .content[data-state="pause"] .appTreatmentMain_control._play {
  display: flex;
}
#AppGloTreatment .content[data-state="pause"] .appTreatmentMain_control._pause {
  display: none;
}
#AppGloTreatment .content[data-state="stop"] .appTreatmentMain_control._rewind,
#AppGloTreatment .content[data-state="stop"] .appTreatmentMain_control._play {
  opacity: 0.5;
  pointer-events: none;
}
#AppGloTreatment .content[data-state="stop"] .appTreatmentMain_control._play {
  display: none;
}
#AppGloTreatment .content[data-state="stop"] .appTreatmentMain_control._pause {
  display: none;
}
#AppGloTreatment .content .appTreatmentMain {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  position: relative;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  width: 100%;
}
#AppGloTreatment .content .appTreatmentMain_title {
  text-align: center;
  font-size: 2.8rem;
  color: black;
  padding: 6rem 4rem;
}
#AppGloTreatment .content .appTreatment_OutterImg {
  flex: 2 0 8rem;
  width: 100%;
  position: relative;
  background: no-repeat center url(../res/s1.png);
  background-size: contain;
}
#AppGloTreatment .content .appWhiteningSessionStartMain {
  display: flex;
  flex-direction: column;
  flex: 2.5;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  overflow: hidden;
  background: white;
  border-radius: 2.4rem 2.4rem 0rem 0rem;
}
#AppGloTreatment .content .appWhiteningSessionStartMain_title {
  text-align: center;
  font-size: 2.731rem;
  color: black;
  padding: 2rem 4rem;
  flex: 0 0 auto;
}
#AppGloTreatment .content .appWhiteningSessionStart_s0 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
}
#AppGloTreatment .content .appWhiteningSessionStart_OutterImg {
  width: 100%;
  position: relative;
  flex: 1 0 0;
}
#AppGloTreatment .content .appTreatmentMain_start {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6vh;
  color: black;
}
#AppGloTreatment .content .appTreatmentMain_footer {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 6rem;
  font-size: 2rem;
  color: black;
  margin-top: 3.6rem;
}
#AppGloTreatment .content .appWhiteningSessionStart_outterTitle {
  font-size: 1.820rem;
}
#AppGloTreatment .content .appWhiteningSessionStart_outterTitle2 {
  font-size: 1.820rem;
  text-align: center;
}
#AppGloTreatment .content .appTreatment_snap {
  max-width: 44%;
  z-index: 99;
}
#AppGloTreatment .content .appWhiteningSessionStart_outterSnap {
  display: flex;
  justify-content: center;
  max-width: 50%;
  align-items: center;
  width: 100%;
}
#AppGloTreatment .content .appWhiteningSessionStartBefore {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: auto;
  flex: 1;
  padding: 1.5rem 0;
}
#AppGloTreatment .content .appWhiteningSessionBox {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: black;
}
#AppGloTreatment .content .appTreatmentMain_outterControls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  font-size: 2rem;
  color: black;
  margin-top: 1rem;
}
#AppGloTreatment .content .appTreatmentMain_control {
  opacity: 1;
  width: 4rem;
  height: 4rem;
  margin: 0 2rem;
  fill: black;
}
#AppGloTreatment .content .appTreatmentMain_control:active {
  fill: black;
}
#AppGloTreatment .content .appTreatmentMain_daily_sessions_completed {
  font-size: 1.2rem;
}
#AppGloTreatment .content .appGloTreatment_connecting {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
#AppGloReminders {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  overflow: auto;
  overflow: overlay;
  -webkit-overflow-scrolling: touch;
  overflow-x: inherit;
  background: white;
}
#AppGloReminders .appSettingsButtons {
  padding: 0 3rem;
  box-sizing: border-box;
  color: #000000;
}
#AppGloReminders .appSettingsButtons input[type="checkbox"]:not(:checked) + label:before {
  background: #e0e0e0;
}
#AppGloReminders [type="checkbox"]:checked + label:before {
  background-color: #08c91f !important;
  border-color: #ffffff;
}
#AppGloReminders input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 3.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppGloReminders input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppGloReminders input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppGloReminders input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppGloReminders [type="checkbox"]:not(:checked),
#AppGloReminders [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppGloReminders [type="checkbox"]:not(:checked) + label,
#AppGloReminders [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppGloReminders [type="checkbox"]:not(:checked) + label:before,
#AppGloReminders [type="checkbox"]:checked + label:before,
#AppGloReminders [type="checkbox"]:not(:checked) + label:after,
#AppGloReminders [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppGloReminders [type="checkbox"]:not(:checked) + label:before,
#AppGloReminders [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppGloReminders [type="checkbox"]:not(:checked) + label:after,
#AppGloReminders [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppGloReminders [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppGloReminders [type="checkbox"]:checked + label:before {
  background-color: #88EEEF;
  border-color: #ffffff;
}
#AppGloReminders .appSettingsCheckboxOutter {
  width: 12%;
}
#AppGloReminders .appHeader {
  background-color: black;
  position: absolute;
}
#AppGloReminders #AppGloRemindersWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: overlay;
}
#AppGloReminders #AppGloRemindersMainWrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: overlay;
}
#AppGloReminders .appHeader {
  z-index: 99;
}
#AppGloReminders .appTreatmentRemindersMain {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  overflow-x: hidden;
  margin-bottom: 4rem;
}
#AppGloReminders .AppHowOverlayFooter2.active + #AppGloRemindersWrapper .appTreatmentRemindersMain {
  margin-bottom: 8rem;
}
#AppGloReminders .appLogo {
  height: 9rem;
}
#AppGloReminders .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppGloReminders .appTreatmentRemindersMain_title {
  flex: 1 0 0;
  text-align: left;
  margin-top: 2.4rem;
  color: black;
  font-size: 3rem;
  /* margin-left: 4rem; */
  display: flex;
  padding: 0rem 3.38rem;
  justify-content: space-between;
}
#AppGloReminders #startDate::placeholder {
  color: black;
}
#AppGloReminders #endDate::placeholder {
  color: black;
}
#AppGloReminders .appTreatmentRemindersMain_calendar {
  font-size: 1.593rem;
  width: 100%;
}
#AppGloReminders .appTreatmentRemindersMain_calendar table {
  width: 100%;
  height: 45%;
  padding: 2rem;
  table-layout: fixed;
  /* display: flex; */
  margin-top: -1.5rem;
  color: black;
  font-size: 1.593rem;
}
#AppGloReminders .appTreatmentRemindersMain_calendar th {
  text-align: center;
  /* background-color: #5E19FE; */
  border-radius: 100%;
  color: #444444;
}
#AppGloReminders .appTreatmentRemindersMain_calendar td {
  text-align: center;
  background-color: transparent;
}
#AppGloReminders .appTreatmentRemindersMain_calendar td[data-treatmentDay] {
  background-color: #000000;
  border-radius: 5px;
  color: white;
}
#AppGloReminders .appTreatmentRemindersMain_calendar td[data-dayfull] {
  background-color: #e0e0e0;
  border-radius: 5px;
  /* border-color: black; */
  color: black;
}
#AppGloReminders .appTreatmentRemindersMain_calendar td[data-daypassed] {
  background-color: red;
  border-radius: 5px;
  /* border-color: black; */
  color: black;
}
#AppGloReminders .appTreatmentRemindersMain_calendar td[data-daydone] {
  background-color: lightgreen;
  border-radius: 5px;
  color: black;
}
#AppGloReminders .appTreatmentRemindersInputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#AppGloReminders .appTreatmentRemindersInputTime {
  width: 10rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  margin: 1rem;
  border-radius: 1rem;
  background-color: #5E19FE;
  color: black;
  text-align: center;
  font-family: primaryfont;
  font-size: 1.6rem;
}
#AppGloReminders .appTreatmentRemindersMain_monthName {
  display: inline-block;
  width: 18rem;
  text-align: left;
  font-size: 2.048rem;
}
#AppGloReminders .appTreatmentReminders_title {
  margin-top: 1rem;
  text-align: left;
  margin-left: 1rem;
  font-size: 2.4rem;
}
#AppGloReminders .AppGloReminders_changeMonth {
  height: 1.5rem;
}
#AppGloReminders .appTreatmentRemindersMain_controls {
  width: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  fill: black;
}
#AppGloReminders .appTreatmentRemindersDateForm {
  margin: 0;
  width: 100%;
  padding: 2.9rem 2.9rem 0 2.9rem;
  box-sizing: border-box;
}
#AppGloReminders .appTreatmentRemindersHoursForm {
  margin-top: 5rem;
  margin-bottom: -3rem;
  display: none;
  overflow: inherit;
  transition: max-height 0.2s ease-out;
}
#AppGloReminders form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#AppGloReminders .group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
#AppGloReminders .group._hidden {
  display: none;
}
#AppGloReminders .group._startEnd {
  margin-bottom: 5rem;
}
#AppGloReminders .group._startEnd:last-child {
  margin-bottom: 0;
}
#AppGloReminders input {
  font-size: 2.048rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  color: black;
  background-color: transparent;
  font-family: inherit;
}
#AppGloReminders input:focus {
  outline: none;
}
#AppGloReminders .appTreatmentRemindersDateForm label {
  color: black;
  font-size: 2.048rem;
  font-weight: normal;
  pointer-events: none;
}
#AppGloReminders .inputContainer {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
#AppGloReminders .appTreatment_outterTitle {
  min-width: 100%;
  margin-left: 2rem;
  margin-top: 6rem;
  font-size: 3.755rem;
  color: #000000;
}
#AppGloReminders .appTreatment_outterSubtitle {
  min-width: 100%;
  margin-left: 6rem;
  margin-top: 3rem;
  font-size: 2.731rem;
  color: #000000;
  text-align: left;
}
#AppGloReminders .AppHowOverlayFooter {
  background-color: rgba(255, 255, 255, 0.3);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 6.5rem;
  position: absolute;
  bottom: 0;
  font-size: 2.276rem;
  display: none;
}
#AppGloReminders .AppHowOverlayFooter.active {
  display: flex;
}
#AppGloReminders .appTreatmentReminderHoursForm {
  display: none;
}
#AppGloReminders .appTreatmentReminderHoursForm.active {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#AppGloReminders .appTreatmentReminderHoursForm_header {
  background-color: transparent;
  font-size: 2.8rem;
  color: #000000;
  padding: 1rem 1rem 2rem 3.35rem;
  text-align: left;
}
#AppGloReminders .appTreatmentReminderHoursForm_body {
  padding: 0 2.9rem 2.9rem 2.9rem;
}
#AppGloReminders .appTreatmentReminder_footerText {
  color: black;
  text-align: center;
}
#AppGloReminders .appTreatmentReminder_footerText b {
  font-style: italic;
}
#AppGloReminders .AppHowOverlayFooterContainer {
  position: sticky;
  top: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}
#AppGloReminders .AppHowOverlayFooter1 {
  background-color: #c4e7eb;
  color: #000000;
  padding: 2rem 0;
  text-align: center;
  font-size: 2.276rem;
  z-index: 200;
  display: block;
  flex: 1 0 auto;
}
#AppGloReminders .AppHowOverlayFooter2 {
  background-color: #c4e7eb;
  color: #000000;
  padding: 2rem 0;
  text-align: center;
  font-size: 2.276rem;
  z-index: 200;
  flex: 1 0 auto;
  display: block;
  margin-left: 0.25rem;
}
#AppGloReminders .AppHowOverlayFooter2:not(.active) {
  display: none;
}
#AppGloReminders .appTreatmentRemindersClockIcon {
  position: absolute;
  right: -0.8rem;
  width: 2.7rem;
  height: 2.7rem;
  bottom: 0;
  padding: 1.8rem;
}
#AppGloReminders .appTreatmentRemindersCalendarIcon {
  position: absolute;
  right: -0.3rem;
  width: 3.2rem;
  height: 3.2rem;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
}
#AppGloReminders input[type=time] {
  font-family: 'PrimaryFont';
  padding: 0;
  border-radius: 0;
}
#AppGloReminders input[type=text]:disabled {
  -webkit-text-fill-color: black;
  opacity: 1;
  z-index: 99;
  background: transparent;
}
#AppGloReminders input[type=date] {
  margin: 1rem;
  padding: 0;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid black;
  padding-bottom: 1.5rem;
  color: black;
  font-size: 2.048rem;
  font-weight: normal;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group._done .inputContainer {
  background-color: lightgreen;
  color: #000000;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group._done .inputContainer .appTreatmentRemindersClockIcon {
  fill: #000000;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group._passed .inputContainer {
  background-color: red;
  color: black;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group._passed .inputContainer .appTreatmentRemindersClockIcon {
  fill: black;
}
#AppGloReminders #AppTreatmentReminderHoursForm .group_inner {
  padding: 0 0 0 2rem;
}
#AppGloReminders #AppTreatmentReminderHoursForm .treatmentTimeInput_title {
  font-size: 2.3rem;
}
#AppGloReminders #AppTreatmentReminderHoursForm .inputContainer {
  margin-left: auto;
  border-radius: 5px;
  background-color: #e0e0e0;
  color: #000000;
  padding: 0.4rem 0.9rem;
  position: initial;
  width: unset;
}
#AppGloReminders #AppTreatmentReminderHoursForm .inputContainer .appTreatmentRemindersClockIcon {
  fill: #000000;
}
#AppGloReminders #AppTreatmentReminderHoursForm .inputClock {
  width: unset;
  text-align: right;
  margin: 0;
  height: unset;
  border: 0;
  color: inherit;
}
#AppGloReminders #AppTreatmentReminderHoursForm .appTreatmentRemindersClockIcon {
  position: initial;
  padding: 0;
  fill: black;
}
#AppGloReminders #AppTreatmentReminderHoursForm .completedMessage {
  font-weight: 100;
  font-size: 1.8rem;
}
#AppGloReminders #AppTreatmentReminderHoursForm .inputContainerOutter {
  display: flex;
  align-items: center;
}
._transition > #AppGloReminders._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGloReminders._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppGloReminders._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppGloHistory .AppHowOverlayFooterContainer {
  position: sticky;
  top: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}
#AppGloHistory .AppHowOverlayFooter1 {
  background-color: #c4e7eb;
  color: #000000;
  padding: 2rem 0;
  text-align: center;
  font-size: 2.276rem;
  z-index: 200;
  display: block;
  flex: 1 0 auto;
}
#AppHelp {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: flex-start;
  align-items: center;
  color: #e0e0e0;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppHelp .appHelpButtons {
  display: unset;
  overflow: overlay;
  height: 79%;
  padding-left: 3rem;
  padding-right: 3rem;
  width: auto;
  position: unset;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8rem;
}
#AppHelp .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppHelp .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppHelp .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppHelp .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppHelp .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppHelp .AppBluetooth_font {
  font-size: 4rem;
}
#AppHelp .appSetingsNextButtonSvg {
  fill: white;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
#AppHelp .appSetingsNextButtonSvg.down {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#AppHelp .appHelpContent {
  font-size: 1.85rem;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border-bottom: 0.114rem solid #FFF;
  transition: max-height 0.1s ease-out;
  margin-bottom: 1.5rem;
}
#AppHelp .active:after {
  border-bottom: 0px solid #FFF;
}
#AppHelp .appHelpContentText {
  color: white;
  margin-bottom: 3.5rem;
}
._transition > #AppHelp._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHelp._out {
  animation-name: center2bottom;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppHome {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: inherit;
  align-items: unset;
  overflow-y: overlay !important;
  -webkit-overflow-scrolling: touch;
  display: block;
  z-index: -12;
}
#AppHome .appLogo {
  height: 8.4rem;
  width: 8.4rem;
}
#AppHome .appHomeMenuLogo {
  height: 10rem;
}
#AppHome .appHomePage {
  position: relative;
  width: 100%;
  height: 100%;
}
#AppHome .appHomeBg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#AppHome .appHome_menuButton {
  z-index: 4;
  background-color: #e0e0e0;
  margin-right: 8%;
  padding: 1rem;
  border-radius: 100%;
  box-shadow: 0px 0px 8px 6px rgba(255, 255, 255, 0.32);
}
#AppHome .appHome_menuButton:active {
  box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.4);
}
#AppHome .appHome_title {
  margin-left: 3.7rem;
  font-size: 5.006rem;
}
#AppHome .appHomeImageIni {
  display: block;
  width: 100%;
}
#AppHome .appHome_topImage {
  width: 100%;
}
#AppHome .appHome_readyHomeButton {
  padding: 1.8rem 4.5rem;
  font-size: 2.731rem;
  box-shadow: 0 0 1.593rem 0.114rem #307FE2;
  border-radius: 1rem;
  margin-top: 3rem;
}
#AppHome .menu_and_tips_outer {
  position: relative;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppHome .appHome_readyHomeOutter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
#AppHome .appHome_circle {
  border-radius: 0;
  right: 0;
  background: black;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  height: 100%;
  top: -4.5rem;
  left: 0;
  position: absolute;
  z-index: -1;
}
#AppHome .appHome_second_circle {
  border-radius: 50%;
  width: 65rem;
  background: #20F2F3;
  height: 50rem;
  bottom: -27rem;
  right: -46.5rem;
  position: absolute;
  z-index: -1;
}
#AppHome .appHome_infoOverButton {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  margin-top: 1.176rem;
  margin-bottom: 1.1rem;
}
#AppHome .appHomeLogoGroup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: -7.5rem 0.5rem 0rem 1.8rem;
}
#AppHome .svgIcon {
  width: 7rem;
  height: 7rem;
}
#AppHome .svgIconEden {
  width: 5.5rem;
  height: 5.5rem;
}
#AppHome .appHome_OutterLogo {
  display: flex;
  height: 11rem;
  align-items: flex-start;
  justify-content: center;
}
#AppHome .appHomeLogo {
  width: 6rem;
  z-index: 99;
}
#AppHome .appHome_Notifications {
  overflow: overlay;
  height: 79%;
  width: auto;
  position: unset;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#AppHome .appHome_subtitles {
  font-size: 2.731rem;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 1.25rem 3.7rem 0rem 3.7rem;
}
#AppHome .appHome_info {
  margin-bottom: 2.5rem;
}
#AppHome .appHome_card {
  padding: 2.1rem 3.7rem 1.25rem 3.7rem;
}
#AppHome .apphome_fidelity_card_small {
  display: flex;
  border-radius: 1.2rem;
  box-sizing: border-box;
  justify-content: space-between;
  color: black;
}
#AppHome .apphome_fidelity_card_small.basic {
  background-color: #E6E6E6;
}
#AppHome .apphome_fidelity_card_small.gold {
  background: linear-gradient(90deg, #C3A966 0%, #C19A51 25%, #C4AA67 70%);
}
#AppHome .apphome_fidelity_card_small.platinum {
  background: linear-gradient(90deg, #9A9A9A 0%, #B1B1B1 25%, #848484 70%);
}
#AppHome .apphome_fidelity_card_small .left {
  padding: 1.4rem 0 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#AppHome .apphome_fidelity_card_small .right {
  padding: 0 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppHome .apphome_fidelity_card_small .right .s_plus {
  line-height: 4rem;
  text-align: end;
  background-color: black;
  color: white;
  margin-bottom: 1rem;
  width: 6rem;
  height: 6rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}
#AppHome .apphome_fidelity_card_small .right .s_plus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppHome .apphome_fidelity_card_small .right .s_qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppHome .apphome_fidelity_card_small .right .s_qr .qr_img {
  box-sizing: border-box;
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.5rem;
}
#AppHome .apphome_fidelity_card_small .right .s_qr .qr_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppHome .apphome_outterText {
  max-width: 100%;
  background-color: #e0e0e0;
  color: black;
  padding: 1.4rem;
  border-radius: 5px;
  margin-top: 0.8rem;
  font-size: 1.365rem;
}
#AppHome .appHomeImageGroup {
  width: 100%;
  height: 100vw;
  position: relative;
  z-index: -1;
}
#AppHome .appHomeImage {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s linear;
  position: absolute;
  object-fit: cover;
}
#AppHome .visible {
  opacity: 1;
}
._transition > #AppHome._in._from_AppFormSignUp,
._transition > #AppHome._in._from_AppFormSignIn {
  animation-name: bottom2center;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppHowToLandingPage {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: #307FE2;
}
#AppHowToLandingPage .AppIntroScreen_logo {
  height: 29rem;
  height: 9rem;
}
#AppHowToLandingPage .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppHowToLandingPage .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppHowToLandingPage .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppHowToLandingPage .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppHowToLandingPage .AppBluetooth_font {
  font-size: 4rem;
}
#AppHowToLandingPage .appTreatment_outterTitle {
  min-width: 100%;
  margin-left: 6rem;
  margin-top: 4rem;
  font-size: 3.755rem;
  color: white;
}
#AppHowToLandingPage .appSettingsButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  /* position: absolute; */
  /* left: 0.569rem; */
  /* top: -38px; */
  width: 85%;
  height: 9rem;
  border-bottom: 0.114rem solid #FFF;
  font-size: 2.048rem;
}
#AppHowToLandingPage .appSetingsNextButton {
  max-width: 5%;
}
._transition > #AppHowToLandingPage._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToLandingPage._in._from_AppHowToPage0,
._transition > #AppHowToLandingPage._in._from_AppHowToPage1,
._transition > #AppHowToLandingPage._in._from_AppHowToPage2 {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToLandingPage._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToLandingPage._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToLandingPage._out._to_AppHowToPage0,
._transition > #AppHowToLandingPage._out._to_AppHowToPage1,
._transition > #AppHowToLandingPage._out._to_AppHowToPage2 {
  animation-name: center2left;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppHowToPage0 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: #307FE2;
}
#AppHowToPage0 .appFooter {
  background: transparent !important;
}
#AppHowToPage0 .AppHowToPage0Title {
  font-size: 3.755rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  z-index: 3;
}
#AppHowToPage0 .appHowToPage0OutterImage {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: -5rem;
}
#AppHowToPage0 .appHowToPage0Image {
  width: 41rem;
}
._transition > #AppHowToPage0._in {
  animation-name: right2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage0._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage0._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage0._out._to_AppHowToLandingPage {
  animation-name: center2right;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppHowToPage1 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: #307FE2;
}
#AppHowToPage1 .appFooter {
  background: transparent !important;
}
#AppHowToPage1 .AppHowToPage1HeadIcon {
  margin-top: 0rem;
  margin-bottom: 3.1rem;
}
#AppHowToPage1 .AppHowToPage1ExitIcon {
  width: 2.2rem;
  margin: 2rem;
}
#AppHowToPage1 .AppHowToPage1OutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppHowToPage1 .AppHowToPage1Icon {
  width: 5.8rem;
  border-radius: 50%;
}
#AppHowToPage1 .AppHowToPage1InfoGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0.7rem;
  margin-bottom: 3.1rem;
  width: 82.5%;
  z-index: 99;
}
#AppHowToPage1 .AppHowToPage1Info {
  margin-left: 1rem;
  font-size: 1.593rem;
}
#AppHowToPage1 .AppHowToPage1Title {
  font-size: 3.7rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  width: 100%;
  padding-top: 4rem;
  margin-bottom: 3rem;
}
._transition > #AppHowToPage1._in {
  animation-name: right2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage1._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage1._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage1._out._to_AppHowToLandingPage {
  animation-name: center2right;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppHowToPage2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: #307FE2;
}
#AppHowToPage2 .appFooter {
  background: transparent !important;
}
#AppHowToPage2 .AppConnectDevice2Gif {
  margin-top: 0rem;
  margin-bottom: 3.5rem;
  border-radius: 2rem;
  width: 31rem;
  pointer-events: none;
}
#AppHowToPage2 .AppConnectDeviceExitIcon {
  width: 2.2rem;
  margin: 2rem;
}
#AppHowToPage2 .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppHowToPage2 .AppConnectDeviceIcon {
  width: 5.8rem;
  border-radius: 50%;
}
#AppHowToPage2 .AppConnectDeviceOutterInfoGroup {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: left;
  width: 82.5%;
  z-index: 10;
}
#AppHowToPage2 .AppConnectDeviceInfoGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 2.5rem;
  margin-bottom: 3rem;
}
#AppHowToPage2 .AppConnectDeviceInfo {
  margin-left: 1rem;
  font-size: 1.593rem;
}
#AppHowToPage2 .AppHowToPage2Title {
  font-size: 3.755rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}
._transition > #AppHowToPage2._in {
  animation-name: right2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage2._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage2._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppHowToPage2._out._to_AppHowToLandingPage {
  animation-name: center2right;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppIntroScreen {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: black;
  color: black;
  justify-content: center;
  align-items: center;
}
#AppIntroScreen .appLogo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  box-sizing: border-box;
}
#AppIntroScreen .appLogo img {
  width: 100%;
  object-fit: contain;
}
#AppIntroScreen .appGeneralMenuLogo {
  height: 24rem;
  width: 24rem;
}
#AppLive {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
}
#AppLive .appLive {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1 0 0;
  align-items: center;
  overflow: hidden;
}
#AppLive .appLive video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#AppMedicalDocuments {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppMedicalDocuments .appHeader {
  z-index: 101;
}
#AppMedicalDocuments #AppMedicalDocuments {
  background: transparent;
}
#AppMedicalDocuments .appSettingsButtonsContainer {
  padding: 6rem 1rem 0;
  box-sizing: border-box;
  width: 100%;
}
#AppMedicalDocuments .appSettingsButtons {
  padding-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
#AppMedicalDocuments .appSettingsButtons.no_bottom_space {
  padding-top: 0;
}
#AppMedicalDocuments .appMedicalDocuments_content {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex: 0.9 0 0;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 0rem 0.7rem;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
#AppMedicalDocuments .appMedicalDocuments_elements {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper_outer {
  border-bottom: 1px solid #747171;
  border-right: 1px solid #747171;
  display: flex;
  flex-direction: column;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper_outer:nth-child(3n+1) {
  border-left: 1px solid #747171;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper_outer:nth-child(-n+3) {
  border-top: 1px solid #747171;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 0 0;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper > .data {
  width: 80%;
  padding-top: 0.8rem;
  font-size: 1.3rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper > .data .date {
  margin-top: 0.25rem;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper > .data:first-child {
  width: 20%;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper._selected {
  background-color: red;
}
#AppMedicalDocuments .appMedicalDocuments_imageWrapper._error {
  display: none;
}
#AppMedicalDocuments .sign {
  margin: auto 0 0;
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
}
#AppMedicalDocuments .sign.signed {
  color: #08c91f;
  background-color: rgba(255, 255, 255, 0.2);
}
#AppMedicalDocuments .sign.not_signed {
  background-color: #08c91f;
}
#AppMedicalDocuments .sign.sent_to_sign {
  background-color: #f3a404;
}
#AppMedicalDocuments .sign.unsignable {
  display: none;
}
#AppMedicalDocuments .appMedicalDocuments_fullImageWrapper:not(._selected),
#AppMedicalDocuments .appMedicalDocuments_fullStlWrapper:not(._selected),
#AppMedicalDocuments .appMedicalDocuments_fullPdfWrapper:not(._selected),
#AppMedicalDocuments .appMedicalDocuments_fullVideoWrapper:not(._selected) {
  display: none;
}
#AppMedicalDocuments .appMedicalDocuments_fullImageWrapper,
#AppMedicalDocuments .appMedicalDocuments_fullStlWrapper,
#AppMedicalDocuments .appMedicalDocuments_fullPdfWrapper,
#AppMedicalDocuments .appMedicalDocuments_fullVideoWrapper {
  position: absolute;
  z-index: 100;
  background-color: white;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppMedicalDocuments .appMedicalDocuments_fullImageWrapper img,
#AppMedicalDocuments .appMedicalDocuments_fullStlWrapper img,
#AppMedicalDocuments .appMedicalDocuments_fullPdfWrapper img,
#AppMedicalDocuments .appMedicalDocuments_fullVideoWrapper img,
#AppMedicalDocuments .appMedicalDocuments_fullImageWrapper canvas,
#AppMedicalDocuments .appMedicalDocuments_fullStlWrapper canvas,
#AppMedicalDocuments .appMedicalDocuments_fullPdfWrapper canvas,
#AppMedicalDocuments .appMedicalDocuments_fullVideoWrapper canvas,
#AppMedicalDocuments .appMedicalDocuments_fullImageWrapper video,
#AppMedicalDocuments .appMedicalDocuments_fullStlWrapper video,
#AppMedicalDocuments .appMedicalDocuments_fullPdfWrapper video,
#AppMedicalDocuments .appMedicalDocuments_fullVideoWrapper video {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  box-sizing: border-box;
}
#AppMedicalDocuments select {
  background: url(../res/LittleArrowInput-black.png) no-repeat 96% 44%;
  background-size: 2rem;
  overflow: hidden;
  margin: 0;
  font-size: 1.3rem;
  width: 100%;
  border: none;
  font-size: 1.59rem;
  padding: 0.6rem 4rem 0.6rem 1rem;
  z-index: 99;
  -webkit-appearance: none;
  background-color: #e0e0e0;
  height: 3rem;
  color: #000000;
  outline: none;
}
#AppMedicalDocuments select option {
  font-size: 0.7rem;
}
#AppMedicalDocuments .appMedicalDocuments_image {
  height: 6rem;
  width: auto;
  object-fit: contain;
  object-position: center;
  border: 1px solid #898787;
  border-radius: 5px;
}
#AppMedicalDocuments .templateOutter {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#AppMedicalDocuments .AppMedicalDocuments_outterTitle {
  width: 100%;
  margin-top: 1vh;
  font-size: 2.5rem;
  color: #FDFDF6;
  text-align: center;
  position: absolute;
  height: 4vh;
}
#AppMedicalDocuments .AppMedicalDocuments_odontogramOutter {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 50px 0 65px 0;
  box-sizing: border-box;
}
#AppMedicalDocuments .description_scrollOutter {
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppMedicalDocuments .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#AppMedicalDocuments .timeline {
  max-width: 100%;
  padding: 0 0.5rem 0rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#AppMedicalDocuments .timeline > svg {
  width: 100%;
  height: 100%;
}
#AppMedicalDocuments .interventionGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 17rem;
}
#AppMedicalDocuments .interventionGroup._small {
  height: 1.4rem;
}
#AppMedicalDocuments .limits._empty {
  display: none;
}
#AppMedicalDocuments .dateContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  align-items: center;
  height: 100%;
}
#AppMedicalDocuments .interventionContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}
#AppMedicalDocuments .vLine {
  width: 1px;
  border-left: 2px solid #88eeef;
  display: flex;
  flex: 1 0 auto;
}
#AppMedicalDocuments .interventionIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  border: 2px solid #88eeef;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FDFDF6;
}
#AppMedicalDocuments .interventionIcon._small {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-radius: 0.8rem;
}
#AppMedicalDocuments .interventionIcon._1 {
  background-image: url(../res/family-1.png);
}
#AppMedicalDocuments .interventionIcon._2 {
  background-image: url(../res/family-2.png);
}
#AppMedicalDocuments .interventionIcon._3 {
  background-image: url(../res/family-3.png);
}
#AppMedicalDocuments .interventionIcon._4 {
  background-image: url(../res/family-4.png);
}
#AppMedicalDocuments .interventionIcon._5 {
  background-image: url(../res/family-5.png);
}
#AppMedicalDocuments .interventionIcon._6 {
  background-image: url(../res/family-6.png);
}
#AppMedicalDocuments .interventionIcon._7 {
  background-image: url(../res/family-7.png);
}
#AppMedicalDocuments .interventionIcon._8 {
  background-image: url(../res/family-8.png);
}
#AppMedicalDocuments .interventionDate {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302E3B;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: -webkit-center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}
#AppMedicalDocuments .interventionTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.6rem;
}
#AppMedicalDocuments .intervention {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #302E3B;
  font-size: 1.4rem;
}
#AppMedicalDocuments .detailsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 76%;
}
#AppMedicalDocuments .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fdfdf6;
  box-shadow: 0 3px 0 #d7e4ed;
  font-family: 'PrimaryFont';
  padding: 1rem;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
  margin-top: 2rem;
}
#AppMedicalDocuments .makeReview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.4rem;
  text-decoration: underline;
}
#AppMedicalDocuments .triangleDetails {
  display: flex;
  width: 0.7rem;
}
#AppMedicalDocuments .moreInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0 0;
}
#AppMedicalDocuments .moreInfo._hide {
  display: none;
}
#AppMedicalDocuments .interventionArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
#AppMedicalDocuments .filtersOutter {
  display: flex;
}
#AppMedicalDocuments .filterGroup {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0.5rem 2rem 0.5rem;
  box-sizing: border-box;
}
#AppMedicalDocuments .filterLabel {
  color: #4696c8;
  font-size: 0.8rem;
  padding-left: 0.7rem;
}
#AppMedicalDocuments .profile {
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'PrimaryFont';
  border-radius: 1rem;
  border: 0;
  width: 100%;
  color: white;
  outline: none;
  margin: 0.25rem;
  max-width: fit-content;
  height: 3rem;
  border-bottom: 1px solid white;
  border-radius: 0;
}
#AppMedicalDocuments .appUserAdmin_profile::after {
  position: absolute;
  visibility: visible;
}
#AppMedicalDocuments .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalDocuments .descriptionOutter {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalDocuments .descriptionOutter._active {
  display: flex;
}
#AppMedicalDocuments .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
#AppMedicalDocuments .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalDocuments .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalDocuments .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #5E19FE;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalDocuments .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalDocuments .odontogram-numberContainer {
  fill: #88eeef;
}
#AppMedicalDocuments .odontogram-numberContainer-active {
  fill: #FDFDF6;
  stroke-width: 20;
  stroke: #5E19FE;
}
#AppMedicalDocuments .appMedicalDocuments_buttonsContainer {
  background-color: transparent;
  display: flex;
  flex: 0.1 0 0;
  justify-content: space-evenly;
  width: 100%;
}
#AppMedicalDocuments .appMedicalDocuments_buttonsFilter {
  background-color: transparent;
  display: flex;
  flex: 0.05 0 0;
  justify-content: space-evenly;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
#AppMedicalDocuments .appMedicalDocuments_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: black;
}
#AppMedicalDocuments .appMedicalDocuments_buttons._active {
  background-color: transparent;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppMedicalDocuments .appMedicalDocuments_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppMedicalDocuments .appMedicalDocuments_filter_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: black;
}
#AppMedicalDocuments .appMedicalDocuments_filter_buttons._active {
  background-color: transparent;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppMedicalDocuments .appMedicalDocuments_filter_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppMedicalDocuments .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalDocuments .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalDocuments .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalDocuments .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalDocuments input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalDocuments input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalDocuments input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalDocuments input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked),
#AppMedicalDocuments [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label,
#AppMedicalDocuments [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:before,
#AppMedicalDocuments [type="checkbox"]:checked + label:before,
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:after,
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:before,
#AppMedicalDocuments [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:after,
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalDocuments [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalDocuments .appSettingsCheckboxOutter {
  width: 12%;
}
#AppMedicalDocuments .templateOutter {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#AppMedicalDocuments .description_scrollOutter {
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppMedicalDocuments .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#AppMedicalDocuments .interventionGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 17rem;
}
#AppMedicalDocuments .interventionGroup._small {
  height: 1.4rem;
}
#AppMedicalDocuments .limits._empty {
  display: none;
}
#AppMedicalDocuments .dateContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  align-items: center;
  height: 100%;
}
#AppMedicalDocuments .interventionContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}
#AppMedicalDocuments .vLine {
  width: 1px;
  border-left: 2px solid #88eeef;
  display: flex;
  flex: 1 0 auto;
}
#AppMedicalDocuments .interventionIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  border: 2px solid #88eeef;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FDFDF6;
}
#AppMedicalDocuments .interventionIcon._small {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-radius: 0.8rem;
}
#AppMedicalDocuments .interventionIcon._1 {
  background-image: url(../res/family-1.png);
}
#AppMedicalDocuments .interventionIcon._2 {
  background-image: url(../res/family-2.png);
}
#AppMedicalDocuments .interventionIcon._3 {
  background-image: url(../res/family-3.png);
}
#AppMedicalDocuments .interventionIcon._4 {
  background-image: url(../res/family-4.png);
}
#AppMedicalDocuments .interventionIcon._5 {
  background-image: url(../res/family-5.png);
}
#AppMedicalDocuments .interventionIcon._6 {
  background-image: url(../res/family-6.png);
}
#AppMedicalDocuments .interventionIcon._7 {
  background-image: url(../res/family-7.png);
}
#AppMedicalDocuments .interventionIcon._8 {
  background-image: url(../res/family-8.png);
}
#AppMedicalDocuments .interventionDate {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302E3B;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: -webkit-center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}
#AppMedicalDocuments .interventionTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.6rem;
}
#AppMedicalDocuments .intervention {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #302E3B;
  font-size: 1.4rem;
}
#AppMedicalDocuments .detailsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 76%;
}
#AppMedicalDocuments .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fdfdf6;
  box-shadow: 0 3px 0 #d7e4ed;
  font-family: 'PrimaryFont';
  padding: 1rem;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
  margin-top: 2rem;
}
#AppMedicalDocuments .makeReview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.4rem;
  text-decoration: underline;
}
#AppMedicalDocuments .triangleDetails {
  display: flex;
  width: 0.7rem;
}
#AppMedicalDocuments .moreInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0 0;
}
#AppMedicalDocuments .moreInfo._hide {
  display: none;
}
#AppMedicalDocuments .interventionArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
#AppMedicalDocuments .filtersOutter {
  display: flex;
}
#AppMedicalDocuments .filterGroup {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0.5rem 2rem 0.5rem;
  box-sizing: border-box;
}
#AppMedicalDocuments .filterLabel {
  color: #4696c8;
  font-size: 0.8rem;
  padding-left: 0.7rem;
}
#AppMedicalDocuments .profile {
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'PrimaryFont';
  border-radius: 1rem;
  border: 0;
  width: 100%;
  color: white;
  outline: none;
  margin: 0.25rem;
  max-width: fit-content;
  height: 3rem;
  border-bottom: 1px solid white;
  border-radius: 0;
}
#AppMedicalDocuments .appUserAdmin_profile::after {
  position: absolute;
  visibility: visible;
}
#AppMedicalDocuments .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalDocuments .descriptionOutter {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalDocuments .descriptionOutter._active {
  display: flex;
}
#AppMedicalDocuments .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
#AppMedicalDocuments .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalDocuments .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalDocuments .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #5E19FE;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalDocuments .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalDocuments .odontogram-numberContainer {
  fill: #88eeef;
}
#AppMedicalDocuments .odontogram-numberContainer-active {
  fill: #FDFDF6;
  stroke-width: 20;
  stroke: #5E19FE;
}
#AppMedicalDocuments .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalDocuments .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalDocuments .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalDocuments .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalDocuments input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalDocuments input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalDocuments input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalDocuments input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked),
#AppMedicalDocuments [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label,
#AppMedicalDocuments [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:before,
#AppMedicalDocuments [type="checkbox"]:checked + label:before,
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:after,
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:before,
#AppMedicalDocuments [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalDocuments [type="checkbox"]:not(:checked) + label:after,
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalDocuments [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalDocuments [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalDocuments .appSettingsCheckboxOutter {
  width: 12%;
}
#AppMedicalAnamnesis {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppMedicalAnamnesis #AppMedicalAnamnesis {
  background: transparent;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_ConsentData {
  margin-bottom: 2.5rem;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_ConsentData.hidden {
  height: 0%;
  overflow: hidden;
  margin-bottom: 0;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_ConsentData:last-child {
  margin-bottom: 0;
}
#AppMedicalAnamnesis .AppMedicalAnamnesis_content {
  display: flex;
  flex: 0.9 0 0;
  flex-direction: column;
  margin-top: 4.8rem;
  text-align: left;
  overflow: auto;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
#AppMedicalAnamnesis .section_title_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid white;
  margin-bottom: 1.5rem;
}
#AppMedicalAnamnesis .section_title {
  font-size: 1.8rem;
  text-transform: uppercase;
}
#AppMedicalAnamnesis .section_icon {
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  box-sizing: border-box;
  width: 3.2rem;
  height: 3.2rem;
}
#AppMedicalAnamnesis .section_icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(90deg);
  transition: transform  0.3s ease;
}
#AppMedicalAnamnesis .section_icon svg.down {
  transform: rotate(-90deg);
}
#AppMedicalAnamnesis .appMedicalAnamnesis_element_title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid white;
  padding-bottom: 0.25rem;
}
#AppMedicalAnamnesis .consentData_container {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto;
  margin-bottom: 0.25rem;
  row-gap: 1rem;
}
#AppMedicalAnamnesis .consentData_container .label {
  font-size: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #717070;
  font-weight: 600;
}
#AppMedicalAnamnesis .consentData_container .label.indent {
  padding-left: 1rem;
  font-weight: 400;
}
#AppMedicalAnamnesis .consentData_container .value {
  font-size: 1.5rem;
  text-align: right;
  border-bottom: 1px solid #717070;
}
#AppMedicalAnamnesis .AppMedicalAnamnesis_outterTitle {
  width: 100%;
  margin-top: 1vh;
  font-size: 2.5rem;
  color: #FDFDF6;
  text-align: center;
  position: absolute;
  height: 4vh;
}
#AppMedicalAnamnesis .description_scrollOutter {
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppMedicalAnamnesis .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#AppMedicalAnamnesis .timeline {
  max-width: 100%;
  padding: 0 0.5rem 0rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#AppMedicalAnamnesis .timeline > svg {
  width: 100%;
  height: 100%;
}
#AppMedicalAnamnesis .interventionGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 17rem;
}
#AppMedicalAnamnesis .interventionGroup._small {
  height: 1.4rem;
}
#AppMedicalAnamnesis .limits._empty {
  display: none;
}
#AppMedicalAnamnesis .dateContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  align-items: center;
  height: 100%;
}
#AppMedicalAnamnesis .interventionContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}
#AppMedicalAnamnesis .vLine {
  width: 1px;
  border-left: 2px solid #88eeef;
  display: flex;
  flex: 1 0 auto;
}
#AppMedicalAnamnesis .interventionIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  border: 2px solid #88eeef;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FDFDF6;
}
#AppMedicalAnamnesis .interventionIcon._small {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-radius: 0.8rem;
}
#AppMedicalAnamnesis .interventionIcon._1 {
  background-image: url(../res/family-1.png);
}
#AppMedicalAnamnesis .interventionIcon._2 {
  background-image: url(../res/family-2.png);
}
#AppMedicalAnamnesis .interventionIcon._3 {
  background-image: url(../res/family-3.png);
}
#AppMedicalAnamnesis .interventionIcon._4 {
  background-image: url(../res/family-4.png);
}
#AppMedicalAnamnesis .interventionIcon._5 {
  background-image: url(../res/family-5.png);
}
#AppMedicalAnamnesis .interventionIcon._6 {
  background-image: url(../res/family-6.png);
}
#AppMedicalAnamnesis .interventionIcon._7 {
  background-image: url(../res/family-7.png);
}
#AppMedicalAnamnesis .interventionIcon._8 {
  background-image: url(../res/family-8.png);
}
#AppMedicalAnamnesis .interventionDate {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302E3B;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: -webkit-center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}
#AppMedicalAnamnesis .interventionTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.6rem;
}
#AppMedicalAnamnesis .intervention {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #302E3B;
  font-size: 1.4rem;
}
#AppMedicalAnamnesis .detailsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 76%;
}
#AppMedicalAnamnesis .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fdfdf6;
  box-shadow: 0 3px 0 #d7e4ed;
  font-family: 'PrimaryFont';
  padding: 1rem;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
  margin-top: 2rem;
}
#AppMedicalAnamnesis .makeReview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.4rem;
  text-decoration: underline;
}
#AppMedicalAnamnesis .triangleDetails {
  display: flex;
  width: 0.7rem;
}
#AppMedicalAnamnesis .moreInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0 0;
}
#AppMedicalAnamnesis .moreInfo._hide {
  display: none;
}
#AppMedicalAnamnesis .interventionArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
#AppMedicalAnamnesis .filtersOutter {
  display: flex;
}
#AppMedicalAnamnesis .filterGroup {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0.5rem 2rem 0.5rem;
  box-sizing: border-box;
}
#AppMedicalAnamnesis .filterLabel {
  color: #4696c8;
  font-size: 0.8rem;
  padding-left: 0.7rem;
}
#AppMedicalAnamnesis .profile {
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'PrimaryFont';
  border-radius: 1rem;
  border: 0;
  width: 100%;
  color: white;
  outline: none;
  margin: 0.25rem;
  max-width: fit-content;
  height: 3rem;
  border-bottom: 1px solid white;
  border-radius: 0;
}
#AppMedicalAnamnesis .appUserAdmin_profile::after {
  position: absolute;
  visibility: visible;
}
#AppMedicalAnamnesis .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalAnamnesis .descriptionOutter {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalAnamnesis .descriptionOutter._active {
  display: flex;
}
#AppMedicalAnamnesis .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
#AppMedicalAnamnesis .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalAnamnesis .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalAnamnesis .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #5E19FE;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalAnamnesis .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalAnamnesis .odontogram-numberContainer {
  fill: #88eeef;
}
#AppMedicalAnamnesis .odontogram-numberContainer-active {
  fill: #FDFDF6;
  stroke-width: 20;
  stroke: #5E19FE;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_buttonsContainer {
  flex: 0.1 0 0;
  width: 100%;
  display: flex;
  background-color: transparent;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: black;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_buttons._active {
  background-color: transparent;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppMedicalAnamnesis .appMedicalAnamnesis_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppMedicalAnamnesis .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalAnamnesis .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalAnamnesis .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalAnamnesis .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalAnamnesis input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalAnamnesis input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalAnamnesis input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalAnamnesis input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked),
#AppMedicalAnamnesis [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label,
#AppMedicalAnamnesis [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:before,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before,
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:after,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:before,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:after,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalAnamnesis .appSettingsCheckboxOutter {
  width: 12%;
}
#AppMedicalAnamnesis .templateOutter {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#AppMedicalAnamnesis .description_scrollOutter {
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppMedicalAnamnesis .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#AppMedicalAnamnesis .interventionGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 17rem;
}
#AppMedicalAnamnesis .interventionGroup._small {
  height: 1.4rem;
}
#AppMedicalAnamnesis .limits._empty {
  display: none;
}
#AppMedicalAnamnesis .dateContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  align-items: center;
  height: 100%;
}
#AppMedicalAnamnesis .interventionContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}
#AppMedicalAnamnesis .vLine {
  width: 1px;
  border-left: 2px solid #88eeef;
  display: flex;
  flex: 1 0 auto;
}
#AppMedicalAnamnesis .interventionIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  border: 2px solid #88eeef;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FDFDF6;
}
#AppMedicalAnamnesis .interventionIcon._small {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-radius: 0.8rem;
}
#AppMedicalAnamnesis .interventionIcon._1 {
  background-image: url(../res/family-1.png);
}
#AppMedicalAnamnesis .interventionIcon._2 {
  background-image: url(../res/family-2.png);
}
#AppMedicalAnamnesis .interventionIcon._3 {
  background-image: url(../res/family-3.png);
}
#AppMedicalAnamnesis .interventionIcon._4 {
  background-image: url(../res/family-4.png);
}
#AppMedicalAnamnesis .interventionIcon._5 {
  background-image: url(../res/family-5.png);
}
#AppMedicalAnamnesis .interventionIcon._6 {
  background-image: url(../res/family-6.png);
}
#AppMedicalAnamnesis .interventionIcon._7 {
  background-image: url(../res/family-7.png);
}
#AppMedicalAnamnesis .interventionIcon._8 {
  background-image: url(../res/family-8.png);
}
#AppMedicalAnamnesis .interventionDate {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302E3B;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: -webkit-center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}
#AppMedicalAnamnesis .interventionTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.6rem;
}
#AppMedicalAnamnesis .intervention {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #302E3B;
  font-size: 1.4rem;
}
#AppMedicalAnamnesis .detailsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 76%;
}
#AppMedicalAnamnesis .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fdfdf6;
  box-shadow: 0 3px 0 #d7e4ed;
  font-family: 'PrimaryFont';
  padding: 1rem;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
  margin-top: 2rem;
}
#AppMedicalAnamnesis .makeReview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5E19FE;
  font-size: 1.4rem;
  text-decoration: underline;
}
#AppMedicalAnamnesis .triangleDetails {
  display: flex;
  width: 0.7rem;
}
#AppMedicalAnamnesis .moreInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0 0;
}
#AppMedicalAnamnesis .moreInfo._hide {
  display: none;
}
#AppMedicalAnamnesis .interventionArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
#AppMedicalAnamnesis .filtersOutter {
  display: flex;
}
#AppMedicalAnamnesis .filterGroup {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0.5rem 2rem 0.5rem;
  box-sizing: border-box;
}
#AppMedicalAnamnesis .filterLabel {
  color: #4696c8;
  font-size: 0.8rem;
  padding-left: 0.7rem;
}
#AppMedicalAnamnesis .profile {
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'PrimaryFont';
  border-radius: 1rem;
  border: 0;
  width: 100%;
  color: white;
  outline: none;
  margin: 0.25rem;
  max-width: fit-content;
  height: 3rem;
  border-bottom: 1px solid white;
  border-radius: 0;
}
#AppMedicalAnamnesis .appUserAdmin_profile::after {
  position: absolute;
  visibility: visible;
}
#AppMedicalAnamnesis .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalAnamnesis .descriptionOutter {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalAnamnesis .descriptionOutter._active {
  display: flex;
}
#AppMedicalAnamnesis .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
#AppMedicalAnamnesis .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalAnamnesis .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalAnamnesis .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #5E19FE;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalAnamnesis .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalAnamnesis .odontogram-numberContainer {
  fill: #88eeef;
}
#AppMedicalAnamnesis .odontogram-numberContainer-active {
  fill: #FDFDF6;
  stroke-width: 20;
  stroke: #5E19FE;
}
#AppMedicalAnamnesis .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalAnamnesis .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalAnamnesis .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalAnamnesis .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalAnamnesis input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalAnamnesis input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalAnamnesis input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalAnamnesis input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked),
#AppMedicalAnamnesis [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label,
#AppMedicalAnamnesis [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:before,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before,
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:after,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:before,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalAnamnesis [type="checkbox"]:not(:checked) + label:after,
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalAnamnesis [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalAnamnesis [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalAnamnesis .appSettingsCheckboxOutter {
  width: 12%;
}
#AppMedicalHistory {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppMedicalHistory .appMedicalHistory_outterTitle {
  color: #FDFDF6;
  font-size: 2.5rem;
  margin-top: 7px;
  position: absolute;
  text-align: center;
  width: 100%;
}
#AppMedicalHistory .appMedicalHistory_odontogramOutter {
  display: flex;
  flex: 0.9 0 0;
  flex-direction: column;
  padding-top: 4.8rem;
}
#AppMedicalHistory .descriptionButton {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}
#AppMedicalHistory .descriptionButton._hide {
  display: none;
}
#AppMedicalHistory .description_scrollOutter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#AppMedicalHistory .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
}
#AppMedicalHistory .odontogram {
  width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex: 1 0 0;
  position: relative;
}
#AppMedicalHistory .odontogram > svg {
  width: 100%;
  height: 100%;
  position: absolute;
}
#AppMedicalHistory .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalHistory .descriptionOutter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 15%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalHistory .descriptionInner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  margin-bottom: 2rem;
}
#AppMedicalHistory .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin: 0 2rem 0 0;
}
#AppMedicalHistory .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalHistory .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalHistory .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #1279a1;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalHistory .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalHistory .odontogram-numberContainer {
  fill: #ffffff;
  stroke-width: 2px;
  stroke: white;
}
#AppMedicalHistory .odontogram-numberContainer-active {
  fill: #FFFFFF;
  stroke-width: 10px;
  stroke: #88eeef;
}
#AppMedicalHistory .appMedicalHistory_buttonsContainer {
  flex: 0.1 0 0;
  width: 100%;
  display: flex;
  background-color: transparent;
}
#AppMedicalHistory .appMedicalHistory_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: black;
}
#AppMedicalHistory .appMedicalHistory_buttons._active {
  background-color: transparent;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppMedicalHistory .appMedicalHistory_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppMedicalHistory .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalHistory .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalHistory .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalHistory .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalHistory input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalHistory input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalHistory input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalHistory input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalHistory [type="checkbox"]:not(:checked),
#AppMedicalHistory [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalHistory [type="checkbox"]:not(:checked) + label,
#AppMedicalHistory [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalHistory [type="checkbox"]:not(:checked) + label:before,
#AppMedicalHistory [type="checkbox"]:checked + label:before,
#AppMedicalHistory [type="checkbox"]:not(:checked) + label:after,
#AppMedicalHistory [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalHistory [type="checkbox"]:not(:checked) + label:before,
#AppMedicalHistory [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalHistory [type="checkbox"]:not(:checked) + label:after,
#AppMedicalHistory [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalHistory [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalHistory [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalHistory .appSettingsCheckboxOutter {
  width: 12%;
}
#AppMedicalTimeline {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppMedicalTimeline .templateOutter {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#AppMedicalTimeline .appMedicalTimeline_outterTitle {
  color: #FDFDF6;
  font-size: 2.5rem;
  margin-top: 7px;
  position: absolute;
  text-align: center;
  width: 100%;
}
#AppMedicalTimeline .appMedicalTimeline_odontogramOutter {
  align-items: center;
  overflow: auto;
  box-sizing: border-box;
  display: flex;
  flex: 0.9 0 0;
  flex-direction: column;
  padding-top: 4.8rem;
  width: 100%;
}
#AppMedicalTimeline .description_scrollOutter {
  width: 100%;
  height: 100%;
  overflow: scroll;
  margin: 0.5rem 0 1rem;
}
#AppMedicalTimeline .description_scrollInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}
#AppMedicalTimeline .timeline {
  max-width: 100%;
  padding: 0 0.5rem 0rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#AppMedicalTimeline .timeline > svg {
  width: 100%;
  height: 100%;
}
#AppMedicalTimeline .interventionGroup {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 17rem;
}
#AppMedicalTimeline .interventionGroup._small {
  height: 1.4rem;
}
#AppMedicalTimeline .limits._empty {
  display: none;
}
#AppMedicalTimeline .dateContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  align-items: center;
  height: 100%;
}
#AppMedicalTimeline .interventionContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}
#AppMedicalTimeline .vLine {
  width: 1px;
  border-left: 2px solid #88eeef;
  display: flex;
  flex: 1 0 auto;
}
#AppMedicalTimeline .interventionIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  border: 2px solid #88eeef;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FDFDF6;
}
#AppMedicalTimeline .interventionIcon._small {
  width: 0.8rem;
  height: 0.8rem;
  background-color: transparent;
  border-radius: 0.8rem;
}
#AppMedicalTimeline .interventionIcon._1 {
  background-image: url(../res/family-1.png);
}
#AppMedicalTimeline .interventionIcon._2 {
  background-image: url(../res/family-2.png);
}
#AppMedicalTimeline .interventionIcon._3 {
  background-image: url(../res/family-3.png);
}
#AppMedicalTimeline .interventionIcon._4 {
  background-image: url(../res/family-4.png);
}
#AppMedicalTimeline .interventionIcon._5 {
  background-image: url(../res/family-5.png);
}
#AppMedicalTimeline .interventionIcon._6 {
  background-image: url(../res/family-6.png);
}
#AppMedicalTimeline .interventionIcon._7 {
  background-image: url(../res/family-7.png);
}
#AppMedicalTimeline .interventionIcon._8 {
  background-image: url(../res/family-8.png);
}
#AppMedicalTimeline .interventionDate {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302E3B;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: -webkit-center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}
#AppMedicalTimeline .interventionTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #1279a1;
  font-size: 1.6rem;
}
#AppMedicalTimeline .intervention {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #302E3B;
  font-size: 1.4rem;
}
#AppMedicalTimeline .detailsContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 76%;
}
#AppMedicalTimeline .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #fdfdf6;
  box-shadow: 0 3px 0 #d7e4ed;
  font-family: 'PrimaryFont';
  padding: 1rem;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
  margin-top: 2rem;
}
#AppMedicalTimeline .makeReview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #1279a1;
  font-size: 1.4rem;
  text-decoration: underline;
}
#AppMedicalTimeline .makeReview._hidden {
  display: none;
}
#AppMedicalTimeline .triangleDetails {
  display: flex;
  width: 0.7rem;
}
#AppMedicalTimeline .moreInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0 0;
}
#AppMedicalTimeline .moreInfo._hide {
  display: none;
}
#AppMedicalTimeline .interventionArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
#AppMedicalTimeline .filtersOutter {
  display: flex;
}
#AppMedicalTimeline .filterGroup {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 2rem 1rem;
  box-sizing: border-box;
}
#AppMedicalTimeline .filterLabel {
  color: #4696c8;
  font-size: 0.8rem;
  padding-left: 0.7rem;
}
#AppMedicalTimeline .profile {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  display: flex;
  font-family: 'PrimaryFont';
  font-size: 1.6rem;
  padding: 1rem;
  justify-content: center;
  margin: 0.25rem;
  text-align: center;
  width: 100%;
}
#AppMedicalTimeline .profile option {
  color: black;
  font-size: 0.6rem;
}
#AppMedicalTimeline .appUserAdmin_profile::after {
  position: absolute;
  visibility: visible;
}
#AppMedicalTimeline .pieceDescription {
  display: flex;
  flex-direction: column;
  padding: 0rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#AppMedicalTimeline .descriptionOutter {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 0.3rem;
}
#AppMedicalTimeline .descriptionOutter._active {
  display: flex;
}
#AppMedicalTimeline .pieceDescriptionTitle {
  display: flex;
  box-sizing: border-box;
  color: #FDFDF6;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
#AppMedicalTimeline .pieceDescriptionSubTitle {
  display: flex;
  padding: 0 0 0.5rem 0;
  box-sizing: border-box;
  color: #88eeef;
  font-size: 1.3rem;
  text-align: left;
}
#AppMedicalTimeline .pieceDescriptionText {
  display: flex;
  padding: 0.2rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
#AppMedicalTimeline .areaDiv {
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
  background-color: #88eeef;
  color: #1279a1;
  font-size: 1.6rem;
  font-family: 'PrimaryFont';
  padding: 0.3rem 0.9rem;
  box-sizing: border-box;
  justify-content: center;
  margin: 0.3rem;
  flex-wrap: nowrap;
}
#AppMedicalTimeline .odontogram-wholePiece {
  transition: transform 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
#AppMedicalTimeline .odontogram-numberContainer {
  fill: #88eeef;
}
#AppMedicalTimeline .odontogram-numberContainer-active {
  fill: #FDFDF6;
  stroke-width: 20;
  stroke: #1279a1;
}
#AppMedicalTimeline .appMedicalTimeline_buttonsContainer {
  background-color: transparent;
  display: flex;
  flex: 0.10 0 0;
  justify-content: space-evenly;
  width: 100%;
}
#AppMedicalTimeline .appMedicalTimeline_buttons {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  background-color: black;
}
#AppMedicalTimeline .appMedicalTimeline_buttons._active {
  background-color: transparent;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  position: relative;
}
#AppMedicalTimeline .appMedicalTimeline_buttons > svg {
  height: 2.5rem;
  margin-bottom: 0.6rem;
}
#AppMedicalTimeline .topleftRadius {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalTimeline .topleftRadius > div {
  width: 100%;
  height: 100%;
  border-top-right-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalTimeline .toprightRadius {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b3c5;
  display: flex;
}
#AppMedicalTimeline .toprightRadius > div {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1rem;
  background-color: #302e3b;
}
#AppMedicalTimeline input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #a6aaa8;
  border: 1px solid #a6aaa8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalTimeline input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppMedicalTimeline input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppMedicalTimeline input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppMedicalTimeline [type="checkbox"]:not(:checked),
#AppMedicalTimeline [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppMedicalTimeline [type="checkbox"]:not(:checked) + label,
#AppMedicalTimeline [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppMedicalTimeline [type="checkbox"]:not(:checked) + label:before,
#AppMedicalTimeline [type="checkbox"]:checked + label:before,
#AppMedicalTimeline [type="checkbox"]:not(:checked) + label:after,
#AppMedicalTimeline [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppMedicalTimeline [type="checkbox"]:not(:checked) + label:before,
#AppMedicalTimeline [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid #ffffffe3;
  background: #ffffffab;
  border-radius: 1.1em;
}
#AppMedicalTimeline [type="checkbox"]:not(:checked) + label:after,
#AppMedicalTimeline [type="checkbox"]:checked + label:after {
  background-color: #fff;
  border-radius: 50%;
  width: 2.1rem;
}
#AppMedicalTimeline [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppMedicalTimeline [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #ffffff;
}
#AppMedicalTimeline .appSettingsCheckboxOutter {
  width: 12%;
}
#AppNotifications {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: rgba(255, 255, 255, 0.36);
  z-index: 1;
}
#AppNotifications .notifications-header {
  display: flex;
  justify-content: space-between;
  font-size: 2.8rem;
  padding-top: 2rem;
}
#AppNotifications .AppNotificationsBg {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#AppNotifications .AppNotifications {
  background-color: white;
  border-radius: 0;
  border: 1px solid white;
  box-sizing: border-box;
  color: black;
  font-size: 1.6rem;
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#AppNotifications .AppNotifications > div:first-child {
  flex: 0 1 auto;
  padding-bottom: 2rem;
  text-align: end;
}
#AppNotifications .AppNotifications > div:last-child {
  flex: 1 1 auto;
  overflow-y: auto;
}
#AppNotifications .AppNotificationsItem:not(:last-child) {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid black;
  padding: 0.5rem;
}
#AppNotifications .notification-icon-outer {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
  fill: black;
  stroke: black;
}
#AppOverlayButtonsSimulationPurchase {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
#AppOverlayButtonsSimulationPurchase .appOverlayButtonsSimulationPurchaseBg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayButtonsSimulationPurchase .AppOverlayButtonsGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 74%;
}
#AppOverlayButtonsSimulationPurchase .AppOverlayButtonsOutter {
  background: #c4e7eb;
  color: #1279a1;
  border-radius: 0;
  width: 110%;
  margin-bottom: 0.25rem;
  min-height: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayButtonsSimulationPurchase .AppOverlayButtonsTitle {
  font-size: 2.048rem;
  text-align: center;
}
#AppOverlayEditAppointment,
#AppOverlayNewAppointment,
#AppOverlayNewReferral {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayEditAppointment .changeAppointmentContainer,
#AppOverlayEditAppointment .cancelAppointmentContainer,
#AppOverlayNewAppointment .changeAppointmentContainer,
#AppOverlayNewAppointment .cancelAppointmentContainer,
#AppOverlayNewReferral .changeAppointmentContainer,
#AppOverlayNewReferral .cancelAppointmentContainer {
  display: none;
}
#AppOverlayEditAppointment .changeAppointmentContainer._visible,
#AppOverlayEditAppointment .cancelAppointmentContainer._visible,
#AppOverlayNewAppointment .changeAppointmentContainer._visible,
#AppOverlayNewAppointment .cancelAppointmentContainer._visible,
#AppOverlayNewReferral .changeAppointmentContainer._visible,
#AppOverlayNewReferral .cancelAppointmentContainer._visible {
  display: block;
}
#AppOverlayEditAppointment .changeAppointmentDetails,
#AppOverlayEditAppointment .cancelAppointmentDetails,
#AppOverlayNewAppointment .changeAppointmentDetails,
#AppOverlayNewAppointment .cancelAppointmentDetails,
#AppOverlayNewReferral .changeAppointmentDetails,
#AppOverlayNewReferral .cancelAppointmentDetails {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2rem 0;
}
#AppOverlayEditAppointment .changeAppointmentDetails .labelChangeAppointment,
#AppOverlayEditAppointment .cancelAppointmentDetails .labelChangeAppointment,
#AppOverlayEditAppointment .changeAppointmentDetails .labelCancelAppointment,
#AppOverlayEditAppointment .cancelAppointmentDetails .labelCancelAppointment,
#AppOverlayNewAppointment .changeAppointmentDetails .labelChangeAppointment,
#AppOverlayNewAppointment .cancelAppointmentDetails .labelChangeAppointment,
#AppOverlayNewAppointment .changeAppointmentDetails .labelCancelAppointment,
#AppOverlayNewAppointment .cancelAppointmentDetails .labelCancelAppointment,
#AppOverlayNewReferral .changeAppointmentDetails .labelChangeAppointment,
#AppOverlayNewReferral .cancelAppointmentDetails .labelChangeAppointment,
#AppOverlayNewReferral .changeAppointmentDetails .labelCancelAppointment,
#AppOverlayNewReferral .cancelAppointmentDetails .labelCancelAppointment {
  font-size: 1.8rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
#AppOverlayEditAppointment .lastMessageBack,
#AppOverlayNewAppointment .lastMessageBack,
#AppOverlayNewReferral .lastMessageBack {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0.5rem;
  background-color: #302e3bcc;
}
#AppOverlayEditAppointment .lastMessageBack._visible,
#AppOverlayNewAppointment .lastMessageBack._visible,
#AppOverlayNewReferral .lastMessageBack._visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayEditAppointment .lastMessageBack .lastMessageContainer,
#AppOverlayNewAppointment .lastMessageBack .lastMessageContainer,
#AppOverlayNewReferral .lastMessageBack .lastMessageContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 2rem;
  margin: 1rem;
  border-radius: 0.5rem;
}
#AppOverlayEditAppointment .lastMessageBack #lastMessage,
#AppOverlayNewAppointment .lastMessageBack #lastMessage,
#AppOverlayNewReferral .lastMessageBack #lastMessage {
  color: black;
  font-size: 1.6rem;
  padding: 2rem;
}
#AppOverlayEditAppointment .appOverlayEditAppointment,
#AppOverlayNewAppointment .appOverlayEditAppointment,
#AppOverlayNewReferral .appOverlayEditAppointment {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayEditAppointment #buttonsInitial._hidden,
#AppOverlayNewAppointment #buttonsInitial._hidden,
#AppOverlayNewReferral #buttonsInitial._hidden {
  display: none;
}
#AppOverlayEnterEmail {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayEnterEmail .appOverlayEnterEmail {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window {
  background-color: white;
  color: black;
  font-size: 2rem;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window h1 {
  font-weight: bold;
  font-size: 2.276rem;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window .form {
  padding: 1rem 1rem 3rem 1rem;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window input {
  background-color: #e0e0e0;
  padding: 0.8rem 0rem 0.8rem 1rem;
  font-size: 1.5rem;
  border: 0px;
  color: black;
  text-align: left;
  min-width: 28rem;
  margin: 0.3rem;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window input::placeholder {
  color: black;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  background-color: #e0e0e0;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window .buttons button {
  background-color: transparent;
  padding: 1rem;
  border: 0px;
  color: black;
  margin: 0;
  outline: none;
  flex: 1 0 0;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window .buttons button:first-child {
  border-right: 1px solid white;
}
#AppOverlayEnterEmail .appOverlayEnterEmail .window .buttons button:active {
  background-color: black;
  color: white;
}
#AppOverlayGloFirstTreatmentAfterInstallation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window {
  background-color: white;
  color: black;
  font-size: 2rem;
  box-sizing: border-box;
  padding: 0;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  border-radius: 3px;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window h1 {
  font-weight: bold;
  font-size: 2.276rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .form {
  padding: 1rem 2rem 3rem 2rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .form > div {
  margin-bottom: 2rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .form > div:last-child {
  margin-bottom: 0;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window input {
  background-color: #e0e0e0;
  padding: 0.8rem 0rem 0.8rem 1rem;
  font-size: 1.5rem;
  border: 0px;
  color: black;
  text-align: left;
  min-width: 28rem;
  margin: 0.3rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window input::placeholder {
  color: black;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  background-color: #e0e0e0;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .buttons button {
  background-color: transparent;
  padding: 1rem;
  border: 0px;
  color: black;
  margin: 0;
  outline: none;
  flex: 1 0 0;
  font-size: 2rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .buttons button:first-child {
  border-right: 1px solid white;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appOverlayGloFirstTreatmentAfterInstallation .window .buttons button:active {
  background-color: black;
  color: white;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appSettingsButtons {
  border: 0;
  height: 3rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appSettingsButtons._hidden {
  display: none;
}
#AppOverlayGloFirstTreatmentAfterInstallation select {
  background: url(../res/LittleArrowInput-black.png) no-repeat 96% 44%;
  background-size: 2rem;
  overflow: hidden;
  margin: 0;
  font-size: 1.3rem;
  border: none;
  font-size: 1.59rem;
  padding: 0.6rem 4rem 0.6rem 1rem;
  z-index: 99;
  -webkit-appearance: none;
  background-color: #e0e0e0;
  height: 3rem;
  color: #000000;
  outline: none;
}
#AppOverlayGloFirstTreatmentAfterInstallation select option {
  font-size: 0.7rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 2.22222222rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #e0e0e0;
  border: 1px solid black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppOverlayGloFirstTreatmentAfterInstallation input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  width: 1.33333333rem;
  height: 1.33333333rem;
  border-radius: 0.88888889rem;
  background: #000;
  border: 1px solid black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#AppOverlayGloFirstTreatmentAfterInstallation input[type="checkbox"]:checked + label:after {
  margin-left: 0.88888889rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation input[type="checkbox"] + label {
  line-height: 1;
  padding: 0.27777778rem 0 0 2.77777778rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked),
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked) + label,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked) + label:before,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:before,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked) + label:after,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:after {
  content: '';
  height: 2.1rem;
  transition: all .5s ease;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked) + label:before,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:before {
  left: 0;
  top: 0;
  width: 4rem;
  height: 2.2rem;
  border: 1px solid rgba(0, 0, 0, 0.9);
  background: transparent;
  border-radius: 1.1em;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:not(:checked) + label:after,
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:after {
  background-color: #000;
  border-radius: 50%;
  width: 2.1rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:after {
  left: 1rem;
}
#AppOverlayGloFirstTreatmentAfterInstallation [type="checkbox"]:checked + label:before {
  background-color: #08c91f;
  border-color: #000000;
}
#AppOverlayGloFirstTreatmentAfterInstallation .appSettingsCheckboxOutter {
  width: 12%;
}
#AppOverlayLoading {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayLoading .appOverlayLoading {
  height: 10rem;
  width: 10rem;
  background-color: white;
  color: black;
  border-radius: 1rem;
  font-size: 2rem;
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayLoading .appOverlayLoading_icon {
  height: 8rem;
  width: 8rem;
  margin: auto;
  animation: animation_loading .7s linear 0s infinite forwards;
}
@keyframes animation_loading {
  0% {
    transform: rotate(0deg);
  }
  8.32% {
    transform: rotate(0deg);
  }
  8.33% {
    transform: rotate(30deg);
  }
  16.65% {
    transform: rotate(30deg);
  }
  16.66% {
    transform: rotate(60deg);
  }
  24.98% {
    transform: rotate(60deg);
  }
  24.99% {
    transform: rotate(90deg);
  }
  33.31% {
    transform: rotate(90deg);
  }
  33.32% {
    transform: rotate(120deg);
  }
  41.64% {
    transform: rotate(120deg);
  }
  41.65% {
    transform: rotate(150deg);
  }
  49.97% {
    transform: rotate(150deg);
  }
  49.98% {
    transform: rotate(180deg);
  }
  58.30% {
    transform: rotate(180deg);
  }
  58.31% {
    transform: rotate(210deg);
  }
  66.63% {
    transform: rotate(210deg);
  }
  66.64% {
    transform: rotate(240deg);
  }
  74.96% {
    transform: rotate(240deg);
  }
  74.97% {
    transform: rotate(270deg);
  }
  83.29% {
    transform: rotate(270deg);
  }
  83.30% {
    transform: rotate(300deg);
  }
  91.62% {
    transform: rotate(300deg);
  }
  91.63% {
    transform: rotate(330deg);
  }
  99.99% {
    transform: rotate(330deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#AppOverlayNewAppointment {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayNewAppointment .appOverlayEditAppointment {
  background-color: rgba(255, 255, 255, 0.5);
}
#AppOverlayNewAppointment .changeAppointmentContainer,
#AppOverlayNewAppointment .cancelAppointmentContainer {
  display: block;
}
#AppOverlayNewAppointment .changeAppointmentDetails,
#AppOverlayNewAppointment .cancelAppointmentDetails {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2rem 0;
}
#AppOverlayNewAppointment .changeAppointmentDetails .labelChangeAppointment,
#AppOverlayNewAppointment .cancelAppointmentDetails .labelChangeAppointment,
#AppOverlayNewAppointment .changeAppointmentDetails .labelCancelAppointment,
#AppOverlayNewAppointment .cancelAppointmentDetails .labelCancelAppointment {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
#AppOverlayNewAppointment .window {
  box-sizing: border-box;
  width: 50%;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: 50%;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  overflow: auto;
  margin: auto;
  padding: 3rem;
}
#AppOverlayNewAppointment .window textarea {
  width: 100%;
  padding: 0.4rem 1rem 0.8rem 1rem;
  text-align: left;
}
#AppOverlayNewAppointment .window .form .title {
  font-size: 2.8rem;
}
#AppOverlayNewAppointment .window .input_row {
  display: flex;
  width: 100%;
}
#AppOverlayNewAppointment .window input {
  min-width: unset;
  flex: 1 0 auto;
  width: unset;
}
#AppOverlayNewAppointment .window input:first-child {
  margin-right: 1rem;
}
#AppOverlayNewAppointment .window input:last-child {
  margin-left: 1rem;
}
#AppOverlayNewAppointment .timetable {
  font-size: 1.8rem;
}
#AppOverlayNewAppointment .buttons._row button {
  width: unset;
  flex: 1 0 auto;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 2rem 1rem;
}
#AppOverlayNewAppointment .buttons._row button:first-child {
  margin-right: 1rem;
}
#AppOverlayNewAppointment .buttons._row button:last-child {
  margin-left: 1rem;
}
#AppOverlayNewAppointment select {
  min-width: 50%;
}
#AppOverlayNewReferral {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayNewReferral .changeReferralContainer,
#AppOverlayNewReferral .cancelReferralContainer {
  display: block;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0 2rem 1rem;
}
#AppOverlayNewReferral .changeReferralDetails,
#AppOverlayNewReferral .cancelReferralDetails {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2rem 0;
}
#AppOverlayNewReferral .changeReferralDetails .labelChangeReferral,
#AppOverlayNewReferral .cancelReferralDetails .labelChangeReferral,
#AppOverlayNewReferral .changeReferralDetails .labelCancelReferral,
#AppOverlayNewReferral .cancelReferralDetails .labelCancelReferral {
  font-size: 1.8rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}
#AppOverlayNewReferral .window {
  background: rgba(255, 255, 255, 0.6);
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#AppOverlayNewReferral .window textarea {
  width: 90%;
  padding: 0.4rem 1rem 0.8rem 1rem;
  text-align: left;
}
#AppOverlayNewReferral .window input {
  width: 100%;
  margin-top: 0.3rem;
}
#AppOverlayNewReferral .window .form {
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 2rem 1rem 1rem;
}
#AppOverlayNewReferral .labelChangeAppointment {
  margin-top: 1rem;
  margin-bottom: 0;
}
#AppOverlayNoResults {
  background-color: rgba(255, 255, 255, 0.36);
  z-index: 1;
}
#AppOverlayNoResults .AppOverlaySubmenuBg {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayNoResults .appOverlayNoResults {
  height: 3rem;
  width: 70%;
  background-color: white;
  color: black;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlayReview {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
#AppOverlayReview .appOverlayReview {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayReview #titleInput {
  width: 100%;
}
#AppOverlayReview #review_body {
  width: 100%;
}
#AppOverlayReviewContent {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#AppOverlayReviewContent .wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: black;
}
#AppOverlayReviewContent .wrapper video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#AppOverlayReviewContent .wrapper .controls {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
}
#AppOverlayReviewContent .wrapper .controls button {
  color: white;
  background-color: #88EEEF;
  font-family: PrimaryFont;
  font-size: 2rem;
  border: 0;
  padding: 2rem 2rem;
  border-radius: 1rem;
  outline: none;
}
#AppOverlayReviewContent .wrapper .controls button:active {
  color: #88EEEF;
  background-color: white;
}
#AppOverlaySubmenu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: rgba(255, 255, 255, 0.36);
  z-index: 1;
}
#AppOverlaySubmenu .AppOverlaySubmenuBg {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#AppOverlaySubmenu .appOverlaySubmenu {
  width: 64vw;
  height: 64vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
  background-color: white;
  border-radius: 50%;
  margin-bottom: 2rem;
  margin-right: 2rem;
  padding: 2rem 2rem 0.2rem 2rem;
  box-sizing: border-box;
}
#AppOverlaySubmenu .AppMenuPagesGroup {
  margin: 0.9rem 0;
  height: 3rem;
}
#AppOverlaySubmenu .AppMenuPagesGroup._glo {
  height: 4rem;
  margin-top: 0;
}
#AppOverlaySubmenu .AppOverlayMenuPagesOutterIcon {
  display: flex;
  justify-content: center;
  width: 11rem;
  height: 5rem;
}
#AppOverlaySubmenu .AppOverlayMenuPagesOutterIcon._glo {
  width: 4rem;
}
#AppOverlaySubmenu .AppOverlayMenuPagesIcon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppOverlaySubmenu .AppOverlayButtonsGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 74%;
}
#AppOverlaySubmenu .AppOverlayButtonsOutter {
  background: #20F2F3;
  border-radius: 11.6rem;
  width: 110%;
  margin-bottom: 0.25rem;
  min-height: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppOverlaySubmenu .AppOverlayButtonsTitle {
  color: white;
  font-size: 2.048rem;
  text-align: center;
}
#AppOverlayTerms .appOverlayBack {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#AppOverlayTerms .formSignIn_Terms_closeIconContainer {
  display: flex;
  justify-content: flex-end;
}
#AppOverlayTerms .formSignIn_Terms_closeIcon {
  width: 2rem;
  height: 2rem;
  margin-top: 1rem;
  margin-right: 1rem;
}
#AppOverlayTerms .appOverlayTerms {
  max-height: 85%;
  width: 90%;
  position: relative;
  transform: translateX(5.5%);
  margin-top: 2%;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  border-radius: 1rem;
  color: white;
  padding-top: 1rem;
  box-sizing: border-box;
  padding: 1rem;
  text-align: left;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#AppOverlayTerms .appOverlayTerms .formSignIn_Terms_Title {
  margin-top: 2rem;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#AppOverlayTerms .appOverlayTerms .formSignIn_Terms_ChapterTitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 2.2rem;
}
#AppOverlayTerms .appOverlayTerms .formSignIn_Terms_ChapterBody {
  font-size: 1.3rem;
}
#AppOverlayTerms .appOverlayTerms h1 {
  font-family: PrimaryFont;
  font-size: 3rem;
}
#AppOverlayTerms .appOverlayTerms p {
  font-size: 1.5rem;
}
#AppOverlayTerms .appOverlayTerms button {
  display: none;
}
#AppOverlayTerms .appOverlayTerms._showAccept button {
  display: block;
  margin: 2rem auto;
  border: 1px solid blue;
  background: none;
  font-size: 1.3rem;
  padding: 1rem 2rem;
  color: blue;
  border-radius: 2rem;
  outline: none;
}
#AppOverlayTerms .appOverlayTerms._showAccept button:active {
  color: white;
  background-color: blue;
}
#AppOverlayUrl #AppOverlays .AppOverlayUrl {
  position: absolute;
  pointer-events: initial;
  overflow: hidden;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
}
#AppOverlayUrl iframe {
  border-width: 0;
  background-color: #2c2833;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
#AppOverlayUrl .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2c2833;
  border-top: 1px solid #2c2833;
  display: flex;
  align-items: center;
  justify-content: center;
}
#AppOverlayUrl .AppOverlayCloseIcon {
  width: auto;
  height: 50%;
}
#AppPlans {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background: #88EEEF;
}
#AppPlans #planes-dentales {
  margin-top: 4.0rem;
  font-size: 1.5rem;
  text-shadow: none !important;
  overflow-y: auto;
  height: auto;
}
#AppPlans #planes-dentales h2 {
  font-size: 1.5em;
  font-weight: normal;
}
#AppPlans #planes-dentales h3 {
  margin-top: 1.0rem;
  text-decoration: underline;
}
#AppPlans #planes-dentales p {
  margin-bottom: 0;
}
#AppPlans #planes-dentales .Headline {
  font-size: 1em;
  /*text-shadow: 1px 1px 0 #6c757d;*/
  font-weight: 900;
}
#AppPlans #planes-dentales .planRow {
  display: flex;
  justify-content: center;
}
@keyframes expand {
  from {
    transform: scale(0);
    opacity: 0;
    background: #5470B0;
  }
}
#AppPlans #planes-dentales .plan {
  background-color: white;
  border: 1px solid #6c757d;
  border-radius: 1.0rem;
  color: #88EEEF;
  display: flex;
  flex-direction: column;
  padding: 1.0rem;
  width: 90%;
}
#AppPlans #planes-dentales .plan .planHeader {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#AppPlans #planes-dentales .plan .planHeader img {
  height: 6.0rem;
}
#AppPlans #planes-dentales .plan .planHeader .planMore {
  background: no-repeat center url(/res/more.svg);
  background-size: contain;
  height: 2.5rem;
  width: 6.0rem;
}
#AppPlans #planes-dentales .plan .planHeader .planMore._expanded {
  visibility: hidden;
}
#AppPlans #planes-dentales .plan .planDetail {
  border-top: 1px solid #6c757d;
  color: #6c757d;
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  animation: expand 0.5s ease-in-out;
}
#AppPlans #planes-dentales .plan .planDetail._expanded {
  display: block;
}
#AppPlans #planes-dentales .plan .planDetail .planDescription {
  margin: 1rem 0;
}
#AppPlans #planes-dentales .plan .planDetail .planFirstAmount {
  font-weight: bold;
}
#AppPlans #planes-dentales .plan .planDetail .planSecondAmount {
  font-size: 1.3rem;
}
#AppPlans #planes-dentales .plan .planDetail .planInfo {
  font-size: 1.1rem;
}
#AppPlans #planes-dentales .plan .planButton {
  background-color: #88EEEF;
  border: 1px solid #6c757d;
  border-radius: 1rem;
  font-size: 20px;
  margin-top: 10px;
  padding: 0.8rem;
  text-transform: uppercase;
}
._transition > #AppPlans._in {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppPlans._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppPlanTreatment {
  margin: 0 auto;
  background: #307FE2;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: white;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppPlanTreatment #AppOverlayBackground {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppPlanTreatment #AppOverlayContent {
  position: absolute;
  pointer-events: initial;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  color: white;
  align-items: center;
}
#AppPlanTreatment #AppOverlayContent #OverlayInnerContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  margin-top: auto;
}
#AppPlanTreatment #AppOverlayContent .AppConnectDeviceExitIcon {
  width: 2rem;
  margin: 0.5rem;
}
#AppPlanTreatment #AppOverlayContent .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayIcon {
  width: 10.9vh;
  display: flex;
  margin-top: auto;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterNumberBig {
  background-color: #e0e0e0;
  border-radius: 1rem 0rem 0rem 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1.8 0;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterSmallGroup {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0.4rem;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterNumber {
  background-color: #e0e0e0;
  border-radius: 1rem 0rem 0rem 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1.8 0;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayNumberBig {
  font-size: 1.5rem;
  line-height: 9rem;
  text-align: center;
  color: black;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayNumber {
  font-size: 1.5rem;
  text-align: center;
  color: black;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterTitleBig {
  font-size: 1.5rem;
  z-index: 0;
  border-radius: 0rem 1rem 1rem 0rem;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0;
  height: 100%;
  margin-left: 0rem;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterTitle {
  z-index: 0;
  border-radius: 0rem 1rem 1rem 0rem;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1 0;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayTitleBig {
  color: white;
  font-size: 1.3rem;
  text-align: left;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayTitle {
  color: white;
  font-size: 1.3rem;
  text-align: left;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayCustomTitle {
  color: white;
  font-size: 2.276rem;
  text-align: center;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayGroupBig {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.3rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 1rem 0.1rem rgba(32, 56, 81, 0.55);
  width: 100%;
  margin-top: 1rem;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 1rem 0.1rem rgba(32, 56, 81, 0.55);
  margin-top: 1.2rem;
  width: 100%;
}
#AppPlanTreatment #AppOverlayContent .active {
  box-shadow: 0px 0px 2.276rem 0.91rem #b3d4ff;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayCustomGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 27rem;
  background: #3eb5db;
  border-radius: 1rem;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayOutterGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 81%;
  margin-top: 3.7vh;
  flex: 0 0 19.8vh;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayHeadTitle {
  font-size: 2.2rem;
  margin: 2.4vh 0 0 0;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayHeadAsk {
  font-size: 1.9rem;
  margin: 4.8vh 0 0 0;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayHeadClickHere {
  font-size: 1.6rem;
  margin: 0.6vh 0rem 2.2vh 0rem;
  text-align: center;
}
#AppPlanTreatment #AppOverlayContent .AppPlanTreatmentOverlayInputNote {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 3.2vh;
}
#AppPlanTreatment #AppOverlayContent .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#AppPlanTreatment #AppOverlayContent .AppHowOverlayFooter {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
#AppPlanTreatment #AppOverlayContent .AppHowOverlayFooterBack {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 2.8vh;
  line-height: 0.8;
}
#AppPlansHelp {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  align-items: center;
  background: #88EEEF;
}
#AppPlansHelp #help {
  background: white;
  color: #6c757d;
  font-size: 14px;
  height: auto;
  margin-bottom: 5%;
  margin-top: 4.0rem;
  overflow-y: auto;
  text-align: justify;
  width: 90%;
}
#AppPlansHelp #help h1 {
  font-size: 1.5em;
  margin-top: 15px;
}
._transition > #AppPlansHelp._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppPlansHelp._out {
  animation-name: center2bottom;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppProductData {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
}
#AppProductData .appProductDataContent {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: black;
  padding: 3rem 3.5rem;
  box-sizing: border-box;
}
#AppProductData .appProductData_productName {
  font-size: 2.9rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: white;
}
#AppProductData .appProductData_productImage {
  width: 100%;
}
#AppProductData .appProductData_productDescription {
  display: flex;
  overflow: overlay;
  font-size: 1.7rem;
  white-space: pre-line;
  text-align: left;
  flex: 1 1 0;
  color: white;
  max-height: 33rem;
  /* padding: 1rem; */
  /* background-color: #dadadc; */
}
#AppProductData .appProductData_productPriceWrapper {
  align-self: center;
  margin-top: 1.5rem;
}
#AppProductData .appProductData_productPriceWrapper:not(._selected) {
  display: none;
}
#AppProductData .appProductData_productPrice {
  text-align: center;
  font-size: 3.6rem;
  line-height: 0.8;
  color: white;
}
#AppProductData .appProductData_productPriceIVA {
  text-align: center;
  font-size: 1.6rem;
  color: white;
}
#AppProductData .appProductData_clinics {
  flex: 1 0 auto;
  width: 100%;
}
#AppProductData .appProductData_clinic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem;
  font-size: 1.7rem;
  background-color: white;
  color: black;
  border-top: 0.114rem solid black;
}
#AppProductData .appProductData_clinic:active {
  background-color: #4696c8;
  color: white;
  fill: white;
}
#AppProductData .appProductDataClinic_arrowIcon {
  height: 2rem;
  width: 2rem;
  transform: scaleX(-1);
}
#AppRecomendationPlan {
  background: #307FE2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  align-items: center;
  background-color: white;
}
#AppRecomendationPlan #AppOverlayBackground {
  height: 100%;
  width: 100%;
}
#AppRecomendationPlan #AppOverlayContent {
  position: absolute;
  pointer-events: initial;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: auto;
  background: white;
  color: white;
  align-items: center;
}
#AppRecomendationPlan #AppOverlayContent #OverlayInnerContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}
#AppRecomendationPlan #AppOverlayContent .AppConnectDeviceExitIcon {
  width: 2rem;
  margin: 0.5rem;
}
#AppRecomendationPlan #AppOverlayContent .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayIcon {
  width: 14rem;
  height: 14rem;
  margin-top: auto;
  display: flex;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterNumberBig {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 1rem 0rem 0rem 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 20rem;
  z-index: 9;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterSmallGroup {
  display: flex;
  flex-direction: column;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterNumber {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 1rem 0rem 0rem 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 18rem;
  z-index: 3;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayNumberBig {
  font-size: 1.9rem;
  font-weight: bold;
  /* line-height: 39px; */
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayNumber {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterTitleBig {
  z-index: 0;
  border-radius: 0rem 1rem 1rem 0rem;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 100%;
  margin-left: 0rem;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterTitle {
  z-index: 0;
  border-radius: 0rem 1rem 1rem 0rem;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 9rem;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayTitleBig {
  color: #307FE2;
  font-size: 1.9rem;
  text-align: left;
  font-weight: bold;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayTitle {
  color: #307FE2;
  font-size: 1.6rem;
  text-align: left;
  font-weight: bold;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayCustomTitle {
  color: white;
  font-size: 2.276rem;
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayGroupBig {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 1rem 0.1rem rgba(32, 56, 81, 0.55);
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 1rem 0.1rem rgba(32, 56, 81, 0.55);
  margin-bottom: 0.2rem;
}
#AppRecomendationPlan #AppOverlayContent .active {
  box-shadow: 0px 0px 2.276rem 0.91rem #b3d4ff;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayCustomGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 27rem;
  background: #3eb5db;
  border-radius: 1rem;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayOutterGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-height: 23rem;
  width: 27rem;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayHeadTitle {
  font-size: 2.3rem;
  margin: 4.1rem 0rem 1.2rem 0rem;
  display: flex;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayHeadAsk {
  font-size: 1.9rem;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayHeadClickHere {
  font-size: 1.7rem;
  /* background-color: white; */
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .AppPlanTreatmentOverlayInputNote {
  font-size: 1.365rem;
  max-width: 27.5rem;
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#AppRecomendationPlan #AppOverlayContent .AppHowOverlayFooter {
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.5rem;
  font-size: 2.276rem;
  width: 48%;
  color: black;
  border-radius: 5px;
  margin-top: 2rem;
}
#AppRecomendationPlan #AppOverlayContent .AppHowOverlayFooter._hide {
  visibility: hidden;
}
#AppRecomendationPlan #AppOverlayContent .AppHowOverlayFooterClose {
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.5rem;
  font-size: 2.276rem;
  width: 48%;
  color: black;
  border-radius: 5px;
  margin-top: 2rem;
}
#AppRecomendationPlan #AppOverlayContent .AppHowOverlayFooterClose._hide {
  visibility: hidden;
}
#AppRecomendationPlan #AppOverlayContent #titleWide._hide,
#AppRecomendationPlan #AppOverlayContent #buttonsWide._hide {
  visibility: hidden;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanOutterGroup {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 92%;
  margin-top: 3.8rem;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanOptionOutter {
  background: #e0e0e0;
  border-radius: 5px;
  color: black;
  min-width: 30.5%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 4px 3px;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanWideOptionOutter {
  background: #e0e0e0;
  border-radius: 5px;
  color: black;
  min-width: 48%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 4px 3px;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanWideOption {
  text-align: center;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanWideOptionTitle {
  font-size: 1.7rem;
  text-align: center;
  margin-top: 3.9rem;
  display: flex;
}
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanOptionOutter.selected,
#AppRecomendationPlan #AppOverlayContent .appRecomendationPlanWideOptionOutter.selected {
  background-color: white;
  font-weight: bold;
}
#AppRecomendationSurvey {
  background: #307FE2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  color: white;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppRecomendationSurvey #AppOverlayBackground {
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppRecomendationSurvey #AppOverlayContent {
  position: absolute;
  pointer-events: initial;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: auto;
  background: #00C7B1;
  color: white;
  justify-content: flex-end;
  align-items: center;
}
#AppRecomendationSurvey #AppOverlayContent #OverlayInnerContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1rem 1.5rem 1rem;
  box-sizing: border-box;
}
#AppRecomendationSurvey #AppOverlayContent .AppConnectDeviceExitIcon {
  width: 2rem;
  margin: 0.5rem;
}
#AppRecomendationSurvey #AppOverlayContent .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayIcon {
  width: 14vh;
  height: 15.2vh;
  margin-top: auto;
}
#AppRecomendationSurvey #AppOverlayContent .active {
  box-shadow: 0px 0px 2.276rem 0.91rem #b3d4ff;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayHeadTitle {
  font-size: 2.048rem;
  margin: 5vh 0 0 0;
  text-align: center;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayInputNote {
  font-size: 1.365rem;
  max-width: 27.5rem;
  text-align: center;
  display: flex;
}
#AppRecomendationSurvey #AppOverlayContent .AppHowOverlayFooterContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#AppRecomendationSurvey #AppOverlayContent .AppHowOverlayFooter {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 5vh;
  line-height: 0.8;
}
#AppRecomendationSurvey #AppOverlayContent .AppHowOverlayFooterClose {
  background-color: #e0e0e0;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6.3vh;
  font-size: 1.8rem;
  width: 48%;
  border-radius: 5px;
  margin-top: 5vh;
  line-height: 0.8;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanOutterGroup {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-top: 1.5vh;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanOutterGroup._2 {
  margin-top: 1.8vh;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanResultOutter {
  border-radius: 1rem;
  color: white;
  min-width: 65%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  padding: 0 1rem;
  font-style: italic;
  font-family: 'BoldFont';
  margin-top: 1.3vh;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanOption {
  text-align: center;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanOptionOutter {
  background: #e0e0e0;
  border-radius: 5px;
  color: black;
  padding: 0rem 1.2rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 4px 3px;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationSurveyTipTitle {
  font-size: 1.6rem;
  text-align: center;
  font-style: italic;
  margin-top: 0.6vh;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationSurveyTip {
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  flex-direction: column;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayInputNote {
  font-size: 1.365rem;
  width: 80%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 5vh;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayInputNote._2 {
  margin-top: 3vh;
  margin-bottom: -2.4vh;
}
#AppRecomendationSurvey #AppOverlayContent .AppPlanTreatmentOverlayInputNoteBis {
  font-size: 1.365rem;
  width: 80%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 0;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanWideOptionTitle {
  font-size: 1.6rem;
  text-align: center;
  font-family: 'PrimaryFont';
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanWideOptionTitle._2 {
  font-size: 1.7rem;
  font-style: italic;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanResultOption1,
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanResultOption2 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanResultOption1 {
  margin-top: 2.9vh;
}
#AppRecomendationSurvey #AppOverlayContent .appRecomendationPlanResultOption2 {
  margin-top: 2.6vh;
  display: none;
}
#AppRecomendationSurvey #AppOverlayContent .appPlanTreatmentOverlayGroupResult._alt .appRecomendationSurveyTip {
  display: flex;
}
#AppRecomendationSurvey #AppOverlayContent .appPlanTreatmentOverlayGroupResult._alt .appRecomendationPlanResultOption1 {
  display: none;
}
#AppRecomendationSurvey #AppOverlayContent .appPlanTreatmentOverlayGroupResult._alt .appRecomendationPlanResultOption2 {
  display: flex;
}
#AppRecomendationSurvey #AppOverlayContent .appPlanTreatmentOverlayGroupResult {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
}
#AppReminderPopUp {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppReminderPopUp .appReminderContent {
  height: 100%;
  width: 100%;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: space-between;
  align-items: center;
  height: unset;
  width: 91%;
  border-radius: 3px;
  padding: 1rem 1.7rem;
  box-sizing: border-box;
  overflow-y: auto;
}
#AppReminderPopUp .AppConnectDevice2Gif {
  margin-top: 0rem;
  margin-bottom: 4.5rem;
  border-radius: 2rem;
  width: 29rem;
  pointer-events: none;
  /* display: flex; */
}
#AppReminderPopUp .AppConnectDevice2logo {
  width: 6.85rem;
  margin-bottom: 3rem;
}
#AppReminderPopUp .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppReminderPopUp .AppConnectDeviceIcon {
  width: 5.5rem;
  border-radius: 50%;
}
#AppReminderPopUp .AppConnectDeviceOutterInfoGroup {
  display: flex;
  flex-direction: column;
  align-items: end;
  MAX-WIDTH: 30REM;
}
#AppReminderPopUp .AppConnectDeviceInfoGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}
#AppReminderPopUp .AppConnectDeviceInfo {
  text-align: center;
  padding: 0rem 4.3rem;
  margin-top: auto;
  margin-bottom: auto;
}
#AppReminderPopUp .AppConnectDeviceInfoOutter2 {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  width: 100%;
  font-size: 1.820rem;
  overflow: auto;
}
#AppReminderPopUp .appReminderPopUpTitle {
  text-align: center;
  font-size: 3.413rem;
  margin-top: 3rem;
}
#AppReminderPopUp .appReminderPopUpTitle .subtitle {
  font-size: 1.7rem;
}
#AppReminderPopUp_before_first_session {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppReminderPopUp_before_first_session .appReminderContent {
  height: 100%;
  width: 100%;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: space-between;
  align-items: center;
  height: unset;
  width: 91%;
  border-radius: 3px;
  padding: 1rem 1.7rem;
  box-sizing: border-box;
  overflow-y: auto;
}
#AppReminderPopUp_before_first_session .AppConnectDevice2Gif {
  margin-top: 0rem;
  margin-bottom: 4.5rem;
  border-radius: 2rem;
  width: 29rem;
  pointer-events: none;
  /* display: flex; */
}
#AppReminderPopUp_before_first_session .AppConnectDevice2logo {
  width: 6.85rem;
  margin-bottom: 3rem;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceIcon {
  width: 5.5rem;
  border-radius: 50%;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceOutterInfoGroup {
  display: flex;
  flex-direction: column;
  align-items: end;
  MAX-WIDTH: 30REM;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceInfoGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceInfo {
  text-align: center;
  padding: 0rem 4.3rem;
  margin-top: auto;
  margin-bottom: auto;
}
#AppReminderPopUp_before_first_session .AppConnectDeviceInfoOutter2 {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  width: 100%;
  font-size: 1.820rem;
  overflow: auto;
}
#AppReminderPopUp_before_first_session .appReminderPopUpTitle {
  text-align: center;
  font-size: 3.413rem;
  margin-top: 3rem;
}
#AppReminderPopUp_before_first_session .appReminderPopUpTitle .subtitle {
  font-size: 1.7rem;
}
#AppReminderPopUp_last_session {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.72);
}
#AppReminderPopUp_last_session .appReminderContent {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  width: unset;
  display: flex;
  flex-direction: column;
  margin: 1rem;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  color: white;
  justify-content: space-between;
  align-items: center;
  height: unset;
  border-radius: 0;
  padding: 1rem 1.7rem;
  box-sizing: border-box;
  overflow-y: auto;
}
#AppReminderPopUp_last_session .AppConnectDevice2Gif {
  margin-top: 0rem;
  margin-bottom: 4.5rem;
  border-radius: 2rem;
  width: 29rem;
  pointer-events: none;
  /* display: flex; */
}
#AppReminderPopUp_last_session .AppConnectDevice2logo {
  width: 6.85rem;
  margin-bottom: 3rem;
}
#AppReminderPopUp_last_session .AppConnectDeviceOutterExitIcon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row-reverse;
}
#AppReminderPopUp_last_session .AppConnectDeviceIcon {
  width: 5.5rem;
  border-radius: 50%;
}
#AppReminderPopUp_last_session .AppConnectDeviceOutterInfoGroup {
  display: flex;
  flex-direction: column;
  align-items: end;
  MAX-WIDTH: 30REM;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfoGroup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfo {
  text-align: left;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid white;
  padding: 1rem;
  border-radius: 3px;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfo .chapter {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  margin: 0.5rem auto 1rem;
  text-transform: uppercase;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfo .title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfo .point {
  font-size: 1.7rem;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfo .point::before {
  content: "";
  color: white;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
}
#AppReminderPopUp_last_session .AppConnectDeviceInfoOutter2 {
  display: flex;
  justify-content: center;
  margin: 2rem 1rem;
  font-size: 1.7rem;
  overflow: auto;
}
#AppReminderPopUp_last_session .appReminderPopUpTitle {
  text-align: center;
  font-size: 3.413rem;
  margin-top: 3rem;
}
#AppReminderPopUp_last_session .appReminderPopUpTitle .subtitle {
  font-size: 1.7rem;
}
#AppSelectClinic {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: #302E3B;
  /* Always set the map height explicitly to define the size of the div
    * element that contains the map. */
  /* Optional: Makes the sample page fill the window. */
}
#AppSelectClinic .appFooterIcons {
  fill: #00ade3;
}
#AppSelectClinic .appHeader {
  pointer-events: none;
}
#AppSelectClinic .appHeader .appHeaderLeft,
#AppSelectClinic .appHeader .appHeaderRight {
  pointer-events: initial;
}
#AppSelectClinic .appSelectClinicContent {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: black;
  box-sizing: border-box;
  font-size: 1.5rem;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#AppSelectClinic .appSelectClinic_currentClinic {
  height: 4rem;
  padding: 1rem;
  font-size: 1.5rem;
  color: white;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 0.228rem solid transparent;
  outline: none;
}
#AppSelectClinic .appSelectClinic_currentClinic._error {
  border: 0.228rem solid red;
}
#AppSelectClinic .appSelectClinic_currentClinic > span {
  white-space: pre;
}
#AppSelectClinic .appSelectClinicContent_mapWrapper {
  position: relative;
  flex: 1 0 0;
}
#AppSelectClinic .AppOrderDetailMapContainer {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.5s ease-out;
  visibility: visible !important;
}
#AppSelectClinic .AppOrderDetailMapContainer._small {
  top: 0vh;
}
#AppSelectClinic .AppOrderDetailMapContainer._hidden {
  visibility: hidden !important;
}
#AppSelectClinic #AppOrderDetailMap {
  height: 100%;
  width: 100%;
}
#AppSelectClinic .appSelectClinic_currentClinicWeb {
  display: none;
}
#AppSelectClinic #map {
  height: 100%;
}
#AppSelectClinic html,
#AppSelectClinic body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#AppSelectClinic .controls {
  margin-top: 1.138rem;
  border: 0.228rem solid transparent;
  border-color: #e4e4e4;
  border-radius: 1.820rem 1.820rem 1.820rem 1.820rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 3.641rem;
  outline: none;
  /*box-shadow: 0 0.228rem0.683rem rgba(0, 0, 0, 0.3);*/
}
#AppSelectClinic #pac-input {
  background-color: #fff;
  font-family: Roboto;
  font-size: 1.701rem;
  font-weight: 300;
  margin-left: 1.365rem;
  padding: 0 1.252rem 0 1.479rem;
  text-overflow: ellipsis;
  width: 300px;
}
#AppSelectClinic #pac-input:focus {
  border-color: #4d90fe;
}
#AppSelectClinic .pac-container {
  font-family: Roboto;
}
#AppSelectClinic #type-selector {
  color: #fff;
  background-color: #4d90fe;
  padding: 0.569rem 1.252rem 0px 1.252rem;
}
#AppSelectClinic #type-selector label {
  font-family: Roboto;
  font-size: 1.479rem;
  font-weight: 300;
}
#AppSelectClinic .appSelectClinic_headerMaps {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  top: 0rem;
  left: 0px;
  right: 0px;
  background-color: #00b3c5;
  padding: 1rem;
  min-height: 6.5rem;
}
#AppSelectClinic .appSelectClinic_mode {
  display: flex;
  justify-content: center;
  flex-direction: row;
  text-align: center;
  font-size: 1.7rem;
}
#AppSelectClinic .appSelectClinic_modeButton {
  color: #88EEEF;
  border: 1px solid #5E19FE;
  border-radius: 2rem;
  padding: 1rem;
  margin: 0.5rem 1rem;
  line-height: 1rem;
  background-color: #5E19FE;
  display: none;
}
#AppSelectClinic .appSelectClinic_modeButton._selected {
  display: flex;
}
#AppSelectClinic .appSelectClinic_filters {
  display: none;
  flex-direction: column-reverse;
  align-items: center;
  margin: 2.5rem 0rem;
  width: 100%;
  justify-content: space-around;
}
#AppSelectClinic .appSelectClinic_filters._show {
  display: flex;
}
#AppSelectClinic .appSelectClinic_zipCodeInput {
  width: 89%;
  margin: -0.1rem 0rem 0rem 0rem;
  border: 0px;
  border-bottom: 1px solid white;
  color: white;
  background-color: transparent;
  font-size: 1.7rem;
  border-radius: 0;
  padding-bottom: 2px;
}
#AppSelectClinic .appSelectClinic_zipCodeInput::placeholder {
  color: rgba(255, 255, 255, 0.66);
}
#AppSelectClinic .appSelectClinic_specialtySelect {
  font-size: 1.4rem;
  background-color: transparent;
  border: 1px solid #88EEEF;
  border-radius: 2rem;
  padding: 0.3rem;
  width: 26.5rem;
  color: #88EEEF;
  outline: none;
  text-align: center;
}
#AppSelectClinic .appSelectClinic_techValSelect {
  font-size: 1.4rem;
  background-color: transparent;
  border: 1px solid #88EEEF;
  border-radius: 2rem;
  padding: 0.3rem;
  width: 11.5rem;
  color: #88EEEF;
  outline: none;
  text-align: center;
}
#AppSelectClinic .appSelectClinic_valorationGroup {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 1rem;
}
#AppSelectClinic .appSelectClinic_valorationGroup._tech {
  height: 3rem;
  width: 4.5rem;
}
#AppSelectClinic .appSelectClinic_valorationGroup._small {
  flex-direction: row;
  margin: 0;
  display: flex;
  justify-content: flex-start;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_valorationIconsGroup {
  display: flex;
  flex-direction: row;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_valorationContainer {
  margin: 0 0.3rem;
  width: 2rem;
  height: 2rem;
  background: no-repeat center url(../res/Star.png);
  background-size: contain;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_valorationContainer._full {
  background: no-repeat center url(../res/fullStar.png);
  background-size: contain;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_valorationContainer._small {
  margin: 0 0rem;
  display: flex;
  width: 1rem;
  height: 1rem;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_priceContainer {
  margin: 0 0.3rem;
  width: 2rem;
  height: 2rem;
  background: no-repeat center url(../res/price.png);
  background-size: contain;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_priceContainer._full {
  background: no-repeat center url(../res/fullPrice.png);
  background-size: contain;
}
#AppSelectClinic .appSelectClinic_valorationGroup .appSelectClinic_priceContainer._small {
  margin: 0 0rem;
  display: flex;
  width: 1rem;
  height: 1rem;
}
#AppSelectClinic .appSelectClinic_labelSelect {
  font-size: 1.3rem;
  color: #88EEEF;
  margin-bottom: 0.5rem;
}
#AppSelectClinic .appSelectClinic_clinicsWrapper {
  overflow: auto;
  position: absolute;
  max-height: 30%;
  bottom: 3rem;
  width: 100%;
  transition: max-height 0.5s ease-out;
  overflow-x: hidden;
}
#AppSelectClinic .appSelectClinic_clinicsWrapper._big {
  max-height: 68%;
}
#AppSelectClinic .appSelectClinic_clinics {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}
#AppSelectClinic .appClinic_item {
  justify-content: flex-start;
  flex-direction: column;
  background-color: rgba(196, 231, 235, 0.7);
  font-size: 1.7rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: #1279a1;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}
#AppSelectClinic .appClinic_item .appSelectClinic_arrow {
  display: none;
  position: absolute;
  min-width: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
#AppSelectClinic .appClinic_item._selected {
  background-color: #c4e7eb;
  color: #1279a1;
}
#AppSelectClinic .appClinic_item._selected .appClinic_itemActions {
  display: inherit;
}
#AppSelectClinic .appClinic_item._selected .appSelectClinic_arrow {
  display: flex;
  align-self: flex-end;
  background: no-repeat center url(../res/more.svg);
  background-size: contain;
  width: 2.2rem;
  height: 2.2rem;
}
#AppSelectClinic .appClinic_item._selected .appSelectClinic_arrow._big {
  background: no-repeat center url(../res/less.png);
  background-size: contain;
  width: 2rem;
  height: 2rem;
}
#AppSelectClinic .appClinic_NoDetails {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#AppSelectClinic .appClinic_links_container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
#AppSelectClinic .appClinic_reviewLink,
#AppSelectClinic .appClinic_chatLink {
  display: flex;
  text-decoration: underline;
  font-size: 1.3rem;
  font-family: 'PrimaryFont';
  color: white;
}
#AppSelectClinic .appClinic_itemInfo {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  width: 100%;
}
#AppSelectClinic .appClinic_item_itemNoActions {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  height: 100%;
}
#AppSelectClinic .appClinic_item_itemNoActionsInfo {
  width: 16%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#AppSelectClinic .appClinic_svgIconTech {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.5rem;
}
#AppSelectClinic .appSelectClinic_techValorationInfo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
}
#AppSelectClinic .appClinic_itemActions {
  display: none;
  width: 10%;
}
#AppSelectClinic .appClinic_itemInfo_1stLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
#AppSelectClinic .appClinic_item_photo_container {
  width: 12%;
  border-radius: 1rem;
}
#AppSelectClinic .appClinic_item_photo {
  border-radius: 0.5rem;
  width: 5rem;
  height: 5rem;
}
#AppSelectClinic .appClinic_clinicName {
  font-size: 1.7rem;
  font-weight: bold;
  width: 90%;
}
#AppSelectClinic .appClinic_clinicAddress {
  font-size: 1.25rem;
  margin-top: 0.2rem;
}
#AppSelectClinic .appClinic_detalis_3rdLine {
  margin-top: 0.5rem;
}
#AppSelectClinic .appClinic_itemActionButtonIcon {
  height: 4rem;
  width: 4rem;
}
#AppSelectClinic .appSelectClinic_search {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: center;
  position: relative;
}
#AppSelectClinic .appSelectClinic_clinicFilterButton {
  height: 2rem;
  margin: 0 1.5rem;
  color: white;
  font-size: 1.5rem;
  font-family: 'PrimaryFont';
}
#AppSelectClinic .appSelectClinic_clinicFilterButton._big {
  background-color: #c4e7eb;
  color: #1279a1;
  padding: 0.1rem 0.6rem;
}
#AppSelectClinic .appSelectClinic_clinicFilterButton._notActive {
  color: rgba(255, 255, 255, 0.26);
  pointer-events: none;
}
#AppSelectClinic .appSelectClinic_clinicFilter {
  display: flex;
  width: 86%;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1.5rem;
}
#AppSelectClinic .appSelectClinic_svgOutter {
  display: flex;
  width: 2.45rem;
  height: 2.5rem;
  position: absolute;
  top: -1px;
  right: 0;
}
#AppSelectClinic .appSelectClinic_filterSubGroup {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
#AppSelectClinic .appSelectClinic_filterSubGroup._top {
  justify-content: center;
  margin-top: 1.6rem;
}
#AppSelectClinic .appSelectClinic_valorationTechnic {
  background: transparent;
  border: none;
  color: white;
  height: 3rem;
  margin-top: -2px;
  width: 4.5rem;
  font-size: 1.4rem;
  text-align: center;
  position: absolute;
  color: #88EEEF;
}
#AppSelectClinic .clinicButtons_container_outter {
  overflow: scroll;
  min-height: 15vh;
  max-height: 35vh;
}
#AppSelectClinic .clinicButtons_container_title {
  font-size: 1.6rem;
  color: white;
  width: 100%;
  text-align: center;
  padding: 0 0 1.5vh 0;
  margin-top: auto;
}
#AppSelectClinic .clinicButtons_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
#AppSelectClinic .clinicButton {
  font-size: 1.5rem;
  padding: 1rem;
  background: #FDFDF6;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
#AppSelectClinic .clinicButton._selected {
  border: 4px solid #88EEEF;
}
#AppSelectClinic .clinicButton img {
  height: 3.5rem;
  object-fit: contain;
}
#AppSelectFilter .appOverlayBg {
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: rgba(0, 0, 0, 0.4);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#AppSelectFilter .appFiltersContainer {
  overflow: auto;
  position: absolute;
  bottom: 7.1rem;
  left: 0;
  right: 0;
  display: flex;
}
#AppSelectFilter .appFilters {
  padding: 1rem 2rem;
  box-sizing: content-box;
  font-size: 1.4rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  display: flex;
}
#AppSelectFilter .appFilters_toolbar {
  position: absolute;
  bottom: 0;
  background-color: #e0e0e0;
  color: black;
  width: 100%;
  height: 7.1rem;
  font-size: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}
#AppSelectFilter .appFilterItem {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
  border-bottom: 0.228rem solid transparent;
}
#AppSelectFilter .appFilterItem._selected {
  border-bottom: 0.228rem solid black;
}
#AppSelectFilter .appFilterItem:first-child {
  margin-left: 0;
}
#AppSelectFilter .appFilterItem:last-child {
  margin-right: 0;
}
#AppSelectFilter .appFilterItem .appFilterItem_imageWrapper {
  height: 6rem;
  width: 6rem;
  overflow: hidden;
}
#AppSelectFilter .appFilterItem .appFilterItem_imageWrapper canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#AppSelectFilter .appFilterItem .appFilterItem_text {
  margin-top: 0.6rem;
}
#AppSelectFilter .appFilterItem img {
  height: 6rem;
  width: 6rem;
  object-fit: cover;
}
#AppSelectFilter .appFilterItem:active {
  background-color: #009bd2;
  color: white;
}
#AppSelectPhotoSource .appOverlayBg {
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppSelectPhotoSource .appPhotoSourceOptions {
  background: #e0e0e0;
  color: black;
  border-radius: 0;
  width: 73%;
  margin-bottom: 0.25rem;
  min-height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppSelectPhotoSource .appPhotoSourceText {
  position: relative;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 2.048rem;
}
#AppSettingsAbout {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  justify-content: flex-start;
  align-items: center;
}
#AppSettingsAbout .appFooter {
  background: transparent !important;
}
#AppSettingsAbout .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppSettingsAbout .appSettingsContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
#AppSettingsAbout .appSettingsInputs {
  width: 100%;
  overflow: auto;
  padding-left: 6rem;
  padding-right: 6rem;
  box-sizing: border-box;
  padding-bottom: 8rem;
}
#AppSettingsAbout .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppSettingsAbout .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppSettingsAbout .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppSettingsAbout .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppSettingsAbout .AppBluetooth_font {
  font-size: 4rem;
}
#AppSettingsAbout .appSetingsNextButton {
  max-width: 5%;
}
#AppSettingsAbout .appSettingsAboutGroup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 9rem;
  font-size: 2.048rem;
  border-bottom: 0.114rem solid #FFF;
  margin-top: -2rem;
}
#AppSettingsAbout .appSettingsAboutGroup_last {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 9rem;
  font-size: 2.048rem;
  border-bottom: 0.114rem solid #FFF;
  margin-top: 1rem;
}
#AppSettingsAbout .appSettingsAboutOutterLogo {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
#AppSettingsAbout .appSettingsAboutLogo {
  width: 20rem;
  height: 10rem;
  object-fit: contain;
}
#AppSettingsAbout input[type=text]:disabled {
  opacity: 1;
}
#AppSettingsAbout .appSettingsButtons {
  border: 0;
  height: 3rem;
}
#AppSettingsAbout .appSetingsNextButtonSvg {
  fill: white;
}
#AppSettingsAbout .appFooterIcons {
  fill: white;
}
#AppSettingsAbout .AppSettingsAccountInput {
  border: none;
  border-bottom: 0.114rem solid white;
  color: white;
  background-color: transparent;
  width: 100%;
  font-size: 2.048rem;
  height: 3rem;
  border-radius: 0;
}
._transition > #AppSettingsAbout._in {
  animation-name: right2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingsAbout._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingsAbout._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingsAbout._out._to_AppBluetooth {
  animation-name: center2right;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppSettingAccount {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppSettingAccount #footerBack > .appFooter {
  background: transparent !important;
}
#AppSettingAccount .appFooter {
  width: 100%;
}
#AppSettingAccount .appSetingsNextButtonSvg {
  fill: white;
}
#AppSettingAccount .appFooterIcons {
  fill: white;
}
#AppSettingAccount .appSettingsContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
#AppSettingAccount .AppSettingsAccountInput {
  border: none;
  border-bottom: 0.114rem solid white;
  color: white;
  background-color: transparent;
  width: 100%;
  font-size: 2.048rem;
  height: 3rem;
  border-radius: 0;
}
#AppSettingAccount .appSettingsDeleteAccount {
  margin-top: auto;
  font-size: 1.8rem;
  color: white;
  text-decoration: underline;
  margin-top: 3rem;
  text-align: center;
}
#AppSettingAccount .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppSettingAccount .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppSettingAccount .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppSettingAccount .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppSettingAccount .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppSettingAccount .AppBluetooth_font {
  font-size: 4rem;
}
#AppSettingAccount .appSettingsButtons {
  border: 0;
  height: 3rem;
}
#AppSettingAccount .appSettingsButtons._hidden {
  display: none;
}
#AppSettingAccount .appSetingsNextButton {
  max-width: 5%;
}
#AppSettingAccount .AppSettingsAccountInputGroup._error .AppSettingsAccountInput {
  border-bottom-color: red;
}
#AppSettingAccount .AppSettingsAccountInput:focus {
  outline: none;
}
#AppSettingAccount .AppSettingsAccountInputGroup {
  width: 100%;
  height: 9rem;
  padding-top: 1rem;
}
#AppSettingAccount #footerChanges {
  display: none;
  width: 100%;
}
#AppSettingAccount #footerBack {
  width: 100%;
}
._transition > #AppSettingAccount._in {
  animation-name: right2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingAccount._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingAccount._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSettingAccount._out._to_AppBluetooth {
  animation-name: center2right;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppSettingsPassword {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppSettingsPassword #footerBack > .appFooter {
  background: transparent !important;
}
#AppSettingsPassword .AppMainIntro_logo {
  height: 29rem;
  height: 9rem;
}
#AppSettingsPassword .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
}
#AppSettingsPassword .AppFormSignUp_outerIcon {
  margin-bottom: 25rem;
}
#AppSettingsPassword .AppFormSignUp_icon {
  height: 17.5rem;
}
#AppSettingsPassword .AppBluetooth_outerFont {
  position: absolute;
  bottom: 25rem;
  text-align: center;
}
#AppSettingsPassword .AppBluetooth_font {
  font-size: 4rem;
}
#AppSettingsPassword .appSettingsButtons {
  border: 0;
  height: 3rem;
}
#AppSettingsPassword .appSetingsNextButton {
  max-width: 5%;
}
#AppSettingsPassword #footerChanges {
  display: none;
  width: 100%;
}
#AppSettingsPassword #footerBack {
  width: 100%;
}
#AppSettingsPassword .AppSettingsAccountInput {
  border: none;
  border-bottom: 0.114rem solid white;
  color: white;
  background-color: transparent;
  width: 100%;
  font-size: 2.048rem;
  height: 3rem;
  border-radius: 0;
}
#AppSettingsPassword .appFooterIcons {
  fill: white;
}
#AppShare .appOverlayBg {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  flex-direction: column;
  background: #00ade3;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppShare .appShareOptions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 74%;
}
#AppShare .appShareOutterText {
  background: #e0e0e0;
  color: black;
  border-radius: 0;
  width: 98%;
  margin-bottom: 0.25rem;
  min-height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppShare .appShareText {
  font-size: 2.048rem;
  text-align: center;
}
#AppSimulate {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  justify-content: inherit;
  align-items: unset;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppSimulate .appFooterIcons {
  fill: white;
}
#AppSimulate .appSimulateTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  color: white;
  height: -14%;
  position: relative;
  top: 2rem;
  min-height: 6rem;
  font-size: 3.186rem;
  z-index: 99;
}
#AppSimulate .appSimulation_live {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
#AppSimulate .appSimulation_live .appLogo {
  height: 4rem;
  width: 4rem;
}
#AppSimulate .AppSimulation_outerButtons {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  margin-top: 5rem;
  ALIGN-ITEMS: CENTER;
}
#AppSimulate .AppSimulation_buttonsA {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  background-color: #e0e0e0;
  box-shadow: 0px 0px 10px 1px rgba(48, 46, 59, 0.61);
}
#AppSimulate .svgIconA {
  width: 10rem;
  height: 10rem;
}
#AppSimulate .appSimulate_iconTextOutter {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin-top: 20rem;
}
#AppSimulate .AppSimulation_buttonsText {
  font-size: 1.55rem;
  color: black;
  z-index: 40;
  text-align: center;
}
#AppSimulate .appSimulate_circle {
  border-radius: 50%;
  width: 96rem;
  background: #00b3c5;
  height: 40.5rem;
  bottom: -3.5rem;
  left: -26.5rem;
  position: absolute;
}
#AppSimulate .appSimulate_circleDark {
  bottom: -5.8rem;
  background: #1279a1;
  left: -25.5rem;
  height: 44rem;
  width: 102rem;
  border-radius: 50%;
  position: absolute;
}
#AppSimulate .AppHome_outterTopImage {
  width: 100%;
  max-height: 50%;
}
#AppSimulate .AppHome_TopImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#AppSimulate .appSimulation_icon {
  width: 15rem;
}
._transition > #AppSimulate._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSimulate._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSimulate._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppSimulationAndDiagnostics {
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppSimulationAndDiagnostics .appHeader {
  background-color: transparent;
  position: absolute;
}
#AppSimulationAndDiagnostics .appFooterIcons {
  fill: white;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer {
  padding: 4rem 1rem 1rem 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: auto;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard {
  margin: 1rem 0;
  background-color: black;
  padding: 1.5rem;
  position: relative;
  border-radius: 5px;
  margin-top: 1.5rem;
  background: #e0e0e0;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard:first-child {
  margin-top: 3rem;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard h2 {
  font-size: 2.3rem;
  font-weight: 100;
  font-family: "PrimaryFont";
  color: black;
  margin: 0;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard h3 {
  font-size: 1.6rem;
  font-weight: 100;
  font-family: "PrimaryFont";
  color: black;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard .clearfix {
  clear: both;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard .image {
  float: left;
  margin-right: 1rem;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard .image img {
  width: 12rem;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 15rem;
  background-color: #88eeef;
  padding: 1rem;
  border-radius: 1rem;
  border: 0;
  font-size: 1.5rem;
  font-family: "PrimaryFont";
  font-weight: 100;
  color: #302E3B;
}
#AppSimulationAndDiagnostics .simulationAndDiagnosticsContainer .optionCard button:active {
  background-color: #66bbbf;
}
._transition > #AppSimulationAndDiagnostics._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSimulationAndDiagnostics._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppSimulationAndDiagnostics._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppTakePhoto {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background: black;
}
#AppTakePhoto .appTakePhoto {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1 0 0;
  align-items: center;
  overflow: hidden;
}
#AppTakePhoto .appTakePhoto video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#AppTakePhoto .appFooterIcons {
  fill: white;
}
#AppTakePhoto .appTakePhoto_controls {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0);
}
#AppTakePhoto .appTakePhoto_buttonTakePhoto {
  height: 5rem;
  width: 5rem;
  float: right;
  margin: 2rem;
  border-radius: 1rem;
  fill: white;
}
#AppTakePhoto .appTakePhoto_buttonTakePhoto:active {
  background-color: white;
  fill: #4696c8;
}
#AppTreatment {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background: #c4e7eb;
}
#AppTreatment #treatement-info1 {
  background: #fdfdf6;
}
#AppTreatment #treatement-info2 {
  margin-top: 4.0rem;
  font-size: 16px;
  text-shadow: none !important;
}
#AppTreatment #treatement-info2 h1 {
  font-size: 2.2em;
}
#AppTreatment #treatement-info2 .nav-item a {
  font-size: 1.1em;
}
#AppTreatment #treatement-info3 {
  background: #fdfdf6;
  font-size: 16px;
  text-shadow: none !important;
  overflow-y: auto;
  height: auto;
}
#AppTreatment #treatement-info3 h3 {
  font-size: 1.2em;
}
#AppTreatment #treatement-info3 hr {
  margin: 1.0em 0;
}
#AppTreatment #treatement-info3 span {
  font-size: 0.7em;
}
#AppTreatment #treatement-info3 .col-7 {
  padding-left: 5px;
}
#AppTreatment #treatement-info3 .card-text {
  font-size: 1.0em;
}
#AppTreatment #treatement-info3 .treatmentInfo_row {
  display: flex;
}
#AppTreatment #treatement-info3 .treatmentInfo_icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
#AppTreatment #treatement-info3 .treatmentInfo_text {
  padding-left: 0.5rem;
}
#AppTreatment #tratamientos-dentales3 label {
  font-size: 0.7em;
  background-color: #00b3c5;
}
._transition > #AppTreatment._in {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppTreatment._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppTreatmentReminders {
  margin: 0 auto;
  background: #307FE2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
  -webkit-overflow-scrolling: touch;
}
#AppTreatmentReminders .appHeader {
  position: absolute;
}
#AppTreatmentReminders .AppTreatmentRemindersFixedArea {
  display: flex;
  flex-direction: column;
}
#AppTreatmentReminders #AppTreatmentRemindersWrapper {
  position: absolute;
  top: 40rem;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
}
#AppTreatmentReminders .inner {
  padding: 0 2rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
#AppTreatmentReminders #AppTreatmentRemindersMainWrapper {
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: overlay;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
#AppTreatmentReminders .appHeader {
  z-index: 99;
}
#AppTreatmentReminders .appTreatmentRemindersMain {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
#AppTreatmentReminders .appLogo {
  height: 9rem;
}
#AppTreatmentReminders .AppFormSignUp_outerGlo {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#AppTreatmentReminders .appTreatmentRemindersMain_title {
  color: white;
  font-size: 3rem;
  display: flex;
  justify-content: space-between;
}
#AppTreatmentReminders #startDate::placeholder {
  color: white;
}
#AppTreatmentReminders #endDate::placeholder {
  color: white;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar {
  font-size: 1.593rem;
  width: 100%;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar table {
  width: 100%;
  padding: 2rem;
  table-layout: fixed;
  margin-top: 0;
  color: white;
  font-size: 1.593rem;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar th {
  text-align: center;
  border-radius: 100%;
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar td {
  text-align: center;
  background-color: transparent;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar td[data-dayfull] {
  background-color: #00b3c5;
  border-radius: 1.5rem;
  color: white;
}
#AppTreatmentReminders .appTreatmentRemindersMain_calendar tr {
  height: 2.5rem;
}
#AppTreatmentReminders .appTreatmentRemindersInputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#AppTreatmentReminders .appTreatmentRemindersInputTime {
  width: 10rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  margin: 1rem;
  border-radius: 1rem;
  background-color: #5E19FE;
  color: white;
  text-align: center;
  font-family: primaryfont;
  font-size: 1.6rem;
}
#AppTreatmentReminders .appTreatmentRemindersMain_monthName {
  display: inline-block;
  width: 18rem;
  text-align: left;
  font-size: 2.048rem;
}
#AppTreatmentReminders .appTreatmentReminders_title {
  margin-top: 1rem;
  text-align: left;
  margin-left: 1rem;
  font-size: 2.4rem;
}
#AppTreatmentReminders .AppTreatmentReminders_changeMonth {
  height: 1.5rem;
  fill: white;
}
#AppTreatmentReminders .appTreatmentRemindersMain_controls {
  width: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#AppTreatmentReminders .appTreatmentRemindersDateForm {
  margin-top: 4rem;
  margin-bottom: -4rem;
}
#AppTreatmentReminders .appTreatmentRemindersHoursForm {
  margin-top: 5rem;
  margin-bottom: -3rem;
  display: none;
  overflow: inherit;
  transition: max-height 0.2s ease-out;
}
#AppTreatmentReminders .group {
  position: relative;
  background-color: #e0e0e0;
  padding: 1rem 1rem;
  font-size: 1.7rem;
  border-radius: 5px;
  margin: 0 0 1rem 0;
}
#AppTreatmentReminders .group:last-child {
  margin-bottom: 0;
}
#AppTreatmentReminders .group._NoDate {
  background-color: #e0e0e0;
}
#AppTreatmentReminders input {
  font-size: 2.048rem;
  padding: 1.138rem 1.138rem 0.569rem 0.569rem;
  display: block;
  width: 34rem;
  border: none;
  margin-left: 3.413rem;
  border-bottom: 0.114rem solid #FFF;
  color: #FFF;
  background-color: transparent;
  font-family: inherit;
}
#AppTreatmentReminders input:focus {
  outline: none;
}
#AppTreatmentReminders label {
  color: #FFF;
  font-size: 2.048rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0.569rem;
  top: -1.701rem;
}
#AppTreatmentReminders .appTreatment_outterTitle {
  flex: 0 0 4vh;
  width: 100%;
  margin-top: 6vh;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  color: white;
}
#AppTreatmentReminders .appTreatment_outterSubtitle {
  min-width: 100%;
  margin-left: 6rem;
  margin-top: 3rem;
  font-size: 2.731rem;
  color: white;
  text-align: left;
}
#AppTreatmentReminders .AppHowOverlayFooter {
  background-color: rgba(255, 255, 255, 0.31);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 6.5rem;
  position: absolute;
  bottom: 0;
  font-size: 2.276rem;
  display: none;
}
#AppTreatmentReminders .AppHowOverlayFooter.active {
  display: flex;
}
#AppTreatmentReminders #AppTreatmentReminderHoursForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 1 auto;
  overflow-y: auto;
}
#AppTreatmentReminders .appTreatmentReminderHoursForm.active {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#AppTreatmentReminders .appTreatmentReminderHoursForm_header {
  background-color: transparent;
  font-size: 2.6rem;
  color: white;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  flex: 0 1 auto;
}
#AppTreatmentReminders .appTreatmentReminderNewAppointment {
  display: flex;
  background-color: #e0e0e0;
  font-size: 1.5rem;
  color: black;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 1rem auto;
}
#AppTreatmentReminders .AppHowOverlayFooter2 {
  background-color: #a07bd2;
  color: white;
  padding: 2rem 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  font-size: 2.276rem;
  z-index: 200;
  width: 100%;
}
#AppTreatmentReminders .AppHowOverlayFooter2:not(.active) {
  display: none;
}
#AppTreatmentReminders .appTreatmentRemindersClockIcon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  height: 2rem;
  width: 2rem;
  fill: rgba(255, 255, 255, 0.4);
  stroke: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
}
#AppTreatmentReminders .appTreatmentRemindersCalendarIcon {
  position: absolute;
  top: 0%;
  left: 89%;
}
#AppTreatmentReminders input[type=time] {
  height: inherit;
  font-family: 'PrimaryFont';
}
#AppTreatmentReminders input[type=text]:disabled {
  -webkit-text-fill-color: white;
  opacity: 1;
  z-index: 99;
  background: transparent;
}
.appTreatmentCalendarContainer {
  width: 100%;
  flex: 0 1 auto;
  margin-bottom: auto;
}
.appTreatmentAppointmentsListContainer {
  margin-bottom: 3rem;
  margin-top: 3rem;
  width: 100%;
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}
.appointment1stLine {
  color: black;
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}
.appointment1stLine_noAppointments {
  color: black;
  font-size: 1.6rem;
}
.appointment2ndLine {
  color: black;
  font-size: 1.5rem;
}
.appointment3rdLine {
  color: black;
  font-size: 1.5rem;
}
._transition > #AppTreatmentReminders._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppTreatmentReminders._in._from_AppHelp {
  animation-name: show_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppTreatmentReminders._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppTreatments {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  background: #fff;
}
#AppTreatments #tratamientos-dentales1 {
  margin-top: 4.0rem;
  font-size: 16px;
  text-shadow: none !important;
  overflow-y: auto;
  height: auto;
}
#AppTreatments #tratamientos-dentales1 h2 {
  font-size: 1.875em;
  font-weight: normal;
}
#AppTreatments #tratamientos-dentales1 .Headline {
  font-size: 0.8em;
}
._transition > #AppTreatments._in {
  animation-name: left2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppTreatments._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppVideoChat {
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: black;
  display: flex;
  justify-content: space-between;
  background: white;
  overflow: scroll;
}
#AppVideoChat .clinicButtons_container_outter {
  overflow: scroll;
  min-height: 15vh;
  max-height: 35vh;
}
#AppVideoChat .clinicButtons_container_title {
  font-size: 1.6rem;
  color: black;
  width: 100%;
  text-align: center;
  padding: 0 0 1.5vh 0;
  margin-top: auto;
}
#AppVideoChat .clinicButtons_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
#AppVideoChat .clinicButton {
  font-size: 1.5rem;
  padding: 1rem;
  background: #c4e7eb;
  color: #1279a1;
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
#AppVideoChat .clinicButton._selected {
  border: 4px solid #1279a1;
}
#AppVideoChat .clinicButton img {
  height: 3.5rem;
  object-fit: contain;
}
#AppVideoChat #AppVideoChat_clinics {
  display: flex;
  flex-direction: column;
}
#AppVideoChat #chatContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 4vh;
  position: fixed;
  padding: 1rem;
  box-sizing: border-box;
}
#AppVideoChat .chat {
  position: unset;
  margin-top: 4vh;
  width: 100%;
}
#AppVideoChat ._chatHeader {
  background-color: #1279a1;
  justify-content: center;
  height: 8vh;
}
#AppVideoChat app-chat.chat ._chatInputContainer {
  background-color: #1279a1;
}
#AppVideoChat app-chat.chat ._chatConversationEden {
  background-color: #00b3c5;
  color: white;
}
#AppVideoChat ._chatHeaderCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#AppVideoChat ._chatWhatsApp {
  position: absolute;
  right: 2.0rem;
}
#AppVideoChat ._chatWhatsApp img {
  width: 4.0rem;
}
#AppVideoChat ._chatInputContainer {
  justify-content: center;
}
#AppVideoChat ._chatInput,
#AppVideoChat ._chatHeaderText,
#AppVideoChat ._chatHeaderPerson,
#AppVideoChat .chat {
  font-size: 1.5rem;
}
#AppVideoChat ._chatInput {
  margin: 0.8vh 0;
  width: 95%;
}
#AppVideoChat ._chatHeaderText {
  color: white;
  margin: 0 0.5rem 0 0;
}
#AppVideoChat ._chatClose,
#AppVideoChat ._chatlogo,
#AppVideoChat ._chatSend {
  display: none;
}
._transition > #AppVideoChat._in {
  animation-name: bottom2center;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
._transition > #AppVideoChat._out {
  animation-name: hide_opacity;
  animation-duration: 0.4s;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#AppWelcomeScreen {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  background: #307FE2;
  color: white;
  background-color: #302E3B;
  display: block;
}
#AppWelcomeScreen #AppWelcomeScreen2 {
  background: linear-gradient(90deg, #202020, #404040, #404040, #202020);
}
#AppWelcomeScreen .appBulletlist_outerCircle {
  margin: 3rem 0 1rem 0;
}
#AppWelcomeScreen .appBulletlist_circle {
  border-color: white;
}
#AppWelcomeScreen .appBulletlist_circle._selected {
  background: white;
}
#AppWelcomeScreen .appMainWelcome_buttonNew {
  background-color: white;
  padding: 0.5rem 2rem 0.5rem 2rem;
  font-size: 1.5rem;
  margin: 0.5rem;
  min-width: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
}
#AppWelcomeScreen .appWelc_second_circle {
  border-radius: 50%;
  width: 65rem;
  background: #20F2F3;
  height: 50rem;
  bottom: -27rem;
  right: -46.5rem;
  position: absolute;
  z-index: -1;
}
#AppWelcomeScreen .appMainWelcome_buttonsNew {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3rem;
  position: fixed;
  z-index: 100;
  bottom: 0rem;
  width: 100%;
}
#AppWelcomeScreen .appMainWelcome_logoFriends {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  padding: 0 5rem;
  box-sizing: border-box;
}
#AppWelcomeScreen .appMainWelcome_logoFriends img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#AppWelcomeScreen .page1,
#AppWelcomeScreen .page2,
#AppWelcomeScreen .page3,
#AppWelcomeScreen .page4,
#AppWelcomeScreen .page5 {
  color: white  ;
  justify-content: space-between;
  align-items: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#AppWelcomeScreen .page1 .appLogo,
#AppWelcomeScreen .page2 .appLogo,
#AppWelcomeScreen .page3 .appLogo,
#AppWelcomeScreen .page4 .appLogo,
#AppWelcomeScreen .page5 .appLogo {
  height: 29rem;
  margin-bottom: 7rem;
}
#AppWelcomeScreen .page1 .appLearnMoreSpacer,
#AppWelcomeScreen .page2 .appLearnMoreSpacer,
#AppWelcomeScreen .page3 .appLearnMoreSpacer,
#AppWelcomeScreen .page4 .appLearnMoreSpacer,
#AppWelcomeScreen .page5 .appLearnMoreSpacer {
  flex: 1 1 0;
}
#AppWelcomeScreen .page1 .appMainWelcome_title,
#AppWelcomeScreen .page2 .appMainWelcome_title,
#AppWelcomeScreen .page3 .appMainWelcome_title,
#AppWelcomeScreen .page4 .appMainWelcome_title,
#AppWelcomeScreen .page5 .appMainWelcome_title {
  font-size: 3.755rem;
  text-align: center;
  flex: 0.5 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
#AppWelcomeScreen .page1 .appMainWelcome_titleLogoOutter,
#AppWelcomeScreen .page2 .appMainWelcome_titleLogoOutter,
#AppWelcomeScreen .page3 .appMainWelcome_titleLogoOutter,
#AppWelcomeScreen .page4 .appMainWelcome_titleLogoOutter,
#AppWelcomeScreen .page5 .appMainWelcome_titleLogoOutter {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 2 0 0;
  width: 100%;
  max-height: 12rem;
}
#AppWelcomeScreen .page1 .appMainWelcome_titleLogo,
#AppWelcomeScreen .page2 .appMainWelcome_titleLogo,
#AppWelcomeScreen .page3 .appMainWelcome_titleLogo,
#AppWelcomeScreen .page4 .appMainWelcome_titleLogo,
#AppWelcomeScreen .page5 .appMainWelcome_titleLogo {
  width: 16rem;
}
#AppWelcomeScreen .page1 .appMainWelcome_subtitle,
#AppWelcomeScreen .page2 .appMainWelcome_subtitle,
#AppWelcomeScreen .page3 .appMainWelcome_subtitle,
#AppWelcomeScreen .page4 .appMainWelcome_subtitle,
#AppWelcomeScreen .page5 .appMainWelcome_subtitle {
  font-size: 2.048rem;
  text-align: center;
}
#AppWelcomeScreen .page1 .appMainWelcome_text,
#AppWelcomeScreen .page2 .appMainWelcome_text,
#AppWelcomeScreen .page3 .appMainWelcome_text,
#AppWelcomeScreen .page4 .appMainWelcome_text,
#AppWelcomeScreen .page5 .appMainWelcome_text {
  font-size: 1.593rem;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0rem 7rem;
}
#AppWelcomeScreen .page1 .appMainWelcome_text._swipe,
#AppWelcomeScreen .page2 .appMainWelcome_text._swipe,
#AppWelcomeScreen .page3 .appMainWelcome_text._swipe,
#AppWelcomeScreen .page4 .appMainWelcome_text._swipe,
#AppWelcomeScreen .page5 .appMainWelcome_text._swipe {
  font-size: 1.8rem;
}
#AppWelcomeScreen .page2 .appLearnMoreOutterImage,
#AppWelcomeScreen .page3 .appLearnMoreOutterImage,
#AppWelcomeScreen .page4 .appLearnMoreOutterImage,
#AppWelcomeScreen .page5 .appLearnMoreOutterImage {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
#AppWelcomeScreen .page2 .appLearnMoreOutterText,
#AppWelcomeScreen .page3 .appLearnMoreOutterText,
#AppWelcomeScreen .page4 .appLearnMoreOutterText,
#AppWelcomeScreen .page5 .appLearnMoreOutterText {
  z-index: 2;
}
#AppWelcomeScreen .page2 .appMainWelcome_title,
#AppWelcomeScreen .page3 .appMainWelcome_title,
#AppWelcomeScreen .page4 .appMainWelcome_title,
#AppWelcomeScreen .page5 .appMainWelcome_title {
  margin: 3rem;
  font-size: 1.820rem;
  margin-top: 0rem;
  padding: 0;
}
#AppWelcomeScreen .page2 .appMainWelcome_text,
#AppWelcomeScreen .page3 .appMainWelcome_text,
#AppWelcomeScreen .page4 .appMainWelcome_text,
#AppWelcomeScreen .page5 .appMainWelcome_text {
  padding: 0rem 4rem;
}
#AppWelcomeScreen .page2 .appMainWelcome_logo,
#AppWelcomeScreen .page3 .appMainWelcome_logo,
#AppWelcomeScreen .page4 .appMainWelcome_logo,
#AppWelcomeScreen .page5 .appMainWelcome_logo {
  width: 17.3rem;
}
#AppWelcomeScreen .page2 .appMainWelcome_logo {
  width: 13.5rem;
}
#AppWelcomeScreen .page3 .appMainWelcome_logo {
  width: 10rem;
}
#AppWelcomeScreen .page4 .appMainWelcome_logo {
  width: 10.5rem;
}
#AppWelcomeScreen .page5 .appMainWelcome_logo {
  width: 7.7rem;
}
#AppWelcomeScreen .circlePage3_2 {
  position: absolute;
  border-radius: 50%;
  background-color: #88eeef;
  width: 26rem;
  height: 26rem;
  left: 120rem;
  bottom: -12rem;
  z-index: 1;
}
#AppWelcomeScreen app-swippable[data-page="0"] + .appMainWelcome_buttonsNew {
  color: #307FE2 !important;
}
#AppWelcomeScreen app-swippable[data-page="0"] + .appMainWelcome_buttonsNew .appBulletlist_circle {
  border-color: white;
}
#AppWelcomeScreen app-swippable[data-page="0"] + .appMainWelcome_buttonsNew .appBulletlist_circle._selected {
  background: white;
}
#AppWelcomeScreen app-swippable[data-page="1"] + .appMainWelcome_buttonsNew {
  color: #5E19FE !important;
}
#AppWelcomeScreen app-swippable[data-page="2"] + .appMainWelcome_buttonsNew {
  color: #5E19FE  !important;
}
#AppWelcomeScreen app-swippable[data-page="3"] + .appMainWelcome_buttonsNew {
  color: #5E19FE  !important;
}
#AppWelcomeScreen app-swippable[data-page="4"] + .appMainWelcome_buttonsNew {
  color: #5E19FE  !important;
}
