@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&amp;display=swap");

body,
html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  background: #f8f9fa !important;
  font-family: Source Sans Pro !important;
  line-height: 1.5;
}

.text-color-orange {
  color: #db631a !important;
}
.text-red {
  color: red !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.login-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 90, 99, 0.7490196078431373);
  top: 0;
  z-index: 11;
  display: flex;
  flex-direction: row-reverse;
}
.login {
  height: 100%;
  width: 30%;
  background-color: #fff;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  z-index: 12;
  display: flex;
  flex-direction: row-reverse;
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #687e96;
  opacity: 1;
  /* Firefox */
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #687e96;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #687e96;
}
.cssanimation,
.cssanimation span {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.cssanimation span {
  display: inline-block;
}
.fadeInBottom {
  animation-name: fadeInBottom;
}
.btn-red {
  border-radius: 4px !important;
  background-color: #f00 !important;
  border: 1px solid #f00 !important;
  font-size: 12px !important;
  padding: 0 8px !important;
  color: #fff !important;
  width: 160px;
  height: 30px !important;
  font-weight: 600;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-orange {
  border-radius: 4px !important;
  background-color: #db631a !important;
  border: 1px solid #db631a !important;
  font-size: 12px !important;
  padding: 0 8px !important;
  color: #fff !important;
  width: 160px;
  height: 30px !important;
  font-weight: 600;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-reg-red {
  border-radius: 4px !important;
  background-color: #f00 !important;
  border: 1px solid #f00 !important;
  font-size: 12px !important;
  padding: 0 8px !important;
  color: #fff !important;
  width: 160px;
  height: 30px !important;
  font-weight: 600;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.image-container img {
  width: 100%;
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
  }
}

/* P styllings  */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.fw-400 {
  font-weight: 400;
}

.made_in_india {
  margin: 0;
  margin-right: 35px;
  font-size: 20px;
}
.selected-btn-light-blue {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #27a0df;
  background: #27a0df;
  color: white;
}

.selected-btn-orange {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #ff9c60;
  background: #ff9c60;
  color: white;
}

.selected-btn-light-orange {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #ff9c60;
  background: #ff9c60;
  color: white;
}
.selected-btn-blue {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #346ada;
  background: #346ada;
  color: white;
}
.selected-btn-green {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #a3c346;
  background: #a3c346;
  color: white;
}
.selected-btn-purple {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #4c3cce;
  background: #4c3cce;
  color: white;
}
.selected-btn-teal {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #1cc9e4;
  background: #1cc9e4;
  color: white;
}
.selected-btn-red {
  border: 2px solid white;
  box-shadow: 0 0 0 1px #ff4b4b;
  background: #ff4b4b;
  color: white;
}

.light-orange-backgorund {
  background: #fbf7f4;
}

iframe {
  height: 100%;
  width: 100%;
}
.postion-absolute {
  position: absolute;
}

.header-active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) !important;
}
.header-link {
  margin: auto 1.25rem;
  font-size: 14px;
  font-weight: 600;
  color: #28313b;
}

.full-screen {
  display: unset;
}

/* positioning styles */

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.d-none-imp {
  display: none !important;
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

.bold {
  font-weight: 600;
}

.grey-500 {
  color: #525a6a;
}

.grey-600 {
  color: #76797c;
}

.bottom-0 {
  bottom: 0;
}

.flex-50 {
  flex: 0 0 50%;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-flex-end {
  justify-content: flex-end;
}

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

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

.m-0 {
  margin: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-1 {
  margin-left: 1rem;
}
.ml-3 {
  margin-left: 3rem;
}
.ml-2 {
  margin-left: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-0-5 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mx-2 {
  margin: 2rem 0;
}

.my-1 {
  margin: 1rem 0;
}

.mr-1 {
  margin-right: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}
.pt-1 {
  padding-top: 1rem;
}
.mb-30 {
  margin-bottom: 30px;
}
.ml-15 {
  margin-left: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}

.py-1 {
  padding: 0 1rem;
}

.pl-3 {
  padding-left: 3rem;
}
.pl-5 {
  padding-left: 5rem;
}

.w-100 {
  width: 100%;
}
.w-95 {
  width: 95%;
}

/* content stylings */

.main-content {
  background-image: url(../webp/bg-landing.webp);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3.75rem;
}

/* .banner-container{
      background-image: url(../../static-assets/images/invoice-front-page.webp);
      background-size: 100%;
      background-repeat: no-repeat;
  } */

button {
  cursor: pointer;
}

.industry_btn {
  margin-right: 1.25rem;
  margin-top: 1rem;
  min-width: 150px;
  font-family: Source Sans Pro;
}

.testimonial-img {
  height: 15rem;
  width: 15rem;
  margin-right: 4.375rem;
}

.testimony_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Poppins";
}

.testimony_text {
  font-size: 23px;
}

.testimony_username {
  font-size: 23px;
  margin-top: 20px;
  font-style: italic;
}

.form-control {
  outline: none;
  display: block;
  /* width: 100%; */
  /* height: calc(1.5em + .75rem + 2px); */
  padding: 0.375rem 0.75rem;
  /* font-size: 18px; */
  font-weight: 400;
  line-height: 1.5;
  /* color: #495057; */
  background-color: #fff;
  background-clip: padding-box;
  /* border: 1px solid #ced4da; */
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.footer-nav {
  text-decoration: none;
  color: #222222;
}

.text-decoration-none {
  text-decoration: none;
}

#download-from-web {
  background: #28313b;
  border: 1px solid #28313b;
  border-radius: 4px;
  border: none;
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

.loading-spinner::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #ef7338;
  border-left-color: transparent;
  border-radius: 50%;
  animation: loading-spinner 1s linear infinite;
}

@keyframes loading-spinner {
  to {
    transform: rotate(1turn);
  }
}
/* mobile-content-stylings */

.overflow-auto {
  overflow: auto;
}

.mobile-main-container {
  height: 100%;
  overflow: auto;
}
.header-padding {
  padding: 0 1.6875rem;
}

.heading-text-bold {
  color: #ef7338;
  font-weight: 600;
}

.heading-text {
  font-family: "Poppins";
  font-size: 22px;
  font-weight: 400;
}
#maintenance-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 122;
  background-color: #ffffffd4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  flex-direction: column;
  text-align: center;
  font-family: sans-serif;
}
#maintenance-container .title {
  font-size: 35px;
  font-weight: 600;
  margin-top: 50px;
}
#maintenance-container .sub-title {
  font-size: 25px;
  margin-top: 16px;
}

.mt-26px {
  margin-top: 26px;
}

.m-footer-nav {
  text-decoration: none;
  color: #222222;
}

.m-download-app-btn-container {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.m-download-app-btn {
  display: flex;
  justify-content: center;
  color: white;
  font-family: Source Sans Pro;
  background: #ef7338;
  border-radius: 4px;
  width: 318px;
  height: 40px;
  border: none;
  align-items: center;
  font-size: 1rem;
}

.stats-container {
  height: 103px;
  border-bottom: 4px solid #ef7338;
  background: #fbf7f4;
}

.stat-item {
  margin: auto;
}

.stat-item-container {
  padding: 0 1rem;
}

.stats-title {
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 600;
  color: #ef7338;
}

.stats-sub-title {
  font-family: Source Sans Pro;
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}
.mobile-heading {
  line-height: 1.75rem;
  font-size: 2rem;
  padding: 0 1.6875rem;
  margin-top: 1.75rem;
  text-align: center;
}

.m-title-bold {
  font-weight: 600;
}

.m-title {
  font-size: 22px;
  font-family: "Poppins";
  text-align: center;
  padding: 0 2rem;
  font-weight: 400;
}
.title-center {
  font-size: 16px;
  font-family: "Poppins";
  text-align: center;
  padding: 0 2rem;
  font-weight: 400;
}
.m-feature-title {
  font-size: 12px;
  font-family: "Poppins";
  text-align: center;
  margin-top: 20px;
  padding: 0 0.5rem;
}

.m-feature-container {
  text-align: center;
  overflow: hidden;
  height: 539px;
}

.m-features {
  display: flex;
  flex-wrap: wrap;
  height: calc(100% - 3px);
  justify-content: center;
}

.m-feature {
  flex: 49%;
  border-bottom: 1px solid #d9d4d4;
  border-right: 1px solid #d9d4d4;
  height: 121px;
  padding: 29px 0;
}

.m-feat-image {
  height: 60px;
  margin-top: 0.5rem;
}

.m-industry_btn {
  margin-right: 0.5rem;
  margin-top: 1rem;
  border: none;
  border-radius: 100px;
  height: 43px;
  color: #28313b;
  font-size: 15px;
  font-family: "Poppins";
  font-weight: 600;
  padding: 0 1rem;
}

.m-selected-btn-blue {
  border: 2px solid #4c7bbd;
  background: #dceafe;
  height: 41px;
}

.m-selected-btn-orange {
  background: #ffefe4;
  border: 2px solid #d36010;
  height: 41px;
}

.m-selected-btn-yellow {
  background: #fff7e8;
  border: 2px solid #ba9653;
  height: 41px;
}
.m-selected-btn-green {
  background: #d8f4da;
  border: 2px solid #4ac953;
  height: 41px;
}
.m-selected-btn-purple {
  background: #ebd8f4;
  border: 2px solid #75269a;
  height: 41px;
}
.m-selected-btn-teal {
  background: #e2fbff;
  border: 2px solid #26a2b5;
  height: 41px;
}
.m-selected-btn-red {
  background: #ffeceb;
  border: 2px solid #d57b77;
  height: 41px;
}

.m-btn-blue {
  background: #dceafe;
}
.m-btn-orange {
  background: #ffefe4;
}
.m-btn-yellow {
  background: #fff7e8;
}
.m-btn-green {
  background: #d8f4da;
}
.m-btn-purple {
  background: #ebd8f4;
}
.m-btn-teal {
  background: #e2fbff;
}
.m-btn-red {
  background: #ffeceb;
}

.m-testimonial-container {
  display: flex;
  overflow-x: auto;
}

.m-testimony-card {
  min-width: 290px;
  height: 370px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  text-align: center;
  width: 290px;
  margin-right: 0.675rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.m-testimony-img {
  height: 149px;
  width: 149px;
  margin-top: 0.5rem;
}

.m-testimony-industry {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
}

.m-testimony-text {
  font-size: 12px;
  padding: 0.25rem;
  line-height: 20px;
}
.m-testimony-personal {
  font-size: 12px;
  padding: 0.25rem;
  line-height: 20px;
  font-weight: 600;
}

.m-group-card {
  display: flex;
  justify-content: space-between;
  box-shadow: 1px 2px 4px 1px #00000040;
  margin-bottom: 1rem;
  border-radius: 4px;
  align-items: center;
}

.m-group-title {
  font-size: 16px;
  font-weight: 600;
  padding-left: 1rem;
  font-family: "Poppins";
}

.m-group-img {
  height: 80px;
  width: 100px;
}

.m-query-card {
  border: 1px solid #d9d4d4;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.8s;
  transition: max-height 0.5s ease;
}

.m-query-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-query-title {
  font-size: 14px;
}

.m-query-icon {
  width: 10px;
  height: 6px;
}

.m-query-text {
  font-size: 14px;
  margin-top: 1rem;
}

.mh-4 {
  max-height: 4rem;
}

.mh-100 {
  max-height: 100rem;
}

.m-footer-container {
  padding: 1rem;
  padding-bottom: 6rem;
  background: #fbf7f4;
}

.m-imp-links {
  display: flex;
  justify-content: space-between;
}

.m-links-section {
  flex: 0 0 45%;
}

.m-footer-title {
  font-weight: 600;
  font-size: 20px;
  margin-top: 1.5rem;
  color: #db631a;
}

.m-links-section a {
  font-size: 14px;
}

.m-social-media {
  display: flex;
  margin-top: 10px;
}

.m-email {
  font-size: 16px;
}

.m-contact-no {
  font-size: 26px;
  margin-top: 0.25rem;
}

.m-product-by {
  margin: 1rem 0;
  font-weight: 600;
  font-size: 18px;
}

.m-whatsapp {
  display: flex;
  background: #e7f4f2;
  align-items: center;
  height: 40px;
  width: 138px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 11px;
  color: #128c7e;
  justify-content: space-around;
  margin-top: 25px;
}

.m-chat {
  display: flex;
  background: #eaf1ff;
  align-items: center;
  height: 40px;
  width: 160px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 11px;
  color: #488dff;
  margin-top: 25px;
  margin-left: 10px;
}

.m-social-media a {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 16%);
  cursor: pointer;
  background: white;
}

.footer-download-btn-container {
  position: absolute;
  bottom: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 7px 0px #d6d6d6;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.position-absolute {
  position: absolute;
}

.single-line {
  white-space: nowrap;
  max-width: 490;
}

.font-weight-600 {
  font-weight: 600;
}

.login-container {
  height: 100%;
  width: 100%;
}

.register-container {
  flex: 0 0 30%;
  position: relative;
}

.login-icon-container {
  position: absolute;
  padding-top: 40px;
  padding-right: 45px;
}

.mobile-view {
  display: none;
}

.mt-29 {
  margin-top: 29px;
}

.font-black {
  color: #222222;
}

.font-20 {
  font-size: 20px;
}

/* download modal styling */

.download-app-modal-container {
  width: 575px;
  height: calc;
  min-height: calc(100% - 3rem);
  overflow: auto;
  display: flex;
  align-items: center;
}

.download-app-modal-content {
  background: white;
  border-radius: 0.3rem;
}

.download-app-modal-body {
  padding-bottom: 1.5rem;
}
.download-app-modal-image-container {
  position: relative;
}
.download-app-modal-image {
  width: 575px;
}

.download-app-modal-login {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.download-app-modal-title {
  padding: 1.5rem;
  font-size: 18px;
  font-family: "Poppins";
  color: #28313b;
}
.download-app-modal-sub-title {
  padding: 0 1.5rem;
  padding-bottom: 0.6rem;
  line-height: 18px;
  font-size: 14px;
  color: #767587;
}
.download-app-modal-feature-cont {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}

.download-app-modal-feature {
  flex: 0 0 50%;
  display: flex;
  margin-bottom: 10px;
}
.download-app-modal-feature-img {
  height: 15px;
  margin-top: 2px;
}

.download-app-modal-feature-txt {
  margin: 0;
  margin-left: 0.325rem;
  font-size: 12px;
  color: #212529;
}

.download-app-modal-action-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.download-app-modal-input-button-container {
  width: 532px;
  position: relative;
  height: 40px;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 13%);
  margin-top: 35px;
  border-radius: 0.25rem;
}

.download-app-modal-input-button {
  height: 26px;
  border: 1px solid #d9d4d4;
  width: 474px;
  font-family: Source Sans Pro !important;
  font-size: 1rem;
  color: #495057;
}

.download-app-modal-button {
  position: absolute;
  width: 180px !important;
  top: 5px;
  right: 10px;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  border: 1px solid #4c3cce;
  background: #4c3cce !important;
  border-color: #4c3cce !important;
  padding: 0 8px !important;
  height: 29px !important;
  color: white;
  font-family: "Source Sans Pro";
}
.height-28 {
  height: 28px;
}

.feature-image-container {
  height: 100px;
  display: flex;
}

.lh-2 {
  line-height: 2rem;
}

.mobile-landing-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: -0.75rem;
}

.rotate-270 {
  transform: rotate(270deg);
}

/* download modal styling - Ending */

/* mobile-content-stylings */

/* media queries */
@media screen and (max-width: 640px) {
  #pricing-container {
    display: none;
  }
  #accounting-container {
    display: none;
  }
  .mobile-view {
    display: unset;
  }
}

