@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,500&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css");
body {
  font-family: "Roboto", sans-serif;
  color: #3e3f42;
  font-size: 14px;
}

::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  background-color: #eaedf3 !important;
}

::-webkit-scrollbar-thumb {
  background-color: #707070 !important;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.c-bg--orange {
  background-color: #faa11b !important;
}

.c-bg--lightBlue {
  background-color: #39bae8;
}

.c-bg--lightWhite {
  background-color: #eaedf3;
}

.c-text-color--orange {
  color: #faa11b !important;
}

.c-text-color--lightBlue {
  color: #39bae8 !important;
}

.c-text-color--lightWhite {
  color: #eaedf3 !important;
}

p {
  font-size: 14px;
}

.c-main--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.c-page-content--wrapper {
  width: calc(100% - 250px);
  padding: 0;
  min-height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fbfbfd;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media (max-width: 767px) {
  .c-page-content--wrapper {
    width: 100%;
  }
}

.c-page-content--wrapper.isActive {
  width: 100%;
}

@media (max-width: 767px) {
  .c-page-content--wrapper.isActive {
    width: 100%;
  }
}

.c-content--wrapper {
  padding: 15px;
}

.c-badge--box {
  width: 20px;
  height: 20px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  background: #39bae8;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.c--btn {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-size: 14px;
  background-color: #ffffff;
  border-color: rgba(112, 112, 112, 0.5);
}

.c--btn:hover {
  background-color: rgba(234, 237, 243, 0.5);
}

.c--btn i {
  margin-right: 0.5em;
}

.c-btn--info {
  background-color: #39bae8;
  color: #ffffff;
}

.c-btn--info:hover {
  background-color: #7ed2f0;
}

.c-user-dropdown--box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.c-user-dropdown--box .c-user-profile--imageWrapper {
  width: 38px;
  height: 38px;
  margin-right: 0.5em;
}

.c-user-dropdown--box .c-user-profile--imageWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-box--wrapper {
  border: 1px solid #e2e5ed;
  -webkit-box-shadow: 0px 1px 3px -1px rgba(26, 26, 26, 0.3);
          box-shadow: 0px 1px 3px -1px rgba(26, 26, 26, 0.3);
  border-radius: 5px;
  background-color: #ffffff;
}

.c-box--wrapper .c-box-header--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 25px 30px;
  border-bottom: 1px solid #e2e5ed;
}

@media (max-width: 574px) {
  .c-box--wrapper .c-box-header--wrapper {
    padding: 15px 10px;
  }
}

.c-box--wrapper .c-box-header--rightContent {
  margin-left: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-box--wrapper .c-box-header--title {
  margin: 0;
}

.c-box--spacing {
  margin-top: 30px;
  margin-bottom: 30px;
}

.c-alert-box--wrapper {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-alert-box--wrapper i {
  margin-right: 1em;
}

.c-sidebar--wrapper {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  background: #333249;
  color: #ffffff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media (max-width: 767px) {
  .c-sidebar--wrapper {
    margin-left: -250px;
  }
}

.c-sidebar--wrapper.isActive {
  margin-left: -250px;
}

@media (max-width: 767px) {
  .c-sidebar--wrapper.isActive {
    margin-left: 0;
  }
}

.c-sidebar--wrapper .c-sidebar--logoWrapper {
  padding: 20px 30px;
  background-color: #333249;
  border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}

.c-sidebar-item--Wrapper {
  padding: 1.4em 0 0;
}

.c-sidebar-item--Wrapper .c-sidebar-item--title {
  font-weight: 500;
  text-transform: uppercase;
  color: #9ea0a5;
  margin-bottom: 0.5em;
  font-size: 14px;
  padding: 0.5em 1.5em;
  margin: 0;
}

.c-sidebar-item--Wrapper + .c-sidebar-item--Wrapper {
  border-top: 1px solid rgba(112, 112, 112, 0.5);
}

.c-sidebar--itemGroup .c-sidebar--item {
  position: relative;
}

.c-sidebar--itemGroup .c-sidebar--item .c-sidebar--itemLink {
  padding: 0.8em 1.5em;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-decoration: none;
}

.c-sidebar--itemGroup .c-sidebar--item .c-sidebar--itemLink.isActive {
  background: #484767;
}

.c-sidebar--itemGroup .c-sidebar--item .c-sidebar--itemLink.isActive::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background: #39bae8;
  top: 0;
  bottom: 0;
  left: 0;
}

.c-sidebar--itemGroup .c-sidebar--item .c-sidebar--itemLink:hover:not(.isActive) {
  background: #3e3c58;
}

.c-sidebar--itemGroup .c-sidebar--item .c-sidebar--badgeBox {
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-sidebar-close--button {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
}

.c-navbar--wrapper {
  background: #ffffff;
  -webkit-box-shadow: 0 1px 0px 0px #eaedf3;
          box-shadow: 0 1px 0px 0px #eaedf3;
}

@media (max-width: 991px) {
  .c-navbar--wrapper .c-page--title {
    margin-left: 0.5em !important;
  }
}

.c-navbar-right--border {
  border-right: 1px solid #707070;
  padding-right: 1.5em;
}

.c-navbar-right--wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-navbar-right--wrapper .c-navbar-right--item + .c-navbar-right--item {
  margin-left: 1.5em;
}

.c-dashboard-info-box--wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--item {
  height: 134px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media (max-width: 991px) {
  .c-dashboard-info-box--wrapper .c-dashboard-info-box--item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.33333%;
            flex: 1 0 33.33333%;
    border: 1px solid #e2e5ed;
    margin: -1px;
  }
}

@media (max-width: 574px) {
  .c-dashboard-info-box--wrapper .c-dashboard-info-box--item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--item + .c-dashboard-info-box--item {
  border-left: 1px solid #e2e5ed;
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--title {
  font-size: 20px;
  height: 40px;
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--content .c-dashboard-info-box--icon {
  max-width: 20px;
}

.c-dashboard-info-box--wrapper .c-dashboard-info-box--content .c-dashboard-info-box--contentTitle {
  font-size: 16px;
  margin-left: 0.5em;
}

.c-dashboard-visit-header--charInfo i {
  margin-right: 0.3em;
}

.c-dashboard-visit-header--charInfo + .c-dashboard-visit-header--charInfo {
  margin-left: 1em;
}

.c-dashboard-visit-box--wrapper {
  margin-top: 30px;
}

.c-dahborad-visit-graph--wrapper {
  max-height: 300px;
}

.c-dashboard-deviceTraffic-box--wrapper {
  margin-top: 30px;
}

.c-dashboard-deviceTraffic--table thead th {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9ea0a5;
}

@media (max-width: 574px) {
  .c-dashboard-deviceTraffic--table thead th {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-dashboard-deviceTraffic--table tbody td {
  padding: 30px;
}

@media (max-width: 574px) {
  .c-dashboard-deviceTraffic--table tbody td {
    padding: 15px 10px;
  }
}

.c-dashboard-storeSetupBox--wrapper {
  margin-top: 30px;
}

.c-dashboard-storeSetupBox--wrapper .c-dashboard-store-item--box {
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 574px) {
  .c-dashboard-storeSetupBox--wrapper .c-dashboard-store-item--box {
    padding: 15px 10px;
  }
}

.c-dashboard-storeSetupBox--wrapper .c-dashboard-store-item--content img {
  margin-right: 1em;
}

.c-dashboard-store-item--boxWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-dashboard-store-item--boxWrapper .c-dashboard-store-item--box {
  border: 1px solid #e2e5ed;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 50%;
  margin-top: -1px;
}

@media (max-width: 991px) {
  .c-dashboard-store-item--boxWrapper .c-dashboard-store-item--box {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}

.c-dashboard-store-item--boxWrapper .c-dashboard-store-item--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-dashboard-store-item--boxWrapper .c-dashboard-store-item--checkIcon {
  padding: 0.5em;
}

@media (max-width: 574px) {
  .c-dashboard-store-item--boxWrapper .c-dashboard-store-item--checkIcon img {
    max-width: 20px;
  }
}
/*# sourceMappingURL=main.css.map */