html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 32px;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/roboto-regular.eot"); /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"),
    url("./assets/fonts/roboto-regular.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("./assets/fonts/roboto-regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("./assets/fonts/roboto-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("./assets/fonts/roboto-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("./assets/fonts/roboto-regular.svg#Roboto")
      format("svg"); /* Legacy iOS */
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("./assets/fonts/roboto-500.eot"); /* IE9 Compat Modes */
  src: local("Roboto Medium"), local("Roboto-Medium"),
    url("./assets/fonts/roboto-500.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("./assets/fonts/roboto-500.woff2") format("woff2"),
    /* Super Modern Browsers */ url("./assets/fonts/roboto-500.woff")
      format("woff"),
    /* Modern Browsers */ url("./assets/fonts/roboto-500.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("./assets/fonts/roboto-500.svg#Roboto")
      format("svg"); /* Legacy iOS */
}

* {
  -webkit-box-sixing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  height: 100%;
  padding-bottom: 74px;
  display: block;
  background-color: #f9f9f9;
}

footer {
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 0px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px -2px 14px 0px;
  display: flex;
  background-color: #FFFFFF;
}

.footer-first-part {
  width: 80%;
  display: flex;
}
.footer-second-part {
  width: 20%;
  height: 70px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  align-self: flex-end;
}

.logo-text {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0px;
  margin: 0 10px;
  display: inline-block;
}

.logo {
  max-width: 100%;
  height: 33px;
}

.dish-container {
  float: left;
  width: 25%;
  height: 50%;
  padding: 2.3px;
  margin-bottom: 2.3px;
  display: table;
}

.dish-image-container {
  display: table-row;
  height: 100%;
}

.dish {
  height: 77px;
  display: table-row;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 31px 0px;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
  border: 1px solid #fff;
  position: relative;
}

.wrapper {
  padding: 10px 28px;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
  font-weight: 500;
  height: 100%;
  display: table;
  width: 100%;
}

.dish-image {
  background-size: cover;
  background-position: center;
  height: 100%;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
}

.title {
  width: 80px;
  height: 1px;
  display: inline-block;
}

.dish-price {
  height: 100%;
  z-index: 2;
  display: table-cell;
  background-color: #f9f9f9;
  vertical-align: bottom;
  text-align: right;
}

.dish-name {
  line-height: 28px;
  width: 100%;
  height: 56px;
  display: table-cell;
}

.cell-wrapper {
  max-height: 56px;
  overflow: hidden;
}

.content {
  height: 100%;
}

.restaurant-logo-image {
  height: 60px;
}

.chart-content-container {
  float: left;
  width: 50%;
  height: 50%;
  padding: 2.3px;
  margin-bottom: 2.3px;
  /* display: table; */
}

.chart-content {
  /* display: table-row; */
  height: 100%;
}

/* .chart-style {
  width: auto;
  height: auto;
} */

.analytics-content {
  height: 100%;
}

.analytics-container {
  height: 100%;
  padding-bottom: 74px;
  background-color: #f9f9f9;
  display: none;
}

.chart-container {
  float: left;
  width: 40%;
  height: 50%;
  padding: 2.2px;
  margin-top: 8px;
  margin-left: 110px;
  display: table;
}

#failure {
  background: #ff3939;
  color: #f0f0f0;
}

.notify {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  color: white;
  text-align: center;
  background: rgba(255, 0, 0, 0.9);
  overflow: hidden;
  box-sizing: border-box;
  transition: height 1s;
}

.failureText {
  line-height: 50px;
  display: block;
  margin-top: 20vw;
  font-size: 40px;
  font-weight: 400;
}

.active {
  height: 100%;
}


.slides-content {
  height: 100%;
  text-align: center;
  padding: 10px;
}

.slides-container {
  height: 100%;
  padding-bottom: 74px;
  background-color: #f9f9f9;
  display: none;
}

.mySlides {
  display: none;
  height: 100%;
}

img {
  vertical-align: middle;
  max-width:100%;
  max-height:100%;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.feedback-content {
  max-width: 100%;
  margin-right: auto;
  margin-left: 0;
  display: none;
  padding: 10px 28px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
    font-weight: 500;
}

.feedback-content-text {
  margin-top: auto;
  margin-bottom: auto;
}

.feedback-image{
  vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    margin-left: 12px;
}

.element {
  animation-name: stretch;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-iteration-count: 1
}

@keyframes stretch {
  0% {
    transform: scale(.5);
    border-radius: 100%;
  }
  50% {
    /* background-color: orange; */
  }
  100% {
    transform: scale(1.2);
    /* background-color: yellow; */
  }
}