.cbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lh {
  display: flex;
  flex-flow: row;
}

.lhw {
  display: flex;
  flex-flow: row wrap;
}

.lv {
  display: flex;
  flex-direction: column;
}

.lhjw {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.lhcjw {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.lhejw {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.lhej {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.secondary {
  margin1: 1em;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #737373;
}

.pfh {
  @apply --paper-font-common-base;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 32px;
}

.pft {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.pfb1 {
  @apply --font-common-base;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.pfb2 {
  @apply --font-common-base;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.statusred {
  font-size: 0.75em;
  color: var(--google-red-500);
}

.statusgreen {
  font-size: 0.75em;
  color: var(--google-green-500);
}

.center {
  text-align: center;
}

.count {
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 10px;
  color: #fff;
  background-color: var(--paper-grey-700);
  text-align: center;
  padding: 2px;
  margin-left: 5px;
  border-radius: 50%;
}

.countgreen {
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 10px;
  color: #fff;
  background-color: var(--paper-green-500);
  text-align: center;
  padding: 2px;
  margin-left: 5px;
  border-radius: 50%;
}

.countorange {
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 10px;
  color: #fff;
  background-color: var(--paper-orange-500);
  text-align: center;
  padding: 2px;
  margin-left: 5px;
  border-radius: 50%;
}

.nounderline {
  text-decoration: none;
}

.elevation2dp {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.elevation3dp {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.4);
}

.elevation4dp {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
}

.elevation6dp {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}

.elevation8dp {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

.elevation12dp {
  box-shadow: 0 12px 16px 1px rgba(0, 0, 0, 0.14), 0 4px 22px 3px rgba(0, 0, 0, 0.12), 0 6px 7px -4px rgba(0, 0, 0, 0.4);
}

.elevation16dp {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
}

.elevation24dp {
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.4);
}

@keyframes q-slidein-lr {
  from {
    margin-left: 100%;
    width: 200%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}
@keyframes q-slidein-rl {
  from {
    margin-right: 100%;
    width: 200%;
  }
  to {
    margin-right: 0%;
    width: 100%;
  }
}
@keyframes q-zoom {
  0% {
    transform: scale(0, 0.025);
  }
  50% {
    transform: scale(1, 0.025);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .q-slide-lr-animation {
    animation: q-slidein-lr 1s 1;
  }

  .q-slide-rl-animation {
    animation: q-slidein-rl 1s 1;
  }

  .q-zoom-animation {
    animation: q-zoom 1s 1;
  }
}
.topnav {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  position: fixed;
  top: 0;
  width: 100%;
  min-height1: 64px;
  z-index: 200;
}
.topnav .logo {
  font-size: 18px;
  text-align: center;
  padding-left: 10px;
  font-weight: 600;
  color: #bdc1c6;
}
.topnav .logo .logob {
  font-family1: "Roboto", "Noto", sans-serif;
  font-weight: bold;
  padding: 3px 2px 5px 7px;
  text-align: center;
  background-color: #26a69a;
  color: #fff;
  border-radius: 10%;
}
.topnav .logo:hover {
  color: #bdc1c6;
  background-color: #fff;
}
.topnav a {
  color: #26a69a;
  font-size: 14px;
  padding: 20px;
  float: left;
  display: block;
  text-decoration: none;
  font-weight: 600;
}
.topnav a:hover {
  background-color: #f1f3f4;
  color: #26a69a;
  border-radius1: 10px;
}
.topnav .demobtn {
  border: 1px solid #26a69a;
  background-color: #fff;
  color: #26a69a;
  margin-right: 10px;
}
.topnav .demobtn:hover {
  background-color: #26a69a;
  color: #fff;
}

.topnav a.burgericon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }

  .topnav a.burgericon {
    color: #26a69a;
    display: block;
  }

  .topnav a#demobtn {
    float1: right;
    display: block;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .topnav.responsive a.burgericon {
    color1: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .topnav.responsive a#demobtn {
    position: absolute;
    right: 54px;
    top: 10px;
  }
}
footer {
  min-height: 100px;
  text-align: center;
  background-color: #dadce0;
}
footer a {
  background-color: var(--theme);
  color: #fff;
  padding: 10px;
  margin: 20px;
  border-radius: 0%;
}
footer a:hover {
  background-color: #fff;
  color: var(--theme);
  border: 1px solid var(--theme);
}

.my-float {
  margin-top: 16px;
}

.banner {
  background-color: #26a69a;
  color: #fff;
  padding-bottom: 30px;
}
.banner .deviceicon {
  font-size: 24px;
}
.banner .bannerapp,
.banner .bannerapp:hover {
  text-align1: center;
  flex-basis1: 33.33%;
  margin: 60px 0px;
  color: #fff;
  text-decoration: none;
  color: inherit;
}
.banner .appicon {
  font-size: 36px;
}
.banner .appnamediv {
  padding-top: 7px;
  font-weight: 500;
}

.appcarddiv {
  margin: 20px;
  width: 350px;
  min-height: 250px;
  padding: 10px;
  border: 1px solid #009688;
  border-top: 4px solid #009688;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}
.appcarddiv .appicon {
  font-size: 48px;
  padding: 8px;
  border-radius: 50%;
  color: var(--iconstheme);
  transform1: rotate(-20deg);
}
.appcarddiv .appheader {
  margin: 5px 0px 5px 5px;
  text-align: center;
  color: #5f6368;
}
.appcarddiv .listdiv {
  padding: 15px;
  color: #5f6368;
}

.appcarddiv:hover {
  border-top: 6px solid #009688;
}

.featurescarddiv {
  margin: 10px;
  width: 300px;
  min-height: 250px;
  padding: 10px;
  border-radius: 3%;
}
.featurescarddiv .icon {
  color: #fa7b17;
  background-color: #f1f3f4;
  border-radius: 50%;
  padding: 10px;
  font-size: 24px;
}

.featurescarddiv:hover {
  border: 1px solid #26a69a;
}

:root {
  --theme: #7986cb;
  --iconstheme: #26a69a;
  --text-font-color: #26a69a;
}

body,
html {
  font: 400 16px/1.5 Segoe UI, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  scroll-behavior: smooth;
}

main h1 {
  color: #26a69a;
}

@media (min-width: 321px) {
  p {
    font: 400 16px/1.7777777778 Segoe UI, system-ui, -apple-system, sans-serif;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
.w-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.material-icons {
  vertical-align: middle;
}

.appscreenshot {
  max-width: 300px;
  max-height: 650px;
  margin: 10px;
}

.demobtn {
  border: 1px solid #fff;
  margin-right: 10px;
  background-color: #fff;
  color: #26a69a;
}

.demobtn:hover {
  background-color: #26a69a;
  color: #fff;
}

.cost {
  color: #fff176;
  padding: 10px;
}

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