/* animations */

.cssanimation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInBottom {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
a {
  text-decoration: none;
}

@keyframes fadeinBottom {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Query Styles */
.query-card {
  border: 1px solid #d9d4d4;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.8s;
  transition: max-height 0.5s ease;
}
.query-card {
  border: 1px solid #d9d4d4;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.8s;
  transition: max-height 0.5s ease;
}

.query-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.query-title {
  font-size: 20px;
}

.query-icon {
  width: 10px;
  height: 6px;
}

.query-text {
  font-size: 20px;
  margin-top: 1rem;
  width: 95%;
}

#common-queries {
  width: 90%;
}

.view-more {
  cursor: pointer;
  width: 90%;
  text-align: center;
  border: 1px solid #d9d4d4;
  border-radius: 5px;
  font-size: small;
  color: #488dff;
  height: 20px;
  padding: 5px 0px;
}
.view-more-red {
  cursor: pointer;
  margin-top: 50px;
  width: 91%;
  text-align: center;
  border: 1px;
  border-radius: 5px;
  font-size: small;
  color: #db631a;
  height: 20px;
  background-color: rgba(219, 99, 26, 0.1);
  padding: 5px 0px;
}

@media screen and (min-width: 641px) {
  .customer-groups {
    padding-top: 70px;
    padding-left: 90px;
  }

  .title {
    font-size: 36px;
    font-family: "Poppins";
  }
}