/**
 * Retrieves a color value from the $material-colors Sass map
 * Inspired by https://github.com/nilskaspersson/Google-Material-UI-Color-Palette/
 *
 * @function
 * @param {string} color-name             - quoted, lower-case, dasherized color
 *                                          name (e.g. 'pink', 'amber')
 * @param {string} [color-variant='500']  - quoted, lowercase color variant (e.g.
 *                                          '200', 'a100')
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html {
  position: relative;
  min-height: 100%; }

* {
  transition: none !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  padding: 0;
  font-family: 'OatmealPro';
  font-size: 16px;
  color: #424242; }
  body .root {
    padding: 66px 0px 0px 0px; }

@font-face {
  font-display: fallback;
  font-family: OatmealPro;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/OatmealPro2-Regular.woff2") format("woff2"); }

body, input, textarea, select, button {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern"; }

h1, h2, h3, h4, h5, h6 {
  font-family: OatmealPro;
  font-weight: normal; }

h1 {
  font-size: 1.6em; }
  h1.title {
    display: inline-block;
    margin: 0px; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-right: right; }

.text-light {
  color: #ffffff; }

a:hover {
  text-decoration: none; }

.padding {
  padding: 15px; }

/*
 *  Mixin's
 */
.navbar {
  background: transparent;
  border: 0px; }
  .navbar.active {
    background: #3db5b9;
    background: linear-gradient(180deg, #37a2a6 0%, #37a2a6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary-color', endColorstr='$primary-color',GradientType=1 );
    box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.2) ; }
  .navbar .navbar-brand {
    line-height: 36px; }
    .navbar .navbar-brand:hover {
      color: #ffffff; }
    .navbar .navbar-brand img {
      width: 3em; }
  .navbar .navbar-nav .dropdown-menu {
    border: none; }
    .navbar .navbar-nav .dropdown-menu > li a {
      background-color: #ffffff;
      border: none;
      padding: 3px 15px 3px 15px; }
      .navbar .navbar-nav .dropdown-menu > li a.icon-left {
        padding: 3px 15px 3px 30px; }
      .navbar .navbar-nav .dropdown-menu > li a:hover {
        background-color: #ffcc00;
        color: #ffffff; }
  .navbar .navbar-nav > li > a {
    color: #ffffff;
    letter-spacing: 0.01em;
    white-space: nowrap;
    font-size: 0.9em;
    line-height: 26px;
    margin-top: 6px;
    transition: color .2s ease-in-out;
    -webkit-font-smoothing: subpixel-antialiased;
    text-align: center;
    -moz-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-top-right-radius: 5px;
    border-top-right-radius: 5px; }
    .navbar .navbar-nav > li > a.active, .navbar .navbar-nav > li > a.has-hover:hover {
      color: #ffeb3b;
      background: transparent !important; }
      .navbar .navbar-nav > li > a.active:before, .navbar .navbar-nav > li > a.has-hover:hover:before {
        content: " ";
        position: absolute;
        display: block;
        height: 4px;
        background: #ffeb3b;
        width: 100%;
        left: 0px;
        top: 0px; }
    .navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus {
      color: #ffeb3b; }
    .navbar .navbar-nav > li > a.btn {
      height: 35px;
      padding: 0px 20px;
      margin-top: 14px;
      border: 0px;
      background-color: #424242;
      color: #ffffff;
      line-height: 35px; }
      .navbar .navbar-nav > li > a.btn:hover {
        background-color: #575757; }
    .navbar .navbar-nav > li > a i {
      font-size: 1.5em !important;
      margin-right: 5px; }
  .navbar .navbar-nav > li.open > a, .navbar .navbar-nav > li.open > a:hover {
    background: #ffffff; }
  .navbar .user-avatar {
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-right: 10px;
    margin-left: 5px; }
  .navbar .corner.top-left {
    -moz-border-top-left-radius: 5px;
    border-top-left-radius: 5px; }
  .navbar .corner.top-right {
    -moz-border-top-right-radius: 5px;
    border-top-right-radius: 5px; }
  .navbar .corner.bottom-left {
    -moz-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px; }
  .navbar .corner.bottom-right {
    -moz-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px; }

.content {
  position: relative;
  /* start 'enter' transition */
  /* end 'enter' transition */ }
  .content .actions {
    width: 100%;
    padding-bottom: 15px;
    margin: 15px 0px; }
  .content .table {
    margin: 15px 0px; }
  .content .container {
    position: relative; }
    .content .container .padding {
      padding: 100px 0px; }
    .content .container .nav-tabs {
      margin-top: 20px; }
  .content.ng-enter {
    /* transition on enter for .5s */
    transition: 0.2s cubic-bezier(0.39, 0.31, 0.59, 0.96) all !important;
    /* start with opacity 0 (invisible) */
    opacity: 0;
    margin-top: 0px;
    min-height: 0px; }
  .content.ng-enter-active {
    /* end with opacity 1 (fade in) */
    opacity: 1;
    margin-top: 0px;
    min-height: auto; }

.padding-top {
  padding-top: 100px; }

.padding-bottom {
  padding-bottom: 100px; }

.banner {
  position: relative;
  text-align: center;
  margin-bottom: 100px;
  margin-top: -14px;
  padding: 10px 0px;
  height: 100vh;
  background: #ffcc00;
  background: linear-gradient(to bottom, #ffcc00 0%, #d09012 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 ); }
  .banner h1 {
    color: #ffffff;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 40px; }
  .banner > img {
    position: absolute;
    top: 280px;
    left: 50%;
    width: 900px;
    margin-left: -450px; }
  .banner .downloads img {
    margin: 0px 35px;
    width: 200px; }

.footer {
  position: absolute;
  background: #424242;
  padding: 0px;
  color: #8f8f8f;
  line-height: 60px;
  bottom: 0;
  width: 100%;
  height: 60px;
  font-size: 0.8em; }
  .footer a {
    color: #8f8f8f;
    font-size: 2em;
    margin: 0px 10px; }
    .footer a:hover {
      color: #ffffff;
      text-decoration: none; }
  .footer img {
    width: 100px; }

.dashboard .filters, .report .filters {
  margin-top: 30px; }

.dashboard .input-group-date .input-group-btn .btn, .report .input-group-date .input-group-btn .btn {
  border: 1px solid #ccc; }

.dashboard .multiselect-parent .dropdown-menu, .report .multiselect-parent .dropdown-menu {
  overflow: scroll !important;
  max-height: 300px !important; }

.wow {
  visibility: hidden; }

.multiselect-parent {
  width: 100%; }

.invert {
  color: #ffffff; }
  .invert.orange {
    background: #ffcc00;
    background: linear-gradient(to bottom, #ffcc00 0%, #d09012 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 ); }

h1 .btn, h2 .btn, h3 .btn, h4 .btn, h5 .btn, h6 .btn {
  line-height: 100%;
  margin-top: -5px;
  margin-left: 20px; }

.label {
  font-weight: normal; }

.angular-google-map-container {
  margin-top: 28px;
  height: 385px;
  border-radius: 5px; }

.ng-toast__message .alert-success {
  background-color: #4caf50;
  border: none;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2) ;
  margin-top: 55px;
  color: #ffffff; }

.table-hover tr {
  cursor: pointer; }

.dropdown-menu > li > a {
  cursor: pointer; }

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
.ats-switch {
  outline: 0px !important;
  -webkit-appearance: none; }

.uib-datepicker-popup button {
  border: none; }

.pagination {
  margin: 0px; }

.breadcrumb-wrapper {
  background-color: #f5f5f5;
  margin-bottom: 0px; }
  .breadcrumb-wrapper .breadcrumb {
    margin-bottom: 0px; }

.ng-table th.filter .input-filter {
  border: none;
  background: #f8f8f8; }

.ng-csv-import .label {
  display: none; }

.highcharts-credits {
  display: none; }

*:focus {
  outline: 0px !important;
  -webkit-appearance: none; }

.drop-container {
  position: relative;
  background: #f5f5f5;
  color: #000;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow-x: auto;
  padding: 5px;
  border: 2px dashed #ccc;
  cursor: pointer;
  min-height: 110px;
  min-width: 128px;
  border-radius: 10px; }
  .drop-container .description {
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 110px;
    height: 70px;
    left: 50%;
    margin-left: -55px;
    top: 50%;
    margin-top: -35px; }
  .drop-container img {
    border-radius: 5px;
    margin: 2px;
    width: 110px;
    height: 110px;
    z-index: 2; }

.card {
  display: block;
  width: 300px;
  height: 230px;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2) ;
  border-radius: 5px;
  overflow: hidden;
  zoom: 65%; }
  .card h3 {
    font-size: 1em;
    font-weight: normal;
    font-family: 'Avenir Next','AvenirNextLTW01-Regular',Helvetica,Arial,sans-serif;
    margin: 0px 0px 10px 0px;
    color: #000000; }
    .card h3.price {
      color: #c70000;
      font-weight: bold;
      font-size: 1.4em;
      margin-top: 10px; }
  .card p {
    font-size: 0.8em; }
  .card .hold-image {
    height: 170px;
    overflow: hidden;
    background: #f1f1f1; }
    .card .hold-image img {
      margin-top: -100px; }
  .card .description {
    font-size: 1em;
    padding: 10px; }

.preview {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 579px;
  padding: 0px;
  text-align: center;
  zoom: 1; }
  .preview .wrapper {
    background: #ffffff;
    position: absolute;
    height: 416px;
    left: 33px;
    top: 67px;
    width: 234px;
    overflow: hidden;
    text-align: left; }
    .preview .wrapper .hold-image {
      height: 234px;
      overflow: hidden; }
      .preview .wrapper .hold-image img {
        width: 234px; }
    .preview .wrapper .description {
      font-size: 0.6em;
      padding: 5px;
      border-bottom: 1px solid #e6e6e6; }
    .preview .wrapper .icons {
      font-size: 0.6em;
      text-align: center;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: center;
      justify-content: center;
      border-bottom: 1px solid #e6e6e6;
      padding: 5px; }
      .preview .wrapper .icons .icon {
        margin: 0px 10px; }
        .preview .wrapper .icons .icon .fa {
          display: block;
          font-size: 1.5em; }
    .preview .wrapper .info {
      padding: 5px;
      border-bottom: 1px solid #e6e6e6;
      position: relative;
      font-size: 0.7em; }
      .preview .wrapper .info h1 {
        font-family: 'Avenir Next','AvenirNextLTW01-Regular',Helvetica,Arial,sans-serif;
        font-weight: normal;
        font-size: 1em;
        color: #000;
        margin: 0px;
        margin-bottom: 3px; }
        .preview .wrapper .info h1.price {
          text-align: right;
          font-size: 1.2em;
          position: absolute;
          right: 5px;
          top: 20px;
          color: #d00000;
          font-weight: bold; }
      .preview .wrapper .info p {
        font-size: 0.8em;
        margin: 0px 0px 5px 0px; }
      .preview .wrapper .info .company {
        font-size: 0.8em; }
        .preview .wrapper .info .company img {
          display: inline-block;
          width: 20px;
          height: 20px;
          overflow: hidden;
          border-radius: 3px;
          margin-right: 5px; }
  .preview > img {
    width: 300px;
    width: 300px;
    padding: 0px;
    margin: -15px 0px 0px 0px;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 0px; }

.table.table-pointer tr {
  cursor: pointer; }

.table tr.active td {
  background-color: #ffcc00 !important;
  color: #ffffff; }

.ng-table th.sortable.sort-desc, .ng-table th.sortable.sort-asc {
  background-color: transparent;
  text-shadow: none;
  color: #ef9a9a; }

.btn {
  font-size: 14px;
  border: none;
  border-radius: 0px !important; }
  .btn.btn-default {
    background-color: #f9f9f9; }
  .btn:focus {
    outline: none; }
  .btn.btn-link:hover {
    color: #ffcc00;
    text-decoration: underline; }
  .btn.btn-link:active:focus {
    color: #ffcc00;
    background: transparent;
    border-color: transparent; }
  .btn i {
    font-size: 13px; }

.btn-outline {
  border-width: 2px;
  border-style: solid;
  background-color: transparent;
  color: inherit;
  transition: all .5s; }
  .btn-outline.btn-primary:hover, .btn-outline.btn-success:hover, .btn-outline.btn-info:hover, .btn-outline.btn-warning:hover, .btn-outline.btn-danger:hover, .btn-outline.btn-primary:focus, .btn-outline.btn-success:focus, .btn-outline.btn-info:focus, .btn-outline.btn-warning:focus, .btn-outline.btn-danger:focus {
    color: #fff; }
  .btn-outline.btn-primary {
    color: #428bca; }
    .btn-outline.btn-primary.disabled, .btn-outline.btn-primary[disabled] {
      background: transparent;
      color: #428bca; }
  .btn-outline.btn-success {
    color: #5cb85c; }
    .btn-outline.btn-success.disabled, .btn-outline.btn-success[disabled] {
      background: transparent;
      color: #5cb85c; }
  .btn-outline.btn-info {
    color: #5bc0de; }
    .btn-outline.btn-info.disabled, .btn-outline.btn-info[disabled] {
      background: transparent;
      color: #5bc0de; }
  .btn-outline.btn-warning {
    color: #f0ad4e; }
    .btn-outline.btn-warning.disabled, .btn-outline.btn-warning[disabled] {
      background: transparent;
      color: #f0ad4e; }
  .btn-outline.btn-danger {
    color: #d9534f; }
    .btn-outline.btn-danger.disabled, .btn-outline.btn-danger[disabled] {
      background: transparent;
      color: #d9534f; }

.form-group label {
  font-weight: normal; }

.form-control {
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
  box-shadow: none;
  border-radius: 0px !important; }
  .form-control:focus {
    border-color: #539CDC;
    box-shadow: none; }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  border-color: transparent;
  background-color: #f5f5f5;
  box-shadow: none;
  opacity: 1; }

.form-horizontal .control-label {
  padding-top: 7px;
  margin-bottom: 0;
  text-align: left;
  font-weight: 600; }

.modal-backdrop {
  background-color: #424242; }

.modal-header {
  border: none; }

.modal-content {
  background-color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15), 0px 0px 1px 1px rgba(0, 0, 0, 0.05); }

.modal .modal-dialog .modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  overflow: hidden; }
  .modal .modal-dialog .modal-content p {
    margin: 0; }
  .modal .modal-dialog .modal-content.avatar-modal {
    background: #F2F2F2; }
    .modal .modal-dialog .modal-content.avatar-modal .cropArea {
      overflow: hidden;
      width: 450px;
      height: 450px;
      margin: 0 auto; }

.modal .modal-dialog .modal-body h4 {
  margin: 20px 0px; }

.modal .modal-dialog .modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0px; }
  .modal .modal-dialog .modal-footer button {
    width: 100%;
    border-radius: 0px; }
    .modal .modal-dialog .modal-footer button:first-child {
      -moz-border-bottom-left-radius: 6px;
      border-bottom-left-radius: 6px; }
    .modal .modal-dialog .modal-footer button:last-child {
      -moz-border-bottom-right-radius: 6px;
      border-bottom-right-radius: 6px; }
    .modal .modal-dialog .modal-footer button.btn-link:hover {
      text-decoration: none; }

.dropdown-menu > li > a {
  position: relative;
  padding: 3px 20px 3px 30px; }
  .dropdown-menu > li > a i {
    position: absolute;
    left: 7px;
    top: 5px;
    text-align: center;
    width: 20px; }

.ats-switch {
  min-width: 60px;
  width: 60px;
  height: 28px;
  border: none;
  overflow: hidden;
  border-radius: 60px; }
  .ats-switch:hover {
    border-color: none;
    box-shadow: none; }
  .ats-switch .switch-animate {
    overflow: hidden;
    height: 60px;
    max-height: 60px;
    width: 60px;
    max-width: 60px; }
    .ats-switch .switch-animate .switch-left {
      transition: all 0.2s !important;
      -o-transition: all 0.2s !important;
      -moz-transition: all 0.2s !important;
      -webkit-transition: all 0.2s !important;
      width: 60px;
      height: 28px; }
    .ats-switch .switch-animate .switch-right {
      display: none; }
    .ats-switch .switch-animate .knob {
      transition: all 0.2s !important;
      -o-transition: all 0.2s !important;
      -moz-transition: all 0.2s !important;
      -webkit-transition: all 0.2s !important;
      border-radius: 50%;
      position: absolute;
      left: 34px;
      top: 4px;
      width: 22px;
      height: 22px;
      min-height: 22px; }
    .ats-switch .switch-animate.switch-off {
      left: 0%; }
      .ats-switch .switch-animate.switch-off .knob {
        left: 4px; }
      .ats-switch .switch-animate.switch-off .switch-left {
        background-color: #ccc; }
    .ats-switch .switch-animate.switch-on {
      left: 0%; }
      .ats-switch .switch-animate.switch-on .knob {
        left: 34px; }

.tab-content .actions {
  padding-left: 20px; }

.iphone {
  position: relative;
  background: #202020;
  width: 45%;
  height: 0;
  padding-top: 95%;
  margin: 0 auto;
  border-radius: 3em; }

.power {
  position: absolute;
  background: #202020;
  width: 13%;
  height: .5%;
  top: -.5%;
  right: 12%;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em; }

.lock {
  position: absolute;
  background: #202020;
  width: 1%;
  height: 5%;
  top: 12.5%;
  left: -1%;
  border-top-left-radius: .5em;
  border-bottom-left-radius: .5em; }

.volume {
  position: absolute;
  background: #202020;
  width: 1%;
  height: 4%;
  top: 23%;
  left: -1%;
  border-top-left-radius: .5em;
  border-bottom-left-radius: .5em; }

.volume.down {
  top: 31%; }

.camera {
  position: absolute;
  top: 4%;
  left: 48.5%;
  background: #3f3f3f;
  width: 3%;
  height: 0;
  padding-top: 3%;
  border-radius: 50%; }

.speaker {
  position: absolute;
  top: 7%;
  left: 42.5%;
  background: #3f3f3f;
  width: 15%;
  height: 0;
  padding-top: 3%;
  border-radius: 1em; }

.appleicon {
  padding-top: 25%;
  opacity: 0;
  animation: unhide 5s infinite alternate; }

.appleicon img {
  width: 100%;
  height: 100%; }

.text {
  opacity: 0;
  font-size: 1.25rem;
  text-align: center;
  animation: unhide 5s infinite alternate; }

.screen {
  background: #2f2f2f;
  width: 90%;
  height: 75%;
  position: absolute;
  top: 12.5%;
  left: 5%;
  animation: lighten 5s infinite alternate; }

.button {
  position: absolute;
  bottom: 2.75%;
  left: 42.5%;
  background: #3f3f3f;
  /* border: 1px solid #3f3f3f; */
  width: 15%;
  height: 0;
  padding-top: 15%;
  border-radius: 50%; }

.square {
  position: absolute;
  top: 27.5%;
  left: 27.5%;
  border: 2px solid #d7d7d7;
  border-radius: .3em;
  width: 45%;
  height: 45%; }

@media screen and (min-width: 28em) {
  body {
    font-size: 8px; } }

@media screen and (min-width: 34em) {
  body {
    font-size: 10px; } }

@media screen and (min-width: 48em) {
  body {
    font-size: 14px; } }

@keyframes lighten {
  0%, 45% {
    background: #2f2f2f; }
  65%, 100% {
    background: #f7f7f7; } }

@keyframes unhide {
  0%, 55% {
    opacity: 0; }
  75%, 100% {
    opacity: 1; } }

.signal {
  border: 3px solid #fff;
  border-radius: 30px;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 30px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite; }

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@keyframes lds-ripple {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: 38px;
    left: 38px;
    width: 116px;
    height: 116px;
    opacity: 0; } }

.lds-ripple {
  position: relative; }

.lds-ripple div {
  box-sizing: content-box;
  position: absolute;
  border-width: 4px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.7s cubic-bezier(0, 0.2, 0.8, 1) infinite; }

.lds-ripple div:nth-child(1) {
  border-color: #ffffff; }

.lds-ripple div:nth-child(2) {
  border-color: #ffffff;
  animation-delay: -0.85s; }

.lds-ripple {
  width: 10px !important;
  height: 10px !important;
  transform: translate(-57px, -23px) scale(0.3) translate(47px, 47px); }

.flex {
  display: -ms-flexbox;
  display: flex; }

.client .units {
  display: -ms-flexbox;
  display: flex;
  overflow: scroll; }
  .client .units .col {
    max-width: 200px;
    padding: 0 15px;
    border-right: 1px solid #f1f1f1; }
    .client .units .col:first-child {
      padding-left: 0px; }

.client .card {
  background: #fff;
  box-shadow: none;
  margin-bottom: 15px;
  padding: 15px;
  width: 100%;
  height: auto;
  zoom: inherit;
  cursor: pointer; }
  .client .card:hover, .client .card.active {
    background-color: #9e9e9e;
    color: #ffffff; }
  .client .card.textarea {
    height: auto; }
    .client .card.textarea:hover {
      background-color: #ffffff;
      color: inherit; }
  .client .card.create {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    max-height: 40px;
    font-size: 1em;
    color: #9e9e9e; }
    .client .card.create:hover {
      background: #9e9e9e;
      color: #ffffff; }

.client .requirement .title input {
  font-size: 2em;
  border: none;
  padding: 0px;
  text-indent: 0px;
  margin: 0px; }

.client .requirement .description {
  cursor: pointer; }

@keyframes color {
  0% {
    background-color: #3db5b9; }
  50% {
    background-color: #43A047; }
  100% {
    background-color: #3db5b9; } }

.c_icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 70%; }

.door_closed {
  background: url(../img/door_closed.svg); }

.door_opened {
  background: url(../img/door_opened.svg); }

.button_pressed {
  background: url(../img/button_pressed.svg); }

.touch_screen {
  background: url(../img/touch_screen.svg); }

.cart_red {
  background: url(../img/cart_red.svg); }

.cart_green {
  background: url(../img/cart_green.svg); }

.home {
  background: #3db5b9; }
  .home .user-container {
    margin: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px; }
    .home .user-container .user_avatar_list {
      margin: 1em; }
  .home .user_td {
    border-top: 2px #3db5b9 solid !important;
    vertical-align: middle !important;
    background-color: #37a2a6 !important;
    border-bottom: 2px #3db5b9 solid !important; }
  .home .first_td {
    border-radius: 20px 0px 0px 20px; }
  .home .last_td {
    border-radius: 0px 20px 20px 0px; }
  .home h3 {
    margin-top: 0px; }
  .home .relative {
    position: relative; }
  .home .absolute {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%; }
  .home .margin-top {
    margin-top: 30px; }
  .home .keyWrap {
    display: block;
    position: relative;
    width: 100%; }
    .home .keyWrap * {
      color: #ffffff; }
  .home .image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 1em; }
  .home .user_avatar_list {
    width: 3em;
    height: 3em;
    border-radius: 100%;
    object-fit: cover; }
  .home .user_avatar_modal {
    width: 10em;
    height: 10em;
    border-radius: 100%;
    object-fit: cover;
    margin: auto; }
  .home .input-filter {
    margin-bottom: 15px;
    border: none;
    background-color: #5fc7ca !important;
    color: white !important; }
  .home :-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
    /* Firefox */ }
  .home ::placeholder {
    color: #ffffff;
    opacity: 1;
    /* Firefox */ }
  .home .keyTitle {
    height: 30px;
    text-transform: uppercase;
    line-height: 30px;
    font-weight: bold;
    color: #ffcc00; }
  .home .label-control {
    color: #ffffff; }
  .home .text-light {
    color: #ffffff; }
  .home .text-primary {
    color: #ffcc00; }
  .home .key {
    position: relative;
    height: 60px;
    line-height: 60px;
    margin-bottom: 2px;
    border-radius: 5px;
    overflow: hidden; }
    .home .key .trigger-loader {
      position: absolute;
      top: 5px;
      right: 5px; }
    .home .key.selected, .home .key:hover {
      background: rgba(255, 255, 255, 0.1); }
    .home .key .expand {
      padding-left: 10px;
      -ms-flex-positive: 1;
      flex-grow: 1; }
    .home .key .expand-avatar {
      text-align: center;
      padding-top: 10px;
      padding-bottom: 10px;
      -ms-flex-positive: 1;
      flex-grow: 1; }
      .home .key .expand-avatar .avatar {
        margin-left: auto;
        margin-right: auto;
        vertical-align: top;
        max-height: 100%;
        max-height: -webkit-fill-available; }
    .home .key.success {
      animation-name: color;
      animation-duration: 1s;
      animation-iteration-count: 1; }
    .home .key .key-actions-avatar {
      background-color: rgba(0, 0, 0, 0.15); }
    .home .key .key-actions .action {
      width: 50px;
      margin-left: 1px;
      cursor: pointer; }
      .home .key .key-actions .action:hover {
        background: rgba(255, 255, 255, 0.2); }
    .home .key .key-actions a {
      margin-left: 15px; }
    .home .key .key-actions .open {
      text-align: center;
      line-height: 20px;
      margin-top: 10px; }
      .home .key .key-actions .open p {
        margin: 0px; }
  .home .hours .form-control {
    width: 50px;
    margin: 0px; }
  .home .hours .until {
    width: 100px;
    text-align: center;
    display: inline-block; }

.event {
  display: -ms-flexbox;
  display: flex;
  min-height: 6em; }
  .event .date {
    position: relative;
    -ms-flex: 3;
    flex: 3; }
    .event .date .date-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #ffffff;
      color: #6b6b6b;
      font-size: 0.8em;
      margin: 5px;
      text-align: center;
      border-radius: 1em;
      padding: 0.5em; }
  .event .action {
    position: relative;
    text-align: center;
    -ms-flex: 2;
    flex: 2; }
    .event .action .line {
      border-width: 2px;
      border-style: solid;
      border-color: #cccccc;
      width: 2px;
      height: 100%;
      margin-left: auto;
      margin-right: auto; }
    .event .action .icon-container {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #ffffff;
      height: 1.7em;
      width: 1.7em;
      border-radius: 1.5em;
      border-width: 4px;
      border-style: solid;
      border-color: #cccccc;
      font-size: 2em;
      vertical-align: middle; }
      .event .action .icon-container i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .event .event-content {
    -ms-flex: 10;
    flex: 10;
    position: relative;
    padding-top: 1em; }
    .event .event-content .event-content-container {
      background: #ffffff;
      color: #424242;
      padding: 5px 10px 5px 10px;
      margin: 5px;
      border-radius: 1em; }
      .event .event-content .event-content-container .title {
        font-size: 16px;
        margin: 0px; }
      .event .event-content .event-content-container .description {
        white-space: pre-wrap; }

.rzslider .rz-model-value, .rzslider .rz-bubble.rz-limit {
  color: #ffffff; }

.rzslider .rz-pointer {
  background-color: #fecb02; }

.auth {
  background: #3db5b9;
  background: linear-gradient(180deg, #3db5b9 0%, #37a2a6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primary-color', endColorstr='$primary-color',GradientType=1 );
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh; }
  .auth .login-panel {
    min-width: 150px; }
    .auth .login-panel img {
      max-width: 150px;
      display: block;
      margin: 0 auto;
      margin-bottom: 20px; }
    .auth .login-panel .content {
      width: 300px;
      background: #ffffff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2) ; }
    .auth .login-panel p {
      margin: 15px; }
  .auth .or {
    text-align: center;
    margin: 20px 0px;
    position: relative;
    font-size: 0.8em;
    color: #9e9e9e; }
    .auth .or:before, .auth .or:after {
      display: block;
      position: absolute;
      top: 12px;
      width: 45%;
      content: " ";
      height: 1px;
      background-color: #9e9e9e; }
    .auth .or:before {
      left: 0px; }
    .auth .or:after {
      right: 0px; }

.spinner {
  width: 60px;
  height: 60px;
  margin: 100px auto;
  background-color: #FFF;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@keyframes sk-scaleout {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1);
    opacity: 0; } }

.about-panel {
  min-width: 100vw;
  min-height: 100vh;
  padding: 15px; }
  .about-panel .logo {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px; }
  .about-panel .content {
    background: #ffffff;
    padding: 10px;
    height: calc(100vh - 75px);
    width: calc( 100vw - 30px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start; }
    .about-panel .content.center {
      -ms-flex-align: center;
      align-items: center; }
    .about-panel .content .panel-body {
      width: 100%; }
  .about-panel .footer-text {
    position: absolute;
    bottom: 0px;
    left: 15px;
    right: 15px; }
    .about-panel .footer-text p {
      text-align: center; }
  .about-panel .paint {
    color: #ffcc00; }
  .about-panel p.info {
    font-size: 0.7em;
    text-align: center; }
  .about-panel p.data {
    font-weight: bold; }

.alert {
  border-radius: 0px !important; }

.share {
  background: #FFFFFF; }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    .share select,
    .share textarea,
    .share input {
      font-size: 16px; } }
  .share .logo {
    width: 100px;
    margin: 0 auto;
    display: block; }
  .share .toaster .alert {
    position: fixed;
    width: 90%;
    height: 80px;
    top: calc( (100vh - 80px)/2);
    left: calc( (100vw - 90%)/2); }
  .share .modal-dialog {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
  .share .modal-content {
    margin-top: 150px;
    width: 70%; }
  .share .modal-body {
    padding: 0; }
  .share .panel-body {
    padding: 5px; }
  .share .geolocation {
    width: 100%; }
  .share .marker {
    max-width: 50px; }
  .share p.info {
    font-size: 0.9em;
    text-align: justify; }
  .share p.title {
    text-align: center; }
  .share label {
    color: #9e9e9e;
    font-size: 0.7em; }
  .share .share-panel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    width: 100%;
    margin: 15px;
    width: calc( 100vw - 30px); }
    .share .share-panel .content {
      padding-bottom: 90px;
      background: #ffffff;
      overflow: hidden; }
      .share .share-panel .content.center {
        -ms-flex-align: center;
        align-items: center; }
      .share .share-panel .content .panel-body {
        width: 100%;
        padding: 15px; }
      .share .share-panel .content .cover {
        position: relative;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto;
        max-height: 300px;
        height: 150px;
        width: 100%; }
        .share .share-panel .content .cover .title {
          font-size: 1.3em;
          font-weight: bold;
          color: #ffffff;
          position: absolute;
          bottom: 0px;
          left: 15px;
          z-index: 99;
          text-shadow: 0px 1px 2px #000000; }
        .share .share-panel .content .cover::before {
          content: " ";
          width: 100%;
          height: 100%;
          position: absolute;
          z-index: 1;
          top: 0;
          left: 0;
          background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); }
    .share .share-panel #spinner {
      position: relative;
      -ms-flex-align: center;
      align-items: center;
      text-align: center; }
    .share .share-panel .controls {
      margin: 0; }
      .share .share-panel .controls .alert {
        margin: 0;
        border-radius: 0px !important; }
      .share .share-panel .controls .input {
        border-radius: 0px;
        margin-bottom: 5px; }
    .share .share-panel .footer-text {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px; }
      .share .share-panel .footer-text p {
        text-align: center; }
    .share .share-panel .header-text {
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px; }
    .share .share-panel h2 {
      margin-top: 5px;
      margin-bottom: 5px; }
    .share .share-panel label {
      display: -ms-flexbox;
      display: flex; }
      .share .share-panel label h4 {
        color: #999;
        margin-top: 5px;
        margin-bottom: 0; }
      .share .share-panel label h3 {
        margin-top: 0;
        margin-bottom: 0; }
  .share .or {
    text-align: center;
    margin: 10px;
    position: relative;
    font-size: 0.8em;
    color: #9e9e9e; }
    .share .or:before, .share .or:after {
      display: block;
      position: absolute;
      top: 12px;
      width: 45%;
      content: " ";
      height: 1px;
      background-color: #9e9e9e; }
    .share .or:before {
      left: 0px; }
    .share .or:after {
      right: 0px; }
  .share .spinner {
    width: 60px;
    height: 60px;
    margin: 100px auto;
    background-color: #FFF;
    border-radius: 0;
    animation: sk-scaleout 1.0s infinite ease-in-out; }

@keyframes sk-scaleout {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1);
    opacity: 0; } }

.steps {
  display: -ms-flexbox;
  display: flex; }

.step {
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center; }

.permission .empty {
  margin: 30px; }

.profile .avatar {
  width: 100px;
  border-radius: 50%;
  border: 4px solid #006699;
  margin: 30px 0px; }

.doorman-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0.6fr 0.5fr 1.9fr;
  gap: 1em 1em; }
  .doorman-panel hr {
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    border-top: 1px solid #aaaaaa; }
  .doorman-panel .errored-call {
    background-color: #fab49f; }
  .doorman-panel .normal-call {
    background-color: whitesmoke; }
  .doorman-panel .doorman-call {
    display: inline-grid;
    height: 14em;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0em 0em;
    border-radius: 1em; }
    .doorman-panel .doorman-call .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 1em; }
    .doorman-panel .doorman-call .call-data {
      padding: 1em; }
    .doorman-panel .doorman-call .status .error {
      color: red; }
    .doorman-panel .doorman-call .status .intent-container {
      padding-top: 1em;
      width: 100%;
      height: 50%;
      text-align: center; }
      .doorman-panel .doorman-call .status .intent-container img {
        width: 50%;
        height: 50%;
        object-fit: cover; }

#video-grid {
  position: relative;
  width: 400px;
  height: 400px; }

#myVideo {
  position: absolute;
  width: 30%;
  height: 40%;
  object-fit: cover;
  z-index: 10;
  bottom: 10px;
  right: 10px; }

#userVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; }

/*# sourceMappingURL=app.min.css.map */
