@import url("https://fonts.googleapis.com/css2?family=Kadwa:wght@400;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");

/* ------------font import--------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Poppins:wght@300&display=swap");

@import url("components/demo-analytics-popup.css?v=1");

html {
  scroll-behavior: smooth;
}

* {}

body.app {
  width: 100%;
  height: 100%;
  font-family: Lato, sans-serif !important;
  background-color: #f7f7f7 !important;
}

body:not(.app) {
  min-height: 100vh;
  overflow-y: scroll;
}

.app-container {}

.app-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--gray-100);
  z-index: 100;
  opacity: 0.5;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  /* min-width: 265px;
	max-width: 265px; */
  min-width: 300px;
  max-width: 300px;
  background: var(--white);
  /* border-right: 2px solid var(--gray-200); */
  margin-left: -300px;
  transition: margin 0.15s linear;
  overflow-y: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 101;
}

[dir="rtl"] .app-sidebar {
  margin-left: initial;
  left: initial;
  right: 0;
  margin-right: -266px;
}

[dir="rtl"] [data-theme-style="dark"] .app-sidebar {
  border-right: 0;
  border-left: 2px solid var(--gray-200);
}

body.app-sidebar-opened .app-sidebar {
  margin-left: 0;
}

[dir="rtl"] body.app-sidebar-opened .app-sidebar {
  margin-right: 0;
}

@media (min-width: 992px) {
  .app-sidebar {
    margin-left: 0;
  }

  [dir="rtl"] .app-sidebar {
    margin-right: 0;
  }
}

.app-sidebar-title {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: .5rem;
	height: 75px; */
  padding-top: 10px;
  margin-bottom: 20px;
  min-height: 70px;
}

.app-sidebar-title a {
  /* font-size: 1.4rem; */
  font-size: 22px;
  line-height: 23px;
  color: var(--gray-900);
  font-weight: 600;
  text-decoration: none;
}

.app-sidebar-title a:hover {
  text-decoration: none;
}

.app-sidebar-footer {
  width: 100%;
  padding: 0 20px 36px 20px;
  margin-top: auto;
}

.app-sidebar-footer>a {
  width: 100%;
  padding: 0.75rem 1.75rem;
  border-top: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s;
}

.app-sidebar-footer>a:hover {
  text-decoration: none;
  background: var(--gray-200);
  color: var(--gray-600);
}

.app-sidebar-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  margin-top: 5px;
}

.app-sidebar-links>li {
  width: 100%;
  /* padding: 0.25rem 0.75rem 0.5rem 0.75rem; */
  padding: 2px 0;
  margin-top: 4px;
  min-height: 45px;
}

.app-sidebar-links>li:first-child {
  margin-top: 0;
}

.app-sidebar-links>li>a {
  width: 100%;

  display: flex;
  align-items: center;
  color: #220e27;
  border-radius: 0;
  padding: 8px 16px;
  transition: background 0.3s;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  opacity: 0.3;
  text-decoration: none;
}

.app-sidebar-links>li>a>i,
.app-sidebar-links>li>a>svg {
  margin-right: 12px;
}

.app-sidebar-links li.active a svg {
  color: #0047ff;
}

.app-sidebar-links>li>a:hover {
  text-decoration: none;
  /* background: var(--gray-200); */
  opacity: 0.7;
}

[data-theme-style="dark"] .app-sidebar-links>li>a:hover {
  /* background: var(--gray-100); */
  color: var(--gray-800);
}

.app-sidebar-links>li.active>a {
  /* background: var(--gray-200); */
  /* color: var(--gray-800);
	font-weight: 500; */
  opacity: 1;
}

[data-theme-style="dark"] .app-sidebar-links>li.active>a {
  /* background: var(--gray-100); */
  color: var(--gray-800);
}

.app-sidebar-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.app-sidebar-footer-block {
  max-width: 100%;
  padding-left: 2px;
}

.app-sidebar-footer-text {
  color: var(--gray-600);
}

.app-sidebar-footer-text small {
  font-size: 14px;
  line-height: 16px;

  font-weight: 400;
  margin-left: 5px;
  color: #220e27;
}

.app-content {
  /* background: var(--gray-50); */
  background: #f7f7f7;
  margin-left: 0;
  flex-grow: 1;
}

[dir="rtl"] .app-content {
  margin-left: initial;
  margin-right: 0;
}

@media (min-width: 992px) {
  .app-content {
    margin-left: 250px;
    /* min-height: 100vh; */
  }

  [dir="rtl"] .app-content {
    margin-left: initial;
    /* margin-right: 265px; */
    margin-right: 207px;
  }
}

.app-navbar {
  /* min-height: 75px; */
  border-bottom: 2px solid var(--gray-200);
}

[data-theme-style="dark"] .app-navbar {
  border-color: var(--gray-200);
}

[data-theme-style="dark"] .app-navbar {
  border-color: var(--gray-200);
}

.dropdown-item svg {
  color: var(--gray-600);
}

.dropdown-item:active svg {
  color: var(--white);
}

/* QR codes */

.qr-code {
  width: 100rem;
}

.qr-code-loading {
  animation: opacity-loading 3s infinite ease-in-out;
}

@keyframes opacity-loading {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.qr-code-avatar {
  width: 65px;
  height: 65px;
  border-radius: 0.25rem;
  padding: 0.25rem;
  border: 2px solid #ff9b06;
}

/* Footer */

footer * {
  /* border: 2px solid red; */
  font-family: "Lato", sans-serif;
  /* font-weight: bold; */
}

footer .footer_image {
  width: 70px !important;
}

footer h3 {
  font-family: "Lato", sans-serif;
  font-size: 24px;
}

footer .btn {
  background-color: #fff;
  border: none;
  color: black;
  font-family: "Lato", sans-serif;
  float: right;
  width: 200px;
  height: 75px;
}

footer .btn:hover {
  background-color: #ff9b06;
  transition: 0.3s;
}

footer .hr {
  border: 1px solid #ffffff60;
}

footer .hr-light {
  border: 1px solid #60606060;
}

footer a {
  font-size: 15px;
  pointer-events: auto;
}

footer .footer-section h6 {
  font-size: 15px !important;
}

.mobile_button_area {
  display: none;
}

footer .mobile_button_area span {
  float: right !important;
}

footer .mobile_hr {
  border: 1px solid #ffffff4f;
  width: 92%;
  margin: auto;
  display: none;
}

footer .ul_list {
  padding-top: 15px;
  display: block;
}

footer .list_item {
  margin-bottom: 15px;
  pointer-events: none;
}

footer .fa-minus {
  display: none;
}

.menu-icon,
.menu-icon2,
.menu-icon3,
.menu-icon4 {
  pointer-events: none;
}

@media (min-width: 990px) {
  footer .footer_menu_row {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  footer .ul_list {
    padding-top: 15px;
    display: block !important;
  }
}

@media (max-width: 990px) {
  footer .ul_list {
    display: none;
  }

  footer .footer_image {
    float: left;
  }

  footer .mobile_hr {
    display: flex;
  }

  footer .footer_menu_row {
    padding-left: 0px !important;
  }

  footer .footer-section {
    margin-left: 6%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
  }

  footer .footer-section-image {
    margin-left: 3%;
    margin-top: 0px;
    margin-bottom: 2.5%;
  }

  footer .mobile_button_area {
    display: flex;
  }

  .menu-icon,
  .menu-icon2,
  .menu-icon3,
  .menu-icon4 {
    pointer-events: auto;
  }

  footer .last_hr {
    display: none;
  }

  footer .ul_list {
    padding-top: 5px;
  }

  footer .list_item {
    margin-top: 1%;
    width: max-content;
  }
}

@media (max-width: 770px) {
  footer .btn {
    float: none;
    margin-top: 10px;
    width: 100%;
    height: 65px !important;
  }

  footer h3 {
    font-size: 20px;
  }

  footer .ul_list {
    padding-top: 5px;
  }

  footer .list_item {
    margin-top: 1%;
  }
}

@media (max-width: 576px) {
  footer .footer-section h6 {
    text-align: left;
  }

  .triel-des .bil-des1 br {
    display: block !important;
  }
}

/* footer .button_register {
} */

/* .app-footer {
    margin-top: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 2px solid var(--gray-200);
    font-size: .95rem;
}

.app-footer {
    color: var(--gray-600);
}

.app-footer a:not(.dropdown-item),
.app-footer a:hover:not(.dropdown-item) {
    color: var(--gray-600);
}

.app-footer a.icon {
    color: var(--gray-600);
}

.app-footer button,
.app-footer button:hover {
    color: var(--gray-600);
} */

/* Filters */

.filters-dropdown {
  width: 18rem;
  max-height: 30rem;
  overflow-y: auto;
}

canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.modal-header {
  padding: 1rem;
  border-bottom: 0;
}

.modal-subheader {
  padding: 0 1rem;
  border-bottom: 0;
  margin: 0;
}

.modal-content {
  padding: 1rem;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* Report page */

.report-search-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.report-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.report-example-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

/* Forms */

.input-group-text {
  font-size: 0.9rem;
}

/* Custom breadcrumbs */

.custom-breadcrumbs {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.custom-breadcrumbs>li {
  margin-right: 0.5rem;
}

.custom-breadcrumbs>li>a {
  color: var(--gray);
}

.custom-breadcrumbs>li>svg {
  color: var(--gray-400);
  margin-left: 0.5rem;
}

.custom-breadcrumbs>li.active {}

/* Helper classes */

.cursor-grab {
  cursor: grab !important;
}

.list-style-none {
  list-style: none;
  padding: 0;
}

.appearance-none {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.select-custom-altum {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%232D3748' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  background-color: var(--gray-100);
  height: 100%;
}

.clickable {
  cursor: pointer;
}

.icon-favicon {
  width: 1rem;
  height: auto;
}

/* Navbar custom menu */

.navbar-nav>li {
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.navbar-avatar {
  width: 20px;
  height: 20px;
  border-radius: 0;
}

.chart-container {
  position: relative;
  margin: auto;
  height: 275px;
  width: 100%;
}

/* Video Changes */
.video_preview div.afterImage-upload:last-child .videoActionButtons div button.video-order-down,
.video_preview div.afterImage-upload:first-child .videoActionButtons div button.video-order-up {
  pointer-events: none;
  opacity: 0.5;
}

/* Video Changes */

/* Index */

.index-background {
  background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZGF0YS1uYW1lPSJMYXllciAyIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTTggOGgzdjNIOHpNMTQgMTRoMnYyaC0yek04IDEzdjMiIHN0cm9rZT0iI2Y2ZjdmOSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBjbGFzcz0ic3Ryb2tlLTAwMDAwMCBzdHJva2UtZjVmNWY1Ij48L3BhdGg+PHBhdGggZD0iTTEwIDEzdjNoMnYtNGg0TTE2IDEwaC0zVjhoM004IDVINmExIDEgMCAwIDAtMSAxdjJNMTYgNWgyYTEgMSAwIDAgMSAxIDF2Mk0xOSAxNnYyYTEgMSAwIDAgMS0xIDFoLTJNOCAxOUg2YTEgMSAwIDAgMS0xLTF2LTIiIHN0cm9rZT0iI2Y2ZjdmOSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBjbGFzcz0ic3Ryb2tlLTAwMDAwMCBzdHJva2UtZjVmNWY1Ij48L3BhdGg+PC9nPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

[data-theme-style="dark"] .index-background {
  background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZGF0YS1uYW1lPSJMYXllciAyIj48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIj48L3BhdGg+PHBhdGggZD0iTTggOGgzdjNIOHpNMTQgMTRoMnYyaC0yek04IDEzdjMiIHN0cm9rZT0iIzBhMGMxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBjbGFzcz0ic3Ryb2tlLTAwMDAwMCBzdHJva2UtZjVmNWY1Ij48L3BhdGg+PHBhdGggZD0iTTEwIDEzdjNoMnYtNGg0TTE2IDEwaC0zVjhoM004IDVINmExIDEgMCAwIDAtMSAxdjJNMTYgNWgyYTEgMSAwIDAgMSAxIDF2Mk0xOSAxNnYyYTEgMSAwIDAgMS0xIDFoLTJNOCAxOUg2YTEgMSAwIDAgMS0xLTF2LTIiIHN0cm9rZT0iIzBhMGMxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBmaWxsPSJub25lIiBjbGFzcz0ic3Ryb2tlLTAwMDAwMCBzdHJva2UtZjVmNWY1Ij48L3BhdGg+PC9nPjwvc3ZnPg==");
}

.index-header {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--primary);
}

.index-subheader {
  font-size: 1.45rem;
  color: var(--gray-700);
}

.index-button {
  padding: 0.8rem 4rem;
  font-size: 1.1rem;
}

.index-card-image {
  width: auto;
  height: 10rem;
  object-fit: contain;
}

/* Header container */

.user-avatar {
  border-radius: 50%;
  max-width: 70px;
  max-height: 70px;
}

/* Others */

.container-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* .container{
	margin-top: 25px !important;
} */

.container-disabled-simple {
  pointer-events: none;
}

/* Tables */

.table-custom-container {
  border-radius: 0;
  border: 2px solid var(--gray-200);
}

.table-custom {
  margin-bottom: 0;
  background: var(--white);
}

.table-custom thead th {
  border-top: 0;
  border-bottom: 0;
  color: var(--gray);
}

.table-custom th {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

[data-theme-style="dark"] .table-custom thead th {
  color: var(--gray-800);
}

.table-custom td {
  padding: 1.25rem 1.25rem;
  vertical-align: middle;
}

.table-custom tbody tr td {
  border-top: 1px solid var(--gray-200);
}

[data-theme-style="dark"] .table-custom tbody tr td {
  border-color: var(--gray-200);
}

.table-custom tbody tr {
  transition: all 0.3s ease-in-out;
}

.table-custom tbody tr:hover td {}

/* Custom Radio Boxes */

.custom-radio-box {
  cursor: pointer;
}

.custom-radio-box .custom-radio-box-main-text {
  font-size: 1.15rem;
  font-weight: bold;
}

.custom-radio-box .custom-radio-box-main-icon {
  font-size: 1.25rem;
}

.custom-radio-box input[type="radio"]+div {
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--gray-200);
  background: var(--white);
}

.custom-radio-box input[type="radio"]:checked+div {
  border: 2px solid var(--primary);
}

.custom-radio-box input[type="radio"]:hover+div {
  border: 2px solid var(--primary);
}

/* Round circles */

.round-circle-md {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.round-circle-lg {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Badge colors */

.badge-primary {
  color: hsl(211, 100%, 35%);
  background-color: hsl(211, 100%, 85%);
}

[data-theme-style="dark"] .badge-primary {
  background-color: hsl(211, 100%, 35%);
  color: hsl(211, 100%, 85%);
}

.badge-secondary {
  color: hsl(208, 7%, 35%);
  background-color: hsl(208, 7%, 85%);
}

[data-theme-style="dark"] .badge-secondary {
  background-color: hsl(208, 7%, 35%);
  color: hsl(208, 7%, 85%);
}

.badge-success {
  color: hsla(134, 50%, 30%, 1);
  background-color: hsla(134, 50%, 85%, 1);
}

[data-theme-style="dark"] .badge-success {
  background-color: hsla(134, 50%, 30%, 1);
  color: hsla(134, 50%, 85%, 1);
}

.badge-danger {
  color: hsla(354, 70%, 35%, 1);
  background-color: hsla(354, 70%, 85%, 1);
}

[data-theme-style="dark"] .badge-danger {
  background-color: hsla(354, 70%, 35%, 1);
  color: hsla(354, 70%, 85%, 1);
}

.badge-warning {
  background-color: hsla(45, 100%, 85%, 1);
  color: hsla(40, 80%, 30%, 1);
}

[data-theme-style="dark"] .badge-warning {
  background-color: hsla(50, 20%, 20%, 1);
  color: hsla(45, 100%, 85%, 1);
}

.badge-info {
  color: hsla(188, 60%, 30%, 1);
  background-color: hsla(188, 78%, 85%, 1);
}

[data-theme-style="dark"] .badge-info {
  background-color: hsla(188, 60%, 30%, 1);
  color: hsla(188, 78%, 85%, 1);
}

.badge-light {
  color: hsla(210, 15%, 35%, 1);
  background-color: hsl(210, 17%, 95%);
}

[data-theme-style="dark"] .badge-light {
  background-color: hsla(210, 15%, 35%, 1);
  color: hsl(210, 17%, 95%);
}

.badge-dark {
  color: hsla(210, 10%, 90%, 1);
  background-color: hsla(210, 10%, 20%, 1);
}

[data-theme-style="dark"] .badge-dark {
  background-color: hsla(210, 10%, 90%, 1);
  color: hsla(210, 10%, 20%, 1);
}

/* Invoice css */

.invoice-table th {
  border-top: 0 !important;
}

@media print {
  .invoice-logo {
    filter: grayscale(100%);
  }
}

/* Base animation */

.altum-animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.altum-animate-fill-both {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.altum-animate-fill-none {
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.altum-animate-fade-in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.alert-success {
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  opacity: 1;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.alert-success {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

/* Opacity */

.opacity-50 {
  opacity: 50;
}

.opacity-75 {
  opacity: 75;
}

.social-icon-heading {
  text-transform: capitalize;
}

.custom-accodian .collapseInner .form-control.social-error {
  border-color: red;
}

.error-label {
  color: red;
  font-size: 13px;
  padding-top: 10px;
  padding-left: 10px;
}

/* App sub menu */

.account-header-navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
  margin: 0 0 1.5rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 0.25rem;
}

@media (min-width: 992px) {
  .account-header-navbar {
    flex-direction: row;
  }
}

.account-header-navbar .nav-item {
  margin-bottom: 0.5rem;
  min-width: fit-content;
}

.account-header-navbar .nav-link {
  padding: 0.5rem 1.5rem;
  color: var(--gray-500);
  border-radius: 0;
  border: 2px solid var(--gray-200);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  transition: background 0.3s;
}

.account-header-navbar .nav-link:hover {
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
  background: var(--gray-200);
}

.account-header-navbar .nav-link.active {
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
  background: var(--gray-200);
}

/* Blog */

.blog-post-image {
  max-height: 25rem;
  object-fit: cover;
}

/* File input */

.altum-file-input {
  padding: 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  font-size: 0.9rem;
}

.altum-file-input:hover {
  border-color: var(--gray-300);
}

.altum-file-input::file-selector-button {
  border: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
  background-color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  margin-right: 1rem;
}

@media (min-width: 960px) {
  /* .jss1459 {
    width: 178px;
    height: 216px;
    padding: 20px 16px;
  } */
}

button {
  border: 0;
  cursor: pointer;
  outline: 0;
  padding: 0;
  font-size: inherit;
  background: transparent;
  box-sizing: border-box;
}

.jss1348 {
  flex: 1;
  display: flex;
  background-color: #f7f7f7;
}

@media (min-width: 960px) {
  .jss1349 {
    margin-top: 24px;
    width: 65.16%;
    justify-content: flex-end;
  }
}

/* new */

.MuiSvgIcon-root {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 1.5rem;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  flex-shrink: 0;
  user-select: none;
}

.MuiSvgIcon-colorPrimary {
  color: #000;
}

.MuiSvgIcon-colorSecondary {
  color: var(--brand-color-primary-light); 
}

.MuiSvgIcon-colorAction {
  color: rgba(0, 0, 0, 0.54);
}

.MuiSvgIcon-colorError {
  color: #d5496c;
}

.MuiSvgIcon-colorDisabled {
  color: rgba(0, 0, 0, 0.26);
}

.MuiSvgIcon-fontSizeInherit {
  font-size: inherit;
}

.MuiSvgIcon-fontSizeSmall {
  font-size: 1.25rem;
}

.MuiSvgIcon-fontSizeLarge {
  font-size: 2.1875rem;
}

.MuiTouchRipple-root {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.MuiTouchRipple-ripple {
  opacity: 0;
  position: absolute;
}

.MuiTouchRipple-rippleVisible {
  opacity: 0.3;
  animation: MuiTouchRipple-keyframes-enter 550ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.MuiTouchRipple-ripplePulsate {
  animation-duration: 200ms;
}

.MuiTouchRipple-child {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  border-radius: 50%;
  background-color: currentColor;
}

.MuiTouchRipple-childLeaving {
  opacity: 0;
  animation: MuiTouchRipple-keyframes-exit 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

.MuiTouchRipple-childPulsate {
  top: 0;
  left: 0;
  position: absolute;
  animation: MuiTouchRipple-keyframes-pulsate 2500ms cubic-bezier(0.4, 0, 0.2, 1) 200ms infinite;
}

@-webkit-keyframes MuiTouchRipple-keyframes-enter {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }

  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

@-webkit-keyframes MuiTouchRipple-keyframes-exit {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes MuiTouchRipple-keyframes-pulsate {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.92);
  }

  100% {
    transform: scale(1);
  }
}

.MuiButtonBase-root {
  color: inherit;
  border: 0;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  outline: 0;
  padding: 0;
  position: relative;
  align-items: center;
  user-select: none;
  border-radius: 0;
  vertical-align: middle;
  -moz-appearance: none;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.MuiButtonBase-root::-moz-focus-inner {
  border-style: none;
}

.MuiButtonBase-root.Mui-disabled {
  cursor: default;
  pointer-events: none;
}

@media print {
  .MuiButtonBase-root {
    -webkit-print-color-adjust: exact;
  }
}

.MuiTypography-root {
  margin: 0;
}

.MuiTypography-body2 {
  font-size: 0.875rem;

  font-weight: 400;
  line-height: 1.43;
}

.MuiTypography-body1 {
  font-size: 1rem;

  font-weight: 400;
  line-height: 1.5;
}

.MuiTypography-caption {
  font-size: 0.75rem;

  font-weight: 400;
  line-height: 1.66;
}

.MuiTypography-button {
  font-size: 0.875rem;

  font-weight: 500;
  line-height: 1.75;
  text-transform: uppercase;
}

.MuiTypography-h1 {
  font-size: 6rem;

  font-weight: 300;
  line-height: 1.167;
}

.MuiTypography-h2 {
  font-size: 3.75rem;

  font-weight: 300;
  line-height: 1.2;
}

.MuiTypography-h3 {
  font-size: 3rem;

  font-weight: 400;
  line-height: 1.167;
}

.MuiTypography-h4 {
  font-size: 2.125rem;

  font-weight: 400;
  line-height: 1.235;
}

.MuiTypography-h5 {
  font-size: 1.5rem;

  font-weight: 400;
  line-height: 1.334;
}

.MuiTypography-h6 {
  font-size: 1.25rem;

  font-weight: 500;
  line-height: 1.6;
}

.MuiTypography-subtitle1 {
  font-size: 1rem;

  font-weight: 400;
  line-height: 1.75;
}

.MuiTypography-subtitle2 {
  font-size: 0.875rem;

  font-weight: 500;
  line-height: 1.57;
}

.MuiTypography-overline {
  font-size: 0.75rem;

  font-weight: 400;
  line-height: 2.66;
  text-transform: uppercase;
}

.MuiTypography-srOnly {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.MuiTypography-alignLeft {
  text-align: left;
}

.MuiTypography-alignCenter {
  text-align: center;
}

.MuiTypography-alignRight {
  text-align: right;
}

.MuiTypography-alignJustify {
  text-align: justify;
}

.MuiTypography-noWrap {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.MuiTypography-gutterBottom {
  margin-bottom: 0.35em;
}

.MuiTypography-paragraph {
  margin-bottom: 16px;
}

.MuiTypography-colorInherit {
  color: inherit;
}

.MuiTypography-colorPrimary {
  color: #1d59f9;
}

.MuiTypography-colorSecondary {
  color: var(--brand-color-primary-light);
}

.MuiTypography-colorTextPrimary {
  color: rgba(0, 0, 0, 0.87);
}

.MuiTypography-colorTextSecondary {
  color: rgba(0, 0, 0, 0.54);
}

.MuiTypography-colorError {
  color: #d5496c;
}

.MuiTypography-displayInline {
  display: inline;
}

.MuiTypography-displayBlock {
  display: block;
}

.MuiIconButton-root {
  flex: 0 0 auto;
  color: rgba(0, 0, 0, 0.54);
  padding: 12px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50%;
}

.MuiIconButton-root:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.MuiIconButton-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}

@media (hover: none) {
  .MuiIconButton-root:hover {
    background-color: transparent;
  }
}

.MuiIconButton-edgeStart {
  margin-left: -12px;
}

.MuiIconButton-sizeSmall.MuiIconButton-edgeStart {
  margin-left: -3px;
}

.MuiIconButton-edgeEnd {
  margin-right: -12px;
}

.MuiIconButton-sizeSmall.MuiIconButton-edgeEnd {
  margin-right: -3px;
}

.MuiIconButton-colorInherit {
  color: inherit;
}

.MuiIconButton-colorPrimary {
  color: #1d59f9;
}

.MuiIconButton-colorPrimary:hover {
  background-color: rgba(29, 89, 249, 0.04);
}

@media (hover: none) {
  .MuiIconButton-colorPrimary:hover {
    background-color: transparent;
  }
}

.MuiIconButton-colorSecondary {
  color:  var(--brand-color-primary-light);
}

.MuiIconButton-colorSecondary:hover {
  background-color: rgba(105, 223, 106, 0.04);
}

@media (hover: none) {
  .MuiIconButton-colorSecondary:hover {
    background-color: transparent;
  }
}

.MuiIconButton-sizeSmall {
  padding: 3px;
  font-size: 1.125rem;
}

.MuiIconButton-label {
  width: 100%;
  display: flex;
  align-items: inherit;
  justify-content: inherit;
}

.MuiPaper-root {
  color: #220e27;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  background-color: #fff;
}

.MuiPaper-rounded {
  border-radius: 4px;
}

.MuiPaper-outlined {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation0 {
  box-shadow: none;
}

.MuiPaper-elevation1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.MuiPaper-elevation24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.MuiDrawer-docked {
  flex: 0 0 auto;
}

.MuiDrawer-paper {
  top: 0;
  flex: 1 0 auto;
  height: 100%;
  display: flex;
  outline: 0;
  z-index: 1200;
  position: fixed;
  overflow-y: auto;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

.MuiDrawer-paperAnchorLeft {
  left: 0;
  right: auto;
}

.MuiDrawer-paperAnchorRight {
  left: auto;
  right: 0;
}

.MuiDrawer-paperAnchorTop {
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  height: auto;
  max-height: 100%;
}

.MuiDrawer-paperAnchorBottom {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  max-height: 100%;
}

.MuiDrawer-paperAnchorDockedLeft {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.MuiDrawer-paperAnchorDockedTop {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.MuiDrawer-paperAnchorDockedRight {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.MuiDrawer-paperAnchorDockedBottom {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.jss441 {
  color: #220e27;
  width: 244px;
  display: flex;
  padding: 16px 0 0 32px;
  border-right: 0;
  flex-direction: column;
  background-color: #fff;
}

@media (min-width: 960px) {
  .jss441 {
    width: 207px;
    padding: 24px 0 0 32px;
  }
}

.MuiSnackbar-root {
  left: 8px;
  right: 8px;
  display: flex;
  z-index: 1400;
  position: fixed;
  align-items: center;
  justify-content: center;
}

.MuiSnackbar-anchorOriginTopCenter {
  top: 8px;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginTopCenter {
    top: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.MuiSnackbar-anchorOriginBottomCenter {
  bottom: 8px;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginBottomCenter {
    left: 50%;
    right: auto;
    bottom: 24px;
    transform: translateX(-50%);
  }
}

.MuiSnackbar-anchorOriginTopRight {
  top: 8px;
  justify-content: flex-end;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginTopRight {
    top: 24px;
    left: auto;
    right: 24px;
  }
}

.MuiSnackbar-anchorOriginBottomRight {
  bottom: 8px;
  justify-content: flex-end;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginBottomRight {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}

.MuiSnackbar-anchorOriginTopLeft {
  top: 8px;
  justify-content: flex-start;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginTopLeft {
    top: 24px;
    left: 24px;
    right: auto;
  }
}

.MuiSnackbar-anchorOriginBottomLeft {
  bottom: 8px;
  justify-content: flex-start;
}

@media (min-width: 660px) {
  .MuiSnackbar-anchorOriginBottomLeft {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}

.MuiButton-root {
  color: rgba(0, 0, 0, 0.87);
  height: 56px;
  padding: 6px 16px;
  position: relative;
  font-size: 18px;
  min-width: 64px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;

  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  text-transform: none;
}

.MuiButton-root:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.04);
}

.MuiButton-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
}

@media (max-width: 1279.95px) {
  .MuiButton-root {
    height: 48px;
    font-size: 15px;
  }
}

@media (hover: none) {
  .MuiButton-root:hover {
    background-color: transparent;
  }
}

.MuiButton-root:hover.Mui-disabled {
  background-color: transparent;
}

.MuiButton-label {
  width: 100%;
  display: flex;
  align-items: inherit;
  justify-content: inherit;
  font-weight: 600;
}

.MuiButton-text {
  padding: 6px 8px;
}

.MuiButton-textPrimary {
  color: #1d59f9;
}

.MuiButton-textPrimary:hover {
  background-color: rgba(29, 89, 249, 0.04);
}

@media (hover: none) {
  .MuiButton-textPrimary:hover {
    background-color: transparent;
  }
}

.MuiButton-textSecondary {
  color:  var(--brand-color-primary-light);
}

.MuiButton-textSecondary:hover {
  background-color: rgba(105, 223, 106, 0.04);
}

@media (hover: none) {
  .MuiButton-textSecondary:hover {
    background-color: transparent;
  }
}

.MuiButton-outlined {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 5px 15px;
}

.MuiButton-outlined.Mui-disabled {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-width: 1px;
}

.MuiButton-outlinedPrimary {
  color: #1d59f9;
  border: 2px solid #1d59f9;
  box-shadow: none;
  background-color: #fff;
}

.MuiButton-outlinedPrimary:hover {
  border: 1px solid #1d59f9;
  background-color: rgba(29, 89, 249, 0.04);
}

.MuiButton-outlinedPrimary:hover:not(.Mui-disabled) {
  border-color: #1043cb;
  border-width: 2px;
  background-color: #f8f8f9;
}

.MuiButton-outlinedPrimary:active:not(.Mui-disabled) {
  color: #1043cb;
  border-color: #1043cb;
  border-width: 2px;
  background-color: #eaeaec;
}

.MuiButton-outlinedPrimary.Mui-disabled {
  color: #96949c;
  border-color: #eaeaea;
  border-width: 2px;
  background-color: #eaeaea;
}

.MuiButton-outlinedPrimary.Mui-disabled:hover {
  background-color: #eaeaea;
}

@media (hover: none) {
  .MuiButton-outlinedPrimary:hover:not(.Mui-disabled) {
    border-color: #eaeaec;
  }
}

@media (hover: none) {
  .MuiButton-outlinedPrimary:hover {
    background-color: transparent;
  }
}

.MuiButton-outlinedSecondary {
  color:  var(--brand-color-primary-light);
  border: 1px solid rgba(105, 223, 106, 0.5);
}

.MuiButton-outlinedSecondary:hover {
  border: 1px solid  var(--brand-color-primary-light);
  background-color: rgba(105, 223, 106, 0.04);
}

.MuiButton-outlinedSecondary.Mui-disabled {
  border: 1px solid rgba(0, 0, 0, 0.26);
}

@media (hover: none) {
  .MuiButton-outlinedSecondary:hover {
    background-color: transparent;
  }
}

.MuiButton-contained {
  color: rgba(0, 0, 0, 0.87);
  box-shadow: none;
  background-color: #e0e0e0;
}

.MuiButton-contained:hover {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #d5d5d5;
}

.MuiButton-contained.Mui-focusVisible {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.MuiButton-contained:active {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.MuiButton-contained.Mui-disabled {
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}

.MuiButton-contained:hover,
.MuiButton-contained:active {
  box-shadow: none;
}

@media (hover: none) {
  .MuiButton-contained:hover {
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
      0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    background-color: #e0e0e0;
  }
}

.MuiButton-contained:hover.Mui-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}

.MuiButton-containedPrimary {
  color: #fff;
  background-color: #1d59f9;
}

.MuiButton-containedPrimary:hover {
  background-color: #ff9b06;
}

.MuiButton-containedPrimary:active {
  background-color: #3e73ff;
}

.MuiButton-containedPrimary.Mui-disabled {
  color: #fff;
  background-color: #eaeaec;
}

@media (hover: none) {
  .MuiButton-containedPrimary:hover {
    background-color: #1d59f9;
  }
}

.MuiButton-containedSecondary {
  color: #fff;
  box-shadow: none;
  background-color:  var(--brand-color-primary-light);
}

.MuiButton-containedSecondary:hover {
  background-color: #2bbea1;
}

.MuiButton-containedSecondary:focus {
  box-shadow: 0 2px 8px  var(--brand-color-primary-light);
  background-color:  var(--brand-color-primary-light);
}

.MuiButton-containedSecondary:active {
  background-color: #26ac91;
}

.MuiButton-containedSecondary.Mui-disabled {
  color: #fff;
  background-color: #96949c;
}

@media (hover: none) {
  .MuiButton-containedSecondary:hover {
    background-color:  var(--brand-color-primary-light);
  }
}

.MuiButton-disableElevation {
  box-shadow: none;
}

.MuiButton-disableElevation:hover {
  box-shadow: none;
}

.MuiButton-disableElevation.Mui-focusVisible {
  box-shadow: none;
}

.MuiButton-disableElevation:active {
  box-shadow: none;
}

.MuiButton-disableElevation.Mui-disabled {
  box-shadow: none;
}

.MuiButton-colorInherit {
  color: inherit;
  border-color: currentColor;
}

.MuiButton-textSizeSmall {
  padding: 4px 5px;
  font-size: 0.8125rem;
}

.MuiButton-textSizeLarge {
  padding: 8px 11px;
  font-size: 0.9375rem;
}

.MuiButton-outlinedSizeSmall {
  padding: 3px 9px;
  font-size: 0.8125rem;
}

.MuiButton-outlinedSizeLarge {
  padding: 7px 21px;
  font-size: 0.9375rem;
}

.MuiButton-containedSizeSmall {
  padding: 4px 10px;
  font-size: 0.8125rem;
}

.MuiButton-containedSizeLarge {
  padding: 8px 22px;
  font-size: 0.9375rem;
}

.MuiButton-sizeSmall {
  height: 40px;
  font-size: 15px;
}

.MuiButton-sizeLarge {
  height: 64px;
  font-size: 18px;
}

@media (max-width: 959.95px) {
  .MuiButton-sizeLarge {
    height: 48px;
    font-size: 15px;
  }
}

.MuiButton-fullWidth {
  width: 100%;
}

.MuiButton-startIcon {
  display: inherit;
  margin-left: -4px;
  margin-right: 10px;
}

.MuiButton-startIcon.MuiButton-iconSizeSmall {
  margin-left: -2px;
}

.MuiButton-endIcon {
  top: calc(50% - 9px);
  right: 16px;
  display: inherit;
  position: absolute;
  margin-left: 0;
  margin-right: 0;
}

.MuiButton-endIcon.MuiButton-iconSizeSmall {
  margin-right: -2px;
}

.MuiButton-endIcon.MuiButton-iconSizeLarge {
  right: 22px;
}

.MuiButton-iconSizeSmall>*:first-child {
  font-size: 18px;
}

.MuiButton-iconSizeMedium>*:first-child {
  font-size: 20px;
}

.MuiButton-iconSizeLarge>*:first-child {
  font-size: 22px;
}

a.btn.btn-block.btn-outline-primary {
  margin: 0;
  color: #fff;
  border-color: #fe8e3e;
  border-radius: 10px;
}

a.btn.btn-block.btn-outline-primary:hover {
  background: #fe8e3e;
}

.jss53 {
  display: flex;
  align-items: center;
}

.jss1132.jss1133 {
  color: #1d59f9;
  border-color: #fe8e3e;
}

.jss1132.jss1134:not(.jss1133) {
  color: #220e27;
  border-color: #eaeaec;
}

.jss1132.jss1134:not(.jss1133):hover:not(:disabled),
.jss1132.jss1134:not(.jss1133):active:not(:disabled) {
  color: #220e27;
  border-color: #96949c;
}

.jss1132.jss1134:not(.jss1133):disabled {
  border-color: #eaeaec;
}

.jss1132.jss1134:not(.jss1133):disabled:hover {
  color: #96949c;
  background-color: #eaeaec;
}

.jss1132.jss1133:hover:not(:disabled) {
  border-color: #fe8e3e;
}

.jss1132.jss1133:disabled {
  border-color: #1d59f9;
}

.jss1132.jss1133.jss1134 {
  color: #220e27;
}

.jss1132.jss1133.jss1134:disabled {
  border-color: #fe8e3e;
}

.jss1137 {
  text-transform: uppercase;
}

.jss1145 {
  top: 50%;
  left: 50%;
  position: absolute;
  margin-top: -20px;
  margin-left: -20px;
}

.jss1145.primary {
  color: #220e27;
}

.jss1145.secondary {
  color:  var(--brand-color-primary-light);
}

@media print {
  .MuiDialog-root {
    position: absolute !important;
  }
}

.MuiDialog-scrollPaper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.MuiDialog-scrollBody {
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}

.MuiDialog-scrollBody:after {
  width: 0;
  height: 100%;
  content: "";
  display: inline-block;
  vertical-align: middle;
}

.MuiDialog-container {
  height: 100%;
  outline: 0;
}

@media print {
  .MuiDialog-container {
    height: auto;
  }
}

.MuiDialog-paper {
  margin: 32px;
  position: relative;
  overflow-y: auto;
}

@media print {
  .MuiDialog-paper {
    box-shadow: none;
    overflow-y: visible;
  }
}

.MuiDialog-paperScrollPaper {
  display: flex;
  max-height: calc(100% - 64px);
  flex-direction: column;
}

.MuiDialog-paperScrollBody {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.MuiDialog-paperWidthFalse {
  max-width: calc(100% - 64px);
}

.MuiDialog-paperWidthXs {
  max-width: 444px;
}

@media (max-width: 507.95px) {
  .MuiDialog-paperWidthXs.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}

.MuiDialog-paperWidthSm {
  max-width: 660px;
}

@media (max-width: 723.95px) {
  .MuiDialog-paperWidthSm.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}

.MuiDialog-paperWidthMd {
  max-width: 960px;
}

@media (max-width: 1023.95px) {
  .MuiDialog-paperWidthMd.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}

.MuiDialog-paperWidthLg {
  max-width: 1280px;
}

@media (max-width: 1343.95px) {
  .MuiDialog-paperWidthLg.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}

.MuiDialog-paperWidthXl {
  max-width: 1920px;
}

@media (max-width: 1983.95px) {
  .MuiDialog-paperWidthXl.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}

.MuiDialog-paperFullWidth {
  width: calc(100% - 64px);
}

.MuiDialog-paperFullScreen {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  max-height: none;
  border-radius: 0;
}

.MuiDialog-paperFullScreen.MuiDialog-paperScrollBody {
  margin: 0;
  max-width: 100%;
}

.jss1396 {
  width: 100%;
  padding: 32px 20px 0;
  max-width: 389px;
}

@media (min-width: 660px) {
  .jss1396 {
    padding: 52px 30px 0;
  }
}

.jss1495 {
  width: 100%;
  border: 2px solid #e5e7ef;
  height: 440px;
  display: flex;
  padding: 24px 10px 0;
  z-index: 2;
  overflow: hidden;
  position: relative;
  max-width: 288px;
  border-radius: 32px 32px 0 0;
  flex-direction: column;
  background-color: #fff;
}

.jss1499 {
  overflow: hidden;
  position: relative;
  flex-grow: 1;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
}

.jss1496 {
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.jss1497 {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #cdd1e0;
}

.jss1498 {
  width: 29px;
  height: 4px;
  border-radius: 2px;
  background-color: #cdd1e0;
}

/* @media (hover: none) {
	.jss1486:not(:disabled):not(.jss1487):hover {
		border-color: transparent;
	}
} */

.jss1348 {
  flex: 1;
  display: flex;
  background-color: #f7f7f7;
}

iframe#iframesrc {
  border: none;
}

/* .card-body.p-0{
	overflow-y: scroll;
} */

/* width */

.card-body.p-0::-webkit-scrollbar {
  width: 6px;
}

/* Track */

.card-body.p-0::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

.card-body.p-0::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Handle on hover */

.card-body.p-0::-webkit-scrollbar-thumb:hover {
  background: #c9c9c9;
}

.card-body .see-btn {
  height: 48px;
  font-size: 15px;
  padding: 6px 16px;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  text-transform: none;
  box-shadow: none;
  min-width: 112px;
  background: rgb(14, 55, 154);
  color: rgb(255, 255, 255);
  width: 100%;
}

.card-body .see-btn svg {
  margin-left: -4px;
  margin-right: 10px;
}

@media (max-width: 1199.95px) {
  .jss1348 {
    flex-direction: column;
  }
}

.jss1349 {
  margin-top: 24px;
  width: 100%;
  /* display: flex; */
  background-color: transparent;
}

@media (max-width: 959.95px) {
  .jss1349 {
    margin-top: 24px;
    display: block;
    flex-grow: 1;
    /* padding-bottom: 86px; */
  }
}

@media (min-width: 960px) {
  .jss1349 {
    margin-top: 24px;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 1199.95px) {
  .jss1349 {
    margin-top: 24px;
    order: 1;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
  }
}

.jss1350 {
  display: flex;
  justify-content: flex-start;
  background-color: transparent;
}

@media (max-width: 1199.95px) {
  .jss1350 {
    width: 100%;
  }
}

@media (min-width: 1201px) {
  .jss1350 {
    flex: 1;
    padding: 0px 32px 0px;
  }
}

@media (min-width: 1201px) {
  .jss1351 {
    padding-bottom: 24px;
  }
}

.jss1352 {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.jss1453 {
  padding-top: 20px;
  padding-bottom: 50px;
}

@media (min-width: 1201px) {
  .jss1453 {
    width: 762px;
    margin-right: 32px;
  }
}

.jss1454 {
  flex: 1;
  height: calc(100vh - 148px);
  overflow-y: auto;
}

.jss1455 {
  color: #220e27;
  display: flex;
  font-size: 18px;
  align-items: center;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1199.95px) {
  .jss1455 {
    line-height: 34px;
  }
}

@media (min-width: 1201px) {
  .jss1455 {
    font-size: 20px;
  }
}

.jss1456 {
  display: flex;
  margin-top: 59px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-right: 32px;
  /* margin-right: auto; */
  margin-left: 5%;
  position: unset !important;
}

.jss1457:after {
  content: ". ";
}

.jss1458.step1 {
  display: grid;
  grid-row-gap: 8px;
}

.jss1458.step4 {
  padding: 18px;
  box-shadow: 0 4px 6px 0 #eaeaec;
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #fff;
}

@media (min-width: 1201px) {
  .jss1458.step4 {
    padding: 32px;
  }
}

@media (min-width: 1201px) {
  .jss1458.step3 {
    width: 794px;
    padding: 0 32px 32px 0;
  }
}

@media (min-width: 1201px) {
  .jss1458.step1 {
    padding: 0px 32px 24px 0;
  }
}

@media (min-width: 960px) {
  .jss1458.step1 {
    column-gap: 17px;
    grid-row-gap: 17px;
    /* grid-template-columns: repeat(4, 1fr); */
  }
}

/* @media (max-width:959.95px) {
	.jss1459 {
		flex-direction: row;
		justify-content: flex-start;
	}
} */

@media (min-width: 960px) {
  /* .jss1459 {
    width: 178px;
    height: 216px;
    padding: 20px 16px;
  } */
}

.jss1461 {
  width: 80px;
  height: 60px;
  transition: all 0.25s ease-in-out;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #f7f7f7;
}

.jss1461 img {
  width: 62px;
}

@media (max-width: 959.95px) {
  .jss1461 {
    margin-right: 16px;
  }
}

@media (min-width: 960px) {
  .jss1461 {
    width: 146px;
    height: 94px;
    margin-bottom: 16px;
  }

  .jss1461 img {
    width: 80px;
  }
}

@media (max-width: 959.95px) {
  .jss1461 img {
    height: 62px;
  }
}

.jss1462 {
  color: #220e27;
  font-size: 14px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  font-weight: 600;
  line-height: 22px;
}

@media (min-width: 960px) {
  .jss1462 {
    font-size: 16px;
    margin-bottom: 7px;
  }
}

@media (max-width: 959.95px) {
  .jss1462 {
    text-align: left;
  }
}

.jss1463 {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 959.95px) {
  .jss1463 {
    height: 20px;
    justify-content: flex-start;
  }
}

.jss1464 {
  color: #68676c;
  font-size: 13px;
  text-align: center;
  line-height: 18px;
}

@media (max-width: 959.95px) {
  .jss1464 {
    overflow: hidden;
    font-size: 12px;
    max-width: calc(100vw - 150px);
    text-align: left;
    line-height: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.jss1465 {
  color: #220e27;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

@media (min-width: 960px) {
  .jss1465 {
    font-size: 20px;
  }
}

.jss1466 {
  color: #fe8e3e;
  display: flex;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  align-items: center;
  font-weight: 600;
  /* margin-left: auto; */
}

.jss1466:hover {
  color: #eb6201;
  text-decoration: underline;
}

.jss1467 {
  margin-left: 4px;
}

.jss1468 {
  display: none;
}

.jss1469 {
  padding-top: 34px;
  padding-bottom: 20px;
}

@media (min-width: 1201px) {
  .jss1469 {
    width: 762px;
    margin-right: 32px;
  }
}

.jss1477 {
  position: relative;
}

.jss1478 {
  color: #220e27;
  display: block;
  opacity: 0.5;
}

.jss1478.jss1480 {
  color: #fe8e3e;
  opacity: 1;
}

.jss1478.jss1482 {
  color: #d5496c;
}

.jss1479 {
  fill: #fff;
  font-size: 16px;

  font-weight: 700;
}

.MuiStepConnector-root {
  flex: 1 1 auto;
}

.MuiStepConnector-vertical {
  padding: 0 0 8px;
  margin-left: 12px;
}

.MuiStepConnector-alternativeLabel {
  top: 12px;
  left: calc(-50% + 20px);
  right: calc(50% + 20px);
  position: absolute;
}

.MuiStepConnector-line {
  display: block;
  border-color: #bdbdbd;
}

.MuiStepConnector-lineHorizontal {
  border-top-style: solid;
  border-top-width: 1px;
}

.MuiStepConnector-lineVertical {
  min-height: 24px;
  border-left-style: solid;
  border-left-width: 1px;
}

.MuiStepper-root {
  display: flex;
  padding: 24px;
}

.MuiStepper-horizontal {
  align-items: center;
  flex-direction: row;
}

.MuiStepper-vertical {
  flex-direction: column;
}

.MuiStepper-alternativeLabel {
  align-items: flex-start;
}

.MuiStep-horizontal {
  padding-left: 8px;
  padding-right: 8px;
}

.MuiStep-alternativeLabel {
  flex: 1;
  position: relative;
}

.MuiStepLabel-root {
  display: flex;
  align-items: center;
}

.MuiStepLabel-root.MuiStepLabel-alternativeLabel {
  flex-direction: column;
}

.MuiStepLabel-root.Mui-disabled {
  cursor: default;
}

.MuiStepLabel-label {
  color: rgba(0, 0, 0, 0.54);
}

.MuiStepLabel-label.MuiStepLabel-active {
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
}

.MuiStepLabel-label.MuiStepLabel-completed {
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
}

.MuiStepLabel-label.MuiStepLabel-alternativeLabel {
  margin-top: 16px;
  text-align: center;
}

.MuiStepLabel-label.Mui-error {
  color: #d5496c;
}

.MuiStepLabel-iconContainer {
  display: flex;
  flex-shrink: 0;
  padding-right: 8px;
}

.MuiStepLabel-iconContainer.MuiStepLabel-alternativeLabel {
  padding-right: 0;
}

.MuiStepLabel-labelContainer {
  width: 100%;
}

.jss1470 {
  padding: 0;
  background-color: transparent;
}

@media (max-width: 659.95px) {
  .jss1470 {
    /* width: 100%; */
    margin-bottom: 20px;
  }
}

.jss1471 {
  cursor: pointer;
  padding: 0;
}

.jss1483 {
  margin: 0;
}

@media (min-width: 660px) {
  .jss1483 {
    width: 45px;
    margin: 0 16px;
  }
}

.jss1484 {
  height: 1px;
  opacity: 0.5;
  border-top: 0;
  background-color: #220e27;
}

@media (max-width: 659.95px) {
  .jss1485 {
    left: calc(-50% + 26px);
    right: calc(50% + 26px);
  }
}

.jss1472 {
  padding-right: 12px;
}

.jss1473 {
  color: rgb(0, 0, 0);
  opacity: 0.5;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  user-select: none;
}

.jss1473.jss1474 {
  color: rgb(0, 0, 0);
  opacity: 1;
  font-weight: 700;
}

.jss1473.jss1475 {
  color: #220e27;
  font-weight: 700;
}

@media (max-width: 659.95px) {
  .jss1473.jss1476 {
    margin-top: 11px;
  }
}

.jss1519 {
  height: 100%;
  display: flex;
  padding: 14px 14px 0;
  flex-direction: column;
}

.jss1520 {
  color: #5a5b70;
  width: 100%;
  height: 33px;
  display: flex;
  font-size: 11px;
  align-items: center;
  padding-left: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #cdd1e0;
}

.jss1521 {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding-bottom: 30px;
}

.jss1522 {
  display: flex;
  overflow: hidden;
  flex-grow: 1;
  box-shadow: 0 4px 6px 0 #cdd1e0;
  align-items: flex-end;
  border-radius: 8px;
  flex-direction: column;
}

.jss1522>img {
  width: 100%;
}

.jss1523 {
  height: 186px;
  padding: 23px 20px 30px;
  text-align: center;
  background-color: #fff;
}

.jss1524 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 10px;
}

.jss1525 {
  color: #5a5b70;
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 20px;
}

.jss1526 {
  color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
  font-size: 15px;
  text-align: center;
  align-items: center;
  font-weight: 500;
  border-radius: 4px;
  flex-direction: row;
  justify-content: center;
  background-color: #132272;
}

.jss1362 {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 959.95px) {
  .jss1362 {
    padding: 0 30px;
  }
}

@media (min-width: 0px) and (max-width: 659.95px) {
  .jss1362 {
    padding: 0 20px;
  }
}

@media (min-width: 960px) and (max-width: 1199.95px) {
  .jss1362 {
    margin: 0 auto;
    max-width: 794px;
  }
}

@media (min-width: 1201px) {
  .jss1362 {
    width: 358px;
  }
}

@media (max-width: 1199.95px) {
  .jss1362.jss1363 {
    height: 0;
  }
}

@media (min-width: 960px) {
  .jss1364 .jss1366 {
    padding-top: 53px;
    padding-bottom: 16px;
  }
}

.jss1366 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 1201px) {
  .jss1366 {
    height: 106px;
    padding-top: 53px;
    padding-bottom: 16px;
  }
}

.jss1367 {
  color: #220e27;
  height: 36px;
  font-size: 20px;
  text-align: center;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0;
}

@media (min-width: 960px) and (max-width: 1199.95px) {
  .jss1367 {
    display: none;
  }
}

.jss1368 {
  width: 358px;
  height: 449px;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding-top: 44px;
  border-radius: 8px;
  flex-direction: column;
  background-color: #96949c;
}

@media (max-width: 1199.95px) {
  .jss1368 {
    display: none;
  }
}

.jss1368.jss1369 {
  border: 2px solid #eaeaec;
  background-color: transparent;
}

.jss1368.jss1383 {
  border: 2px solid #eaeaec;
  background-color: transparent;
}

.jss1368.jss1370 {
  background-color: transparent;
}

.jss1368.jss1370 .jss1377 {
  color: #220e27;
}

.jss1368.jss1383 .jss1377 {
  color: #220e27;
}

.jss1368.jss1369 .jss1377 {
  color: #220e27;
}

.jss1368.jss1369:after {
  display: none;
}

.jss1371 {
  width: 178px;
  display: flex;
  align-items: center;
  padding-top: 141px;
  flex-direction: column;
  justify-content: center;
}

.jss1372 {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  margin-bottom: 19px;
  background-color: #fff;
}

.jss1372 svg {
  fill: #8c8c8c;
}

.jss1373 {
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  line-height: 21px;
}

.jss1374 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jss1375 {
  color: #220e27;
  cursor: pointer;
  display: flex;
  outline: 0;
  align-items: center;
}

.jss1375:active .jss1376 {
  text-decoration: underline;
}

.jss1375:hover .jss1376 {
  text-decoration: underline;
}

@media (hover: none) {
  .jss1375:hover .jss1376 {
    text-decoration: none;
  }
}

.jss1376 {
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
}

@media (min-width: 960px) {
  .jss1376 {
    font-size: 20px;
    font-weight: 500;
    margin-right: 10px;
  }
}

.jss1377 {
  top: 9px;
  color: #fff;
  height: 22px;
  position: absolute;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1px;
}

.jss1377.jss1383 {
  color: #96949c;
}

.jss1378 {
  width: 248px;
  height: 248px;
  display: flex;
  margin-top: 11px;
  align-items: center;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  background-color: #fff;
}

.jss1378 canvas {
  width: 192px;
  height: auto;
}

.jss1379 {
  padding-top: 46px;
  padding-bottom: 108px;
}

.jss1379 canvas {
  width: 250px;
  height: auto;
}

.jss1380 {
  height: auto;
  background-color: transparent;
}

.jss1380 canvas {
  width: 248px;
}

.jss1381 {
  display: flex;
  align-items: center;
}

.jss1382 {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: #1d59f9;
}

.jss1384 {
  width: 100%;
  height: 68px;
  z-index: 1;
  box-shadow: 0 -2px 6px 1px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
  background-color: #220e27;
}

@media (max-width: 959.95px) {
  .jss1384 {
    bottom: 0;
    position: fixed;
  }
}

@media (min-width: 960px) {
  .jss1384 {
    height: 76px;
  }
}

.jss1385 {
  height: 100%;
  align-items: center;
}

@media (min-width: 960px) {
  .jss1385 {
    width: 100%;
    margin: auto;
    display: flex;
    padding: 0 40px;
    max-width: 1280px;
    justify-content: space-between;
  }
}

@media (max-width: 959.95px) {
  .jss1385 {
    display: flex;
    padding: 0 30px;
    justify-content: space-between;
  }
}

@media (max-width: 659.95px) {
  .jss1385 {
    padding: 0 20px;
  }
}

.jss1387 {
  height: auto;
}

@media (max-width: 1040px) {
  .jss1387 {
    display: none;
  }
}

@media (max-width: 959.95px) {
  .jss1388 {
    display: grid;
    column-gap: 12px;
    grid-auto-flow: column;
  }
}

.jss1389 {
  color: #fff;
  border: 1px solid #fff;
  height: 52px;
  background-color: transparent;
}

.jss1389:hover:not(:disabled) {
  border-color: #fff;
  border-width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.jss1389:active:not(:disabled) {
  color: #fff;
  border-color: #fff;
  border-width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.jss1390 {
  color: #fff;
  margin-left: -8px;
}

.jss1391 {
  height: 52px;
}

.jss1391:disabled {
  background-color: #575757 !important;
}

.jss1392 {
  margin-right: 12px;
}

.jss1392 svg {
  margin-left: 12px;
}

.jss1393 {
  visibility: hidden;
}

.jss1398 {
  width: 100%;
  max-width: 389px;
  border-radius: 8px;
}

.jss1399 {
  width: 100%;
  position: relative;
  min-height: 150px;
  line-height: 0;
  background-color: #1d59f9;
}

.jss1400 {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.jss1401 {
  padding: 24px;
}

.jss1402 .jss1403 {
  opacity: 0;
}

.jss1402 .jss1404,
.jss1402 .jss1405 {
  text-align: center;
}

.jss1403 {
  color: #1d59f9;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.jss1404 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}

.jss1405 {
  color: #68676c;
  font-size: 13px;
  min-height: 85px;
  line-height: 21px;
  margin-bottom: 25px;
}

.jss1406 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jss1407 {
  width: 100px;
  min-width: 50px;
}

.jss1408 {
  display: flex;
}

.jss1409 {
  margin: 0 2px;
  display: flex;
  padding: 3px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.jss1410 {
  width: 6px;
  cursor: pointer;
  height: 6px;
  transition: all 0.2s ease-in-out;
  border-radius: 50%;
  background-color: #f8f8f9;
}

.jss1411 {
  background-color: #1d59f9;
}

/* Radio button questions */

@media (min-width: 1201px) {}

.jss10 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.jss11 {
  flex: 1;
  display: flex;
  background-color: #f7f7f7;
}

@media (max-width: 1199.95px) {
  .jss11 {
    flex-direction: column;
  }
}

.jss12 {
  width: 100%;
  display: flex;
  background-color: transparent;
}

@media (max-width: 959.95px) {
  .jss12 {
    display: block;
    flex-grow: 1;
    padding-bottom: 86px;
  }
}

@media (min-width: 960px) {
  .jss12 {
    width: 65.16%;
    justify-content: flex-end;
  }
}

@media (max-width: 1199.95px) {
  .jss12 {
    order: 1;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
  }
}

.jss13 {
  display: flex;
  justify-content: flex-start;
  background-color: transparent;
}

@media (max-width: 1199.95px) {
  .jss13 {
    width: 100%;
  }
}

@media (min-width: 1201px) {
  .jss13 {
    flex: 1;
    padding: 0px 32px 0px;
  }
}

@media (min-width: 1201px) {
  .jss14 {
    padding-bottom: 24px;
  }
}

.jss15 {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.jss49 {
  width: 100%;
  height: 68px;
  z-index: 10;
  box-shadow: 0 -2px 6px 1px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
  /* background-color: #220E27; */
  background-color: #ffffff;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  /* background-color: red; */
  color: white;
  text-align: center;
}

@media (max-width: 959.95px) {
  .jss49 {
    bottom: 0;
    position: fixed;
  }
}

@media (min-width: 960px) {
  .jss49 {
    height: 76px;
  }
}

.jss50 {
  height: 100%;
  align-items: center;
}

@media (min-width: 960px) {
  .jss50 {
    width: 100%;
    margin: auto;
    display: flex;
    padding: 0 40px;
    max-width: 1280px;
    justify-content: space-between;
  }
}

@media (max-width: 959.95px) {
  .jss50 {
    display: flex;
    padding: 0 30px;
    justify-content: space-between;
  }
}

@media (max-width: 659.95px) {
  .jss50 {
    padding: 0 6px;
  }

  .jss54:hover:not(:disabled) {
    background-color: white !important;
  }
}

.jss52 {
  height: auto;
}

@media (max-width: 1040px) {
  .jss52 {
    display: none;
  }
}

@media (max-width: 959.95px) {
  .jss53 {
    display: grid;
    column-gap: 12px;
    grid-auto-flow: column;
    width: 65%;
  }
}

.jss54 {
  color: #fff;
  border: 1px solid #fff;
  height: 52px;
  background-color: transparent;
  color: #1d59f9;
  border: 2px solid #1d59f9;
}

.jss54:hover:not(:disabled) {
  border-color: #1d59f9;
  border-width: 2px;
  background-color: #ff9b06;
}

.jss54:active:not(:disabled) {
  color: #ffffff;
  border-color: #1d59f9;
  border-width: 2px;
  background-color: #1d59f9;
}

.jss54:focus:not(:disabled) {
  color: #ffffff;
  border-color: #1d59f9;
  border-width: 2px;
  background-color: #1d59f9;
}

.jss55 {
  color: #fff;
  margin-left: -8px;
}

.jss56 {
  height: 52px;
  width: 152px;
  border-radius: 8px;
  /* margin-right: 20px; */
}

.jss56:disabled {
  background-color: #575757 !important;
}

.jss57 {
  margin-right: 12px;
}

.jss57 svg {
  margin-left: 12px;
}

.jss58 {
  visibility: hidden;
}

.disable-btn {
  opacity: 0.5 !important;
  pointer-events: none;
}

.step2 {
  display: none;
}

.step1 {
  display: block;
}

.mbf-10 {
  margin-bottom: 10% !important;
}

.quote-imgs-thumbs {
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  margin: 1.5rem 0;
  padding: 0.75rem;
}

.quote-imgs-thumbs--hidden {
  display: none;
}

.img-preview-thumb {
  background: #fff;
  border: 1px solid #777;
  border-radius: 0.25rem;
  box-shadow: 0.125rem 0.125rem 0.0625rem rgba(0, 0, 0, 0.12);
  margin-right: 1rem;
  max-width: 140px;
  padding: 0.25rem;
}

#step1 {
  display: none;
}

/* #step2 {
	display: none;
} */

#step3 {
  display: none;
}

/* #s1{
	display: none;
  }

  #s2{
	display: none;
  }

  #s3{
	display: none;
  } */

#temp_next {
  display: none;
}

#temp_submit {
  display: none;
  width: 100%;
}

ul.ks-cboxtags {
  list-style: none;
  padding: 20px;
}

ul.ks-cboxtags li {
  display: inline;
}

ul.ks-cboxtags li label {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(139, 139, 139, 0.3);
  color: #adadad;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s;
}

ul.ks-cboxtags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-cboxtags li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  /* content: "\f067"; */
  transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label::before {
  /* content: "\f00c"; */
  transform: rotate(-360deg);
  transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked+label {
  border: 2px solid #1b9bf8;
  background-color: #1289d4;
  color: #fff;
  transition: all 0.2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}

ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

ul.ks-cboxtags li input[type="checkbox"]:focus+label {
  border: 2px solid #e9a1ff;
}

h4 {
  margin-top: 12px;
}

.preview-img {
  max-width: 400px;
  width: 100%;
  display: none;
}

/* tabbing customise */

.jss1347 .nav-tabs {
  align-items: center;
  justify-content: center;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #ff9b06;
  border-color: #ff9b06;
  border-radius: 10px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #ff9b06;
  border-radius: 10px;
}

.card {
  border: none;
}

/* .card-body{
	text-align: center;
} */

/* new latest changes for dashboard customize */

button.btn.btn-block.btn-primary.d-print-none.dropdown-toggle.cclrf:focus {
  background: #ff9b06;
  border: none;
}

.brr {
  border-radius: 50px;
}

.fpd {
  padding: 0.625rem;
}

.borr {
  border-radius: 10px;
  box-shadow: rgb(205 209 224) 0px 4px 6px 0px;
}

.cclr {
  background: #0047ff;
  border-color: #0047ff;
  color: #fff;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: none !important;
}

.cclr:hover {
  background-color: #1043cb;
  border-color: #1043cb;
}

.cclr:active:focus {
  background: #1043cb !important;
  border-color: #1043cb !important;
}

.cclrf {
  background: #ff9b06;
  border-color: #ff9b06;
  border-radius: 20px;
  transition: 0.5s;
}

.cclrf:hover {
  background: #ff9b06;
  border-color: #ff9b06;
}

.cclrf:focus {
  border-color: #ff9b06 !important;
  background: #ff9b06 !important;
}

.clrb {
  color: #0047ff;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: #ff9b06;
  background: #ff9b06;
}

/* statiticks page datepicker button css */

button.applyBtn.btn.btn-sm {
  background: #0047ff;
  border-color: #0047ff;
  border-radius: 20px;
  transition: 0.5s;
}

button.applyBtn.btn.btn-sm:hover {
  background: #ff9b06;
  border-color: #ff9b06;
}

.daterangepicker .ranges li.active {
  background: #ededed !important;
  color: #020202 !important;
}

.daterangepicker .ranges li:hover {
  background-color: #dfdfdf;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: var(--brand-color-primary) !important;
}

.btnp {
  align-items: center;
  justify-content: end;
}

/* dashbord search boxes */

/* 
.jss1222 {
    display: flex;
    margin-top: -10px;
    align-items: center;
}

.jss1255 {
    flex: 1;
    align-self: flex-end;
    margin-right: 16px;
    margin-bottom: 0;
}

.MuiFormControl-root {
    border: 0;
    margin: 0;
    display: inline-flex;
    padding: 0;
    position: relative;
    min-width: 0;
    flex-direction: column;
    vertical-align: top;
}

.MuiCollapse-entered {
    height: auto;
    overflow: visible;
}

.MuiCollapse-container {
    height: 0;
    overflow: hidden;
    transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.MuiCollapse-wrapper {
    display: flex;
}

.jss1266 {
    height: 36px;
    border-radius: 8px;
}

.MuiInput-root {
    color: #220E27;
    border: 2px solid #EAEAEC;
    height: 50px;
    position: relative;
    transition: background-color, border-color 0.25s ease-in-out;
    line-height: 34px;
    border-radius: 24px;
    background-color: #FFF;
}

.MuiInputBase-root {
    color: rgba(0, 0, 0, 0.87);
    cursor: text;
    display: inline-flex;
    position: relative;
    font-size: 1rem;
    box-sizing: border-box;
    align-items: center;
      
    font-weight: 400;
    line-height: 1.1876em;
}

.MuiInputBase-adornedEnd .MuiInputAdornment-root {
    margin-right: 4px;
}

.jss1277 {
    margin-left: 6px;
    margin-right: 6px;
}

.MuiInputAdornment-root {
    height: 0.01em;
    display: flex;
    max-height: 2em;
    align-items: center;
    white-space: nowrap;
}

.MuiSvgIcon-root {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.MuiInputBase-adornedEnd .MuiInputAdornment-root {
    margin-right: 4px;
}

.MuiInputAdornment-positionEnd {
    margin-left: 8px;
}

.MuiInputAdornment-root {
    height: 0.01em;
    display: flex;
    max-height: 2em;
    align-items: center;
    white-space: nowrap;
}

.jss1266 input {
    font-size: 13px;
}

.MuiInput-input {
    height: 46px;
    padding: 0 15px;
    font-size: 15px;
}

.MuiInputBase-inputAdornedStart {
    padding-left: 0px !important;
}

.MuiInputBase-input {
    font: inherit;
    color: currentColor;
    width: 100%;
    border: 0;
    height: 1.1876em;
    margin: 0;
    display: block;
    padding: 6px 0 7px;
    min-width: 0;
    background: none;
    box-sizing: content-box;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
} */

.jss18 {
  display: block;
  position: relative;
}

.jss46 {
  width: calc(100% - 60px);
  display: flex;
  max-width: 998px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}

.jss49 {
  width: 100%;
  /* padding-top: 6px; */
}

.jss50 {
  line-height: 20px;
}

.jss51 {
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.jss52 {
  display: flex;
  margin-top: -10px;
  align-items: center;
}

.jss55 {
  flex: 1;
  align-self: flex-end;
  margin-right: 16px;
  margin-bottom: 0;
}

.MuiFormControl-root {
  border: 0;
  margin: 0;
  display: inline-flex;
  padding: 0;
  position: relative;
  min-width: 0;
  flex-direction: column;
  vertical-align: top;
}

.MuiInput-root {
  color: #220e27;
  border: 2px solid #eaeaec;
  height: 50px;
  position: relative;
  transition: background-color, border-color 0.25s ease-in-out;
  line-height: 34px;
  border-radius: 24px;
  background-color: #fff;
}

.MuiInputBase-root {
  color: rgba(0, 0, 0, 0.87);
  cursor: text;
  display: inline-flex;
  position: relative;
  font-size: 1rem;
  box-sizing: border-box;
  align-items: center;

  font-weight: 400;
  line-height: 1.1876em;
}

.MuiInputBase-adornedEnd .MuiInputAdornment-root {
  margin-right: 4px;
}

.jss57 {
  margin-left: 6px;
  margin-right: 6px;
}

.MuiInputAdornment-positionStart {
  margin-right: 8px;
}

.MuiInputAdornment-root {
  height: 0.01em;
  display: flex;
  max-height: 2em;
  align-items: center;
  white-space: nowrap;
}

.MuiSvgIcon-root {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 1.5rem;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  flex-shrink: 0;
  user-select: none;
}

.jss56 input {
  font-size: 13px;
}

.MuiInput-input {
  height: 46px;
  padding: 0 15px;
  font-size: 15px;
}

.MuiInputBase-inputAdornedStart {
  padding-left: 0px !important;
}

.MuiInputBase-input {
  font: inherit;
  color: currentColor;
  width: 100%;
  border: 0;
  height: 1.1876em;
  margin: 0;
  display: block;
  padding: 6px 0 7px;
  min-width: 0;
  background: none;
  box-sizing: content-box;
  animation-name: mui-auto-fill-cancel;
  letter-spacing: inherit;
  animation-duration: 10ms;
  -webkit-tap-highlight-color: transparent;
}

.MuiInputBase-adornedEnd .MuiInputAdornment-root {
  margin-right: 4px;
}

.MuiInputAdornment-positionEnd {
  margin-left: 8px;
}

.MuiInputAdornment-root {
  height: 0.01em;
  display: flex;
  max-height: 2em;
  align-items: center;
  white-space: nowrap;
}

.MuiCollapse-entered {
  height: auto;
  overflow: visible;
}

.MuiCollapse-container {
  height: 0;
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.MuiCollapse-wrapper {
  display: flex;
}

.MuiCollapse-wrapperInner {
  width: 100%;
}

.jss53 {
  display: flex;
  align-items: center;
}

.jss53 .square-btn {
  display: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 5px 10px;
}

.jss60 {
  width: 152px;
  border-radius: 8px;
  margin-right: 16px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.jss60 .jss72.MuiButton-label {
  width: auto;
}

.jss61 {
  color: #68676c;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 4px;
}

.jss62 {
  width: 100%;
}

.jss63 {
  height: 36px;
  font-weight: 500;
  line-height: 32px;
  border-radius: 18px;
  background-color: white;
}

.MuiInput-root {
  color: #220e27;
  border: 2px solid #eaeaec;
  height: 50px;
  position: relative;
  transition: background-color, border-color 0.25s ease-in-out;
  line-height: 34px;
  border-radius: 24px;
  background-color: #fff;
}

.MuiInputBase-root {
  color: rgba(0, 0, 0, 0.87);
  cursor: text;
  display: inline-flex;
  position: relative;
  font-size: 1rem;
  box-sizing: border-box;
  align-items: center;

  font-weight: 400;
  line-height: 1.1876em;
}

.MuiSelect-select.MuiSelect-select {
  padding-right: 34px;
}

.jss64 {
  height: 32px;
  font-size: 13px;
  line-height: 32px;
  padding-left: 12px;
}

.MuiSelect-selectMenu {
  height: 46px;
  overflow: hidden;
  min-height: 1.1876em;
  line-height: 46px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.MuiSelect-select {
  cursor: pointer;
  display: block;
  min-width: 16px;
  user-select: none;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.MuiInput-input {
  height: 46px;
  padding: 0 15px;
  font-size: 15px;
}

.MuiInputBase-input {
  font: inherit;
  color: currentColor;
  width: 100%;
  border: 0;
  height: 1.1876em;
  margin: 0;
  display: block;
  padding: 6px 0 7px;
  min-width: 0;
  background: none;
  box-sizing: content-box;
  animation-name: mui-auto-fill-cancel;
  letter-spacing: inherit;
  animation-duration: 10ms;
  -webkit-tap-highlight-color: transparent;
}

/* New Style Added Here */

/* Custom Accodian */
.custom-accodian .collapseInner .form-control,
.companyItem .companyTypeButton,
.contactPage .form-control,
.userPage .form-control,
.modal-content .form-group .form-control {
  padding: 0 15px;
  min-height: 50px;
  border-radius: 50px;
  border: 2px solid #eaeaec;
  box-shadow: none;
  transition: background-color, border-color 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;

  width: 100%;
}

.custom-accodian .collapseInner .form-control::placeholder,
.my-account .accountCardDetail .form-control::placeholder,
.contactPage .form-control::placeholder,
.modal-content .form-group .form-control::placeholder {
  color: #96949c;
}

.custom-accodian .collapseInner .textarea-control,
.contactPage .textarea-control {
  min-height: 100px !important;
  border-radius: 24px !important;
  padding: 10px 15px;
  resize: none;
}

.custom-accodian .collapseInner .form-control:hover,
.accountCardDetail .companyItem .companyTypeButton:hover,
.contactPage .form-control:hover,
.modal-content .form-group .form-control:hover,
.edit-qrCodeGroup .editQrField:hover {
  border-color: #96949c;
}

.custom-accodian .collapseInner .form-control:focus,
.my-account .accountCardDetail .form-control:focus,
.contactPage .form-control:focus,
.userPage .buttonDetail .outlineBtn,
.modal-content .form-group .form-control:focus,
.edit-qrCodeGroup .editQrField:focus {
  border-color: #1d59f9;
}

.custom-accodian .collapseInner .form-control:focus {
  border-color: #1d59f9;
}

.form-group .accountSaveButton,
.contactPage .accountSaveButton,
.primaryBigButton {
  color: #fff;
  background-color: #1d59f9;
  max-width: 200px;
  width: 100%;
  height: 56px;
  padding: 13px 16px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;

  font-weight: 700;
  line-height: 31px;
  border-radius: 28px;
}

.custom-accodian .collapseInner {
  padding: 0px 28px 28px;
}

.custom-accodian .collapseInner .form-group label,
.my-account .accountCardDetail .form-group label,
.companyTypeGroup .companyItem label,
.socialInner p,
.contactPage .form-group label,
.commonLabel,
.modal-content .form-group label {
  font-size: 13px;
  line-height: 18px;
  color: #68676c;

  font-weight: 600;
  margin-bottom: 6px;
  white-space: pre-wrap;
}

.custom-accodian .collapseInner .form-group .checkboxBorder {
  border-top: 1px solid #eaeaec;
  display: flex;
  align-items: center;
  padding: 19px;
}

.custom-accodian .checkboxBorder .roundCheckbox {
  margin: 0 9px;
}

.custom-accodian .collapseInner .form-control,
.my-account .accountCardDetail .form-control,
.companyItem .companyTypeButton,
.contactPage .form-control,
.userPage .form-control,
.modal-content .form-group .form-control {
  padding: 0 15px;
  min-height: 50px;
  border-radius: 50px;
  border: 2px solid #eaeaec;
  box-shadow: none;
  transition: background-color, border-color 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;

  width: 100%;
}

.contactPage .form-control::placeholder,
.modal-content .form-group .form-control::placeholder {
  color: #96949c;
}

.custom-accodian .collapseInner .textarea-control,
.contactPage .textarea-control {
  min-height: 100px !important;
  border-radius: 24px !important;
  padding: 10px 15px;
  resize: none;
}

.custom-accodian .collapseInner .form-control:hover,
.my-account .accountCardDetail .form-control:hover,
.accountCardDetail .companyItem .companyTypeButton:hover,
.contactPage .form-control:hover,
.modal-content .form-group .form-control:hover,
.edit-qrCodeGroup .editQrField:hover {
  border-color: #96949c;
}

.contactPage .form-control:focus,
.userPage .buttonDetail .outlineBtn,
.modal-content .form-group .form-control:focus,
.edit-qrCodeGroup .editQrField:focus {
  border-color: #1d59f9;
}

.contactPage .form-group label,
.commonLabel,
.modal-content .form-group label {
  font-size: 13px;
  line-height: 18px;
  color: #68676c;

  font-weight: 600;
  margin-bottom: 6px;
  white-space: pre-wrap;
}

.custom-accodian .collapseInner .form-group .checkboxBorder {
  border-top: 1px solid #eaeaec;
  display: flex;
  align-items: center;
  padding: 19px;
}

.custom-accodian .checkboxBorder .roundCheckbox {
  margin: 0 9px;
}

.contactPage .form-group label,
.commonLabel,
.modal-content .form-group label {
  font-size: 13px;
  line-height: 18px;
  color: #68676c;

  font-weight: 600;
  margin-bottom: 6px;
  white-space: pre-wrap;
}

.custom-accodian .collapseInner .form-group .checkboxBorder {
  border-top: 1px solid #eaeaec;
  display: flex;
  align-items: center;
  padding: 19px;
}

.custom-accodian .checkboxBorder .roundCheckbox {
  margin: 0 9px;
}

.custom-accodian .collapseInner .form-group .ks-cboxtags .boxtagLabel,
.boxtagLabel {
  width: 50px;
  height: 50px;
  border: 3px solid #eaeaec;
  padding: 0;
  color: #c3c3c6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
  border-radius: 4px;
  background-color: transparent !important;
  transition: all 0.2s ease-in-out;
}

.custom-accodian .collapseInner .form-group .ks-cboxtags input[type="checkbox"]:checked+.boxtagLabel {
  border-color: #1d59f9;
  color: #220e27;
}

.custom-accodian .collapseInner .form-group .ks-cboxtags .svg-inline--fa {
  font-size: 22px;
}

.roundCheckbox {
  position: relative;
  width: 24px;
}

.roundCheckbox label {
  background-color: #fff;
  border: 2px solid #96949c;
  border-radius: 8px;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
  transition: all 0.2s ease-in-out;
}

.roundCheckbox label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  width: 12px;
}

.roundCheckbox input[type="checkbox"] {
  visibility: hidden;
}

.roundCheckbox input[type="checkbox"]:checked+label {
  border-color: #1d59f9;
  background-color: #1d59f9;
}

.roundCheckbox input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

.custom-accodian .passwordCheckbox {
  width: 20px;
  height: 20px;
  position: relative;
}

.custom-accodian .passwordCheckbox label {
  height: 20px;
  width: 20px;
  border: 2px solid #96949c;
  transition: all 0.2s ease-in-out;
}

.custom-accodian .passwordCheckbox label:hover,
.roundCheckbox label:hover {
  border: 2px solid #68676e;
}

.custom-accodian .passwordCheckbox label:after {
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 4px;
}

.custom-accodian .collapseInner .form-group .passwordlabel {
  color: #220e27;
  font-weight: 400;
}

/* Dashboad Page */

.filter-conteiner {
  margin-bottom: 26px;
  margin-top: 26px;
}

.filter-conteiner .fieldLabel {
  font-size: 12px;
  line-height: 16px;
  color: #68676c;

  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.date-export-container {
  display: flex;
  align-items: flex-end;
  margin-bottom: 22px;
}

.date-export-container .dateItem {
  width: 288px;
  position: relative;
}

.date-export-container .dateItem svg {
  position: absolute;
  bottom: 7px;
  right: 14px;
  cursor: pointer;
}

.filter-conteiner .form-control,
.filter-conteiner .btn-group {
  height: 36px;
  border-radius: 28px;
  border: 2px solid #eaeaec;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;

}

.filter-conteiner .btn-group {
  width: 100%;
  transition: background-color, border-color 0.25s ease-in-out;
}

.filter-conteiner .btn-group button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;

  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
}

.filter-conteiner .btn-group button .caret {
  background-image: url(../images/downArrow.svg);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  right: -5px;
  top: 1px;
}

.filter-conteiner .dropdown-toggle::after {
  display: none !important;
}

.filter-conteiner ul.multiselect-container.dropdown-menu {
  padding: 8px 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  max-width: 233px;
  width: 100%;
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%),
    0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
}

.filter-conteiner ul.multiselect-container.dropdown-menu li,
.filter-conteiner ul.dropdown-menu li {
  padding: 6px 16px 6px 8px;
  margin-bottom: 4px;
  color: #96949c;
  transition: all 0.2s ease-in-out;
  border-radius: 4px;
  margin-right: 6px;
}

.filter-conteiner .dropdown-group ul li:hover {
  color: #220e27;
  background-color: #eaeaec;
}

.filter-conteiner .dropdown-group ul li.active {
  color: #220e27;
  background-color: #f8f8f9;
}

.filter-conteiner .dropdown-group ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.filter-conteiner .dropdown-group ul li a.multiselect-all {
  color: #1d59f9;
}

.filter-conteiner .dropdown-group ul li .checkbox,
.filter-conteiner .dropdown-group ul li .radio {
  margin-bottom: 0;
  padding-left: 26px;
  width: 100%;
  padding: 4px 0 4px 26px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;

}

.filter-conteiner .dropdown-group ul li .checkbox input,
.filter-conteiner .dropdown-group ul li .radio input {
  position: relative;
  width: 0;
}

.filter-conteiner .dropdown-group ul li .checkbox input::after,
.filter-conteiner .dropdown-group ul li .radio input::after {
  position: absolute;
  content: "";
  top: -2px;
  left: -26px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #96949c;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.filter-conteiner .dropdown-group ul li .radio input::after {
  border-radius: 20px;
}

.filter-conteiner .dropdown-group ul li .checkbox input:checked::after,
.filter-conteiner .dropdown-group ul li .radio input:checked::after {
  border-color: #1d59f9;
  background-color: #1d59f9;
}

.filter-conteiner .dropdown-group ul li .checkbox input::before,
.filter-conteiner .dropdown-group ul li .radio input::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -22px;
  width: 12px;
  height: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  z-index: 1;
  opacity: 0;
}

.filter-conteiner .dropdown-group ul li .checkbox input:checked::before,
.filter-conteiner .dropdown-group ul li .radio input:checked::before {
  opacity: 1;
}

.outlineBtn {
  min-width: 200px;
  height: 37px;
  color: #1d59f9 !important;
  border: 2px solid #1d59f9 !important;
  box-shadow: none;
  background-color: transparent;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
  font-weight: 700 !important;
  border-radius: 28px;
  padding: 4px 16px;
  box-shadow: none !important;

}

.outlineBtn:focus,
.userPage .buttoncol button:active {
  background-color: #eaeaec;
}

.outlineBtn .smIcon {
  font-size: 14px;
  margin-right: 3px;
}

.date-export-container .outlineBtn {
  margin-left: 12px;
  line-height: 20px;
}

.addRowButton {
  height: 56px !important;
  font-size: 18px !important;
  line-height: 32px !important;
  width: 100% !important;
}

.addRowButton2 {
  height: 56px !important;
  font-size: 18px !important;
  line-height: 5px !important;
  width: 100% !important;
}

/* .addRowButton {
    height: 56px;
    font-size: 18px;
    line-height: 32px;
	width: 100%;
} */

.smallmodal .modal-content {
  /* padding: 52px 40px 40px; */
  max-width: 389px;
  width: 100%;
  color: #220e27;
  margin: 20px auto;
  border-radius: 8px;
  overflow-y: auto;
}

.smallmodal .modal-content h1 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;

  margin: 0 0;
}

.smallmodal .modal-dialog-scrollable .modal-body {
  overflow-y: unset;
}

.smallmodal .modal-content .outlineBtn {
  /* height: 56px; */
  /* width: 100%; */
  margin: 0 0 12px;
  font-size: 18px;
}

/* modal-dialog-help */

.modal-dialog-help .modal-content .carousel-item {
  min-height: 436px;
}

.modal-dialog-help .modal-content span {
  color: #1d59f9;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  display: block;
}

.modal-dialog-help .modal-content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 12px;
  color: #220e27;

}

.modal-dialog-help .modal-content p {
  color: #68676c;
  font-size: 13px;
  min-height: 86px;
  line-height: 21px;
  margin: 0;

}

.modal-dialog-help .modal-content .carouselBtn {
  width: 100px;
  min-width: 50px;
  height: 40px;
  font-size: 15px;
  line-height: 26.25px;
  color: #1d59f9;
  border: 2px solid #1d59f9;
  font-weight: 700;
  border-radius: 28px;
  transition: all 0.2s ease-in-out;
}

.modal-dialog-help .modal-content .carouselNextBtn {
  color: #fff;
  background-color: #1d59f9;
}

.modal-dialog-help .modal-content .carouselNextBtn:hover {
  background-color: #1043cb;
}

.modal-dialog-help .carousel-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 24px 24px;
}

#helpAcceptbtn,
#helpPrevbtn {
  display: none;
}

.modal-dialog-help .carousel-indicators {
  bottom: -26px;
  max-width: 140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.modal-dialog-help .carousel-indicators li {
  padding: 3px;
  margin: 0 2px;
  background: transparent;
  border: none;
  box-sizing: border-box;
  width: auto;
  height: auto;
  background: gray;
  border-radius: 10px;
}

.modal-dialog-help .carousel-indicators li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: transparent;
  display: block;
  margin: 0;
}

.modal-dialog-help .carousel-indicators li.active {
  background-color: #1043cb;
}

/* .modal-content */

.borderSection .form-group .form-control,
.borderSection .form-group .form-control:hover {
  border: 2px solid #fe4256;
}

.dropdown-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-group .form-group {
  /* width: calc(25% - 12px); */
  margin-bottom: 22px;
}

.dropdown-group.my-qr.filters {
  flex-wrap: wrap;
}

.dropdown-group.my-qr.filters .form-group.last-count .btn-group .btn,
.dropdown-group.my-qr.filters .form-group.last-count .btn-group,
.dropdown-group.my-qr.filters .form-group.last-count {
  min-width: 100px;
}

.dropdown-group .form-group .form-control {
  border-radius: 24px;
  height: 36px;
  font-family: Lato, sans-serif !important;
  padding: 0 8px;
  font-size: 14px;
  box-shadow: none;
}

.dropdown-group .form-group .form-control:hover,
.filter-conteiner .form-control:hover,
.filter-conteiner .btn-group:hover {
  border-color: #96949c;
}

.dropdown-group .form-group .form-control:focus,
.filter-conteiner .form-control:focus,
.filter-conteiner .btn-group:active {
  border-color: #1d59f9;
  box-shadow: none;
}

.all-qrinfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0px;
  /* box-shadow: rgb(205 209 224) 0px 4px 6px 0px; */
  border-radius: 8px;
  /* background-color: #fff; */
  margin-bottom: 12px;
}

.all-qrinfo .qritem {
  /* width: 33.33%; */
  /* height: 69px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  border-right: 2px solid rgb(234, 234, 236);
}

.all-qrinfo .qritem:last-child {
  border-right: none;
}

.all-qrinfo .qritem .itemcount {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 38px;
  color: #220e27;

}

.all-qrinfo .qritem .itemlabel {
  font-size: 12px;
  color: #68676c;
  font-weight: 400;
  line-height: 15px;

  margin: 0;
}

.scan-activities .card {
  background-color: #fff;
  border-radius: 8px !important;
}

.scan-activities .card .cardBody {
  padding: 24px 24px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
}

@media (max-width: 1400.95px) {
  .scan-activities .card .cardBody {
    padding: 24px 24px 24px 24px;
  }

  @media (max-width: 360.95px) {
    .scan-activities .card .cardBody {
      padding: 24px 24px 24px 24px;
    }

  }

}

.qrrecord-container .noRecordMsg {
  color: #68676c;
  font-size: 14px;
  line-height: 20px;

}

.qrrecord-container .custom-accodian {
  margin-top: 12px;
}

.qrrecord-container .custom-accodian .accodianBtn {
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
}

.qrrecord-container .custom-accodian .accodianBtn[aria-expanded="true"] .leftArrow {
  transform: rotate(90deg);
}

.qrrecord-container .custom-accodian .accodianBtn[aria-expanded="false"] .leftArrow {
  transform: rotate(0deg);
}

.qrrecord-container .custom-accodian .collapseInner {
  padding: 24px 24px 32px;
  border-top: 2px solid #eaeaec;
}

.qrrecord-container .custom-table .table th {
  padding: 0 10px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;

  color: #220e27;
  text-transform: uppercase;
}

.qrrecord-container .custom-table .table th:first-child {
  padding-left: 0;
}

.qrrecord-container .custom-table .table th:last-child {
  padding-right: 0;
}

.qrrecord-container .custom-table .table td {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;

  color: #68676c;
  border: none !important;
}

.qrrecord-container .custom-table .table td:first-child {
  padding-left: 0;
}

.qrrecord-container .custom-table .table td:last-child {
  padding-right: 0;
}

.qrrecord-container .custom-table .table .opsystem {
  width: 185px;
}

.qrrecord-container .custom-table .table .index {
  width: 40px;
}

.qrrecord-container .custom-table .table .name {
  width: 145px;
}

.qrrecord-container .custom-table .table .scans {
  width: calc(100% - 270px);
}

.qrrecord-container .custom-table .table .percentage {
  width: 85px;
  text-align: right;
}

.qrrecord-container .custom-table .table .number {
  min-width: 46px;
}

.qrrecord-container .custom-table .table .textwrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 125px;
}

.qrrecord-container .custom-table .table .progress {
  flex: 1;
  border-radius: 8px;
  height: 8px;
  background-color: transparent;
}

.qrrecord-container .custom-table .table .progress .progress-bar {
  border-radius: 4px;
  background-color: #1d59f9;
}

/* planPricesPage */

.planPricesPage,
.termConditionsPage,
.faqPage {
  width: calc(100% - 60px);
  max-width: 820px;
  align-items: center;
  margin: 0 auto;
}

.planPricesPage .bill-detail .billing-plan {
  padding: 0 0 64px;
  box-shadow: none;
}

.planPricesPage .bill-detail .billing-plan .bill-data .bill {
  border: 3px solid transparent;
}

.planPricesPage .bill-detail .billing-plan .bill-data .bill.blue-line {
  border: 3px solid #1d59f9;
  margin: 0;
}

.planPricesPage .bill-detail .billing-plan .bill-data .bill2 {
  margin: 0;
}

.bill-detail .QuestionAccodianMenu {
  margin-top: 56px;
}

.planPricesPage .bill-detail .questionsAccodian {
  max-width: 505px;
  box-shadow: none;
  padding: 0;
}

/* termConditionsPage privacyPolicyPage cookiesPolicyPage gdpr*/

.termConditionsPage .termsContain,
.faqPage .accrodianDetail {
  padding: 40px 0 50px;
}

.termConditionsPage .termsContain .termsButton {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.termConditionsPage .termsContain .termsDetail {
  padding: 48px 44px 52px;
  font-size: 16px;
  line-height: 30px;
  color: #68676c;

  font-weight: 400;
}

.termConditionsPage .termsContain .termsDetail p {
  margin-bottom: 21px;
  flex: 1;
}

.termConditionsPage .termsContain .termsDetailText {
  display: flex;
  align-items: baseline;
}

.termConditionsPage .termsContain .termsDetailText a {
  margin-bottom: 20px;
}

.termConditionsPage .termsContain .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fe8e3e;
  margin-right: 28px;
}

.termConditionsPage .termsDetail h2 {
  font-size: 22px;
  margin: 50px 0 20px;
  line-height: 32px;
  color: #220e27;
  font-weight: 600;
}

.termConditionsPage .termsDetail a {
  color: #fe8e3e;
  display: inline-block;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: none;
  position: relative;
}

.termConditionsPage .termsDetail a::after {
  width: 100%;
  bottom: 0px;
  height: 1px;
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out 0s;
  background-color: currentcolor;
}

.termConditionsPage .termsDetail a:hover {
  color: #eb6201;
}

.termConditionsPage .termsDetail a:hover::after {
  opacity: 1;
}

.termConditionsPage .termsDetailInner {
  display: flex;
  padding-left: 36px;
}

.termConditionsPage .termsContain .termsDetailInner span {
  margin-right: 23px;
}

.termConditionsPage .termsContain .termsDetail h3 {
  color: #68676c;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  margin: 25px 0 12px;
}

.termConditionsPage .termsContain .policyBtn,
.faqPage .policyBtn {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.faqPage .policyBtn {
  margin-bottom: 150px;
}

.termConditionsPage .policyBtn .primaryBigButton,
.faqPage .policyBtn .primaryBigButton {
  max-width: 295px;
  height: 64px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Faq Page */

.faqPage .custom-accodian {
  box-shadow: none;
}

.faqPage .custom-accodian .accodianBtn {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0px;
  font-weight: 600;
  padding: 0 16px;
  color: #220e27;
  text-align: left;
}

.faqPage .custom-accodian .accodianBtn .svg-inline--fa {
  margin-left: 24px;
}

.faqPage .custom-accodian .accodianBtn.collapsed {
  margin-bottom: 24px;
}

.faqPage .custom-accodian .collapseInner {
  padding: 0 40px 32px 16px;
  color: #68676c;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;

  margin-bottom: 16px;
}

.faqPage .collapseInner p {
  margin: 0;
}

/* Account Page Css */

#current_password {
  border-radius: 50px;
}

.account-button {
  display: flex;
  justify-content: end;
}

.custom-container .card {
  border-radius: 8px;
  margin-bottom: 12px;
  background-color: #fff;
  box-shadow: rgb(205 209 224) 0px 4px 6px 0px;
}

.accountCardDetail .taxCardDetailRow {
  margin: auto;
  padding: 40px 20px;
}

.accountCardDetail .taxCardDetailRow .positionSvg {
  position: absolute;
  top: 13px;
  right: 10px;
}

.accountCardDetail .taxCardDetailRow .companyTypeGroup {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.accountCardDetail .taxCardDetailRow .companyTypeGroup .companyItem {
  width: calc(50% - 8px);
  position: relative;
}

.accountCardDetail .companyItem .companyTypeButton {
  border: 2px solid transparent;
  font-size: 13px;

  font-weight: 700;
  color: #210e2580;
  transition: all 0.2s ease-in-out;
}

.accountCardDetail .taxCardDetailRow .companyTypeGroup .companyItem .radioButton {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  opacity: 0;
}

.accountCardDetail .taxCardDetailRow .companyTypeGroup .companyItem .radioButton:checked~.companyTypeButton {
  border-color: #1d59f9 !important;
  color: #220e27;
}

.accountCardDetail .taxCardDetailRow .companyTypeGroup .companyItem .radioButton:hover+.companyTypeButton {
  border-color: #96949c;
  color: #220e27;
  transition: all 0.2s ease-in-out;
}

/* Custom ColorPicker Style */

.customColorPicker {
  padding: 0 15px;
  min-height: 50px;
  border-radius: 50px;
  border: 2px solid #eaeaec;
  box-shadow: none;
  transition: background-color, border-color 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.customColorPicker label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-direction: row-reverse;
  margin-bottom: 0 !important;
}

.customColorPicker label img {
  display: none;
}

.customColorPicker label span {
  font-size: 15px;
  line-height: 18px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}

.customColorPicker .pickerField {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgb(234, 234, 236);
}

.customColorPicker .pickerField::-webkit-color-swatch-wrapper {
  padding: 0;
}

.customColorPicker .pickerField::-webkit-color-swatch {
  border: none;
}

.socialFormContainer {
  padding-bottom: 19px;
}

.socialFormContainer .socialItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 26px;
  justify-content: space-between;
}

.socialFormContainer .socialItem .socialInner {
  max-width: 165px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.linkform .socialItem .socialInner {
  max-width: 275px;
}

.linkform .socialItem .socialInput {
  max-width: unset !important;
}

.linkform .socialItem .socialBtn {
  width: unset !important;
}

.socialFormContainer .socialItem .socialInner img {
  width: 32px;
  margin-right: 16px;
}

.socialFormContainer .socialInner span {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  flex-shrink: 0;
  border-radius: 100%;
  /* background-color: #1D59F9; */
}

.socialFormContainer .socialDetail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.socialFormContainer .socialItem .socialInput {
  max-width: 540;
  width: 100%;
}

.socialFormContainer .socialItem .socialInput input {
  height: 46px;
  padding: 0 15px;
}

.socialFormContainer .socialItem .socialBtn {
  margin-left: 23px;
  max-width: 85px;
  width: 100%;
  text-align: right;
}

.socialFormContainer .socialBtn button {
  font-size: 21px;
  color: #96949c;
  transition: color 0.2s ease-in-out;
}

.socialFormContainer .socialBtn button:hover {
  color: #220e27;
}

.socialIconContainer {
  display: flex;
  align-items: center;
  padding: 15px 24px;
  background-color: #f7f7f7;
  border-radius: 4px;
}

.socialIconContain {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.socialIconContain .boxtagLabel {
  padding: 6px;
}

.boxtagLabel:hover,
.productIcon .boxtagLabel:hover {
  border-color: #1043cb;
  background-color: #f8f8f9;
}

.socialLabel {
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  color: #68676c;
  min-width: 251px;

}

.couponLocation p {
  color: #220e27;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 9px;
}

.couponLocation .couponButtonGroup {
  display: flex;
  padding: 12px;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 23px;
  background-color: #f7f7f7;
  justify-content: space-between;
}

.couponLocation .couponButtonGroup .squreBtn {
  width: calc(33.33% - 6px);
  border: 3px solid #eaeaec !important;
  height: 52px;
  border-radius: 8px;
  flex-direction: row;
  background-color: #fff;
  font-weight: 400;
  color: #8b8b8d !important;
}

.couponLocation .couponButtonGroup .squreBtn.active {
  color: #220e27 !important;
  border-color: #1d59f9 !important;
}

.manualyBtn {
  width: 100%;
  max-width: 160px;
  height: 50px;
  min-width: auto;
  margin-left: 12px;
}

.paraheading {
  color: #220e27;
  font-size: 16px;
  font-family: Lato, sans-serif !important;
  font-weight: 600;
  line-height: 22px;
  margin: 0 0 9px;
}

.reapeterCloseIcon {
  padding-left: 7px;
  display: flex;
  color: #96949c;
}

.reapeterCloseIcon svg {
  font-size: 21px;
}

@media only screen and (max-width: 1199px) {
  .jss1472 {
    padding-right: 5px;
  }

  .jss1473 {
    font-size: 15px;
  }
}

#sendEmailModal.show.activeAuth,
#forgotModal.show.activeAuth,
#registerModal.show.activeAuth,
#loginModal.show.activeAuth {
  z-index: 9999;
}

#sendEmailModal.show.activeAuth .modal-dialog,
#forgotModal.show.activeAuth .modal-dialog,
#registerModal.show.activeAuth .modal-dialog,
#loginModal.show.activeAuth .modal-dialog {
  z-index: 9999;
}

#sendEmailModal.show.activeAuth::after,
#forgotModal.show.activeAuth::after,
#registerModal.show.activeAuth::after,
#loginModal.show.activeAuth::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  content: "";
}

@media only screen and (max-width: 575px) {
  .ffc {
    flex-direction: column;
  }

  .fm {
    margin-left: 0 !important;
    margin-bottom: 20px;
  }

  .jss53 {
    flex-grow: 1;
  }

  .jss53 .square-btn.preview-qr-btn {
    flex-grow: 1;
  }
}

@media only screen and (max-width: 420px) {}

/* Aman Style */

/* Right Side Preview */

.col-left {
  /* padding-right: 15px; */
  /* height: calc(100vh - 148px); */
  /* overflow-y: auto; */
  padding-bottom: 24px;
  /* width: 65.16%; */
}

.col-right {
  flex: 1;
  /* max-width: 358px; */
  padding: 0 32px;
  /* height: calc(100vh - 148px); */
  /* overflow-y: auto; */
  padding-top: 52px;
}

.col-right .col-right-inner {
  /* max-width: 410px; */
  max-width: 400px;
}

.steps-ped {
  padding-top: 0 !important;
}

.radio-btn-group .create-card {
  margin-bottom: 17px;
}

.medium-modal {
  max-width: 660px !important;
  margin: 0 auto !important;
  width: 100% !important;
  overflow: hidden;
}

.medium-modal .modal-content.qrCodeModal {
  background-color: #e6e8ef;
}

.medium-modal .modal-content.previewModal {
  /* background-color: #1d59f9; */
  background-color: #fff;
}

.medium-modal .modal-content {
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  border: none;
  padding: 21px 21px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

.medium-modal .modal-content.qrCodeModal .large-icon {
  background-color: #220e27;
  color: #ffffff;
}

.medium-modal .modal-content.previewModal .large-icon {
  background-color: #ffffff;
  color: #96949c;
}

.medium-modal .modal-content .large-icon {
  top: 16px;
  right: 16px;
  position: absolute;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  padding: 0px 0px 3px;
}

.medium-modal .modal-content.qrCodeModal p {
  color: #220e27;
}

.medium-modal .modal-content.previewModal p {
  color: #fff;
}

.medium-modal .modal-content p {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.medium-modal .modal-content .qrCodeImg {
  background-color: #fff;
  display: flex;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  height: 250px;
  margin-top: 46px;
  margin-bottom: 108px;
}

.medium-modal .modal-content .qrCodeImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medium-modal .modal-content .mb-frame-inner {
  /* width: 320px; */
  margin: 20px auto;
}

.steps-ped {
  padding-right: 16px !important;
  padding: 0px;
}

@media only screen and (max-width: 1200px) {
  .col-left {
    width: 100%;
  }

  .jss1452 {
    width: 100%;
    margin: 0 auto;
  }

  .col-right {
    /* display: none; */
  }

  .jss1456 {
    padding: 0 20px;
  }

  .steps-ped {
    padding-right: 0px !important;
    /* padding-left: 14px !important; */
  }
}

@media only screen and (max-width: 960px) {
  body:not(.app).scroll-none {
    overflow: hidden;
    overscroll-behavior-y: none;
    -webkit-touch-callout: none; 
  }

  .col-right,
  .col-left {
    /* height: calc(100vh - 120px); */
  }

  .jss1347.main-inner .custom-row {
    min-height: 100vh;
  }

  .jss60 {
    min-width: 40px;
    border-radius: 8px;
    padding: 5px 5px;
    max-width: 40px;
    width: auto;
    height: 48px;
    margin-right: 4px;
  }

  .jss56 {
    width: 120px;
  }

  /* .radio-btn-group .input-container img {
    width: 64px;
    height: 64px;
    margin: 0 16px 0 0;
  } */

  .jss1458 {
    padding: 0 20px;
  }

  #step-id-label {
    padding-left: 18px;
  }

  .jss53 .square-btn {
    display: block;
  }
}

@media only screen and (max-width: 660px) {
  .MuiStepLabel-root {
    flex-direction: column;
  }

  .MuiStep-root {
    flex: 1;
    text-align: center;
  }

  .MuiStepLabel-labelContainer {
    margin-top: 10px;
  }

  .MuiStepper-horizontal {
    align-items: flex-start;
  }

  .jss1483 {
    padding-top: 11px;
    max-width: 45px;
  }

  .jss1456 {
    align-items: flex-end;
    margin-top: 20px;
    margin-bottom: 9px;
    flex-direction: column;
  }
}

@media only screen and (max-width: 520px) {}

/* Sticky Navbar */

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 99;
}

/* Separate Scrollbars  */

.main-content {
  height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main-inner {
  flex: 1;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) {
  .main-inner {
    min-height: calc(100vh - 72px);
  }

  .main-inner .custom-row {
    min-height: calc(100vh - 72px);
  }
}

@media only screen and (max-width: 991px) {
  .main-content {
    height: calc(100vh - 59px);
  }
}

/*  Mobile Frame */

.mb-frame-inner::before {
  /* background-image: url(../images/iphone.png); */
  /* position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 100%;
    z-index: 5; */
}

.mb-frame-inner::after {
  /* position: absolute;
    content: '';
    width: calc(100% - 6px);
    height: calc(100% - 5px);
    top: 3px;
    left: 3px;
    background-color: #fff;
    z-index: -1;
    border-radius: 50px; */
}

@media (max-width: 1536.98px) {
  .mb-frame-inner.desktop-frame-inner iframe {
    border-radius: 30px;
  }

  .mb-frame-inner.desktop-frame-inner .card iframe {
    width: 100%;
    height: 100%;
  }

  .mb-frame-inner.desktop-frame-inner .card::after {
    background-size: 290px;
    left: 0;
  }

  @media only screen and (max-height: 667px) {
    /* .mb-frame-inner.desktop-frame-inner {
            width: 240px;
            height: 480px;
        } */

    .mb-frame-inner.desktop-frame-inner .card iframe {
      width: 100%;
      /* height: 450px; */
    }
  }

  .mb-frame-inner .iphone-line.mobile-qr {
    bottom: 22px;
    left: -1px;
  }
}

.card.mb-frame-inner .card {
  height: calc(100% - 15px);
  top: -8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  /* background-color: transparent; */
  position: relative;
}

.card.mb-frame-inner .card .card-body {
  display: flex;
}

/* #tabs-2 .mb-frame-inner .card::after { */
.mb-frame-inner .card::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 32px;
  top: 8px;
  left: 0;
  background-image: url(../images/status-bar.png);
  background-position: center top;
  background-size: 290px;
  background-repeat: no-repeat;
}

.frame-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.frame-left {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #cdd1e0;
}

.frame-right {
  width: 29px;
  height: 4px;
  border-radius: 2px;
  background-color: #cdd1e0;
}

.mb-frame-inner iframe {
  border-radius: 46px;
}

.mb-frame-inner .iphone-line {
  position: absolute;
  background: black;
  height: 4px;
  width: 100px;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 18px;
}

.mb-frame-inner .iphone-line.mobile-qr {
  bottom: 27px;
  left: -1px;
}

/*qr preview*/
.mui-style-1aio0y8#preview_qrcode_mobile {
  width: 214px;
  /* background-color: #fff; */
}

.mui-style-1aio0y8#preview_qrcode_mobile .MuiTabs-scroller .MuiTabs-flexContainer ul.nav li a,
.mui-style-1aio0y8#preview_qrcode_mobile .MuiTabs-scroller .MuiTabs-flexContainer ul.nav li button {
  background-color: transparent;
}

.mui-style-1aio0y8#preview_qrcode_mobile .MuiTabs-scroller .MuiTabs-flexContainer ul.nav li a.active,
.mui-style-1aio0y8#preview_qrcode_mobile .MuiTabs-scroller .MuiTabs-flexContainer ul.nav li button.active {
  background-color: rgb(84, 130, 219);
}

/* #PreviewModal0.modal,
#PreviewModal0.modal .medium-modal,
#PreviewModal0.modal .medium-modal .previewModal{
    overflow: visible;
} */
#PreviewModal0.modal .medium-modal .previewModal .tab-content #tabs-2m .mb-frame-inner {
  background-color: transparent;
}

#PreviewModal0.modal .medium-modal .previewModal .tab-content.mb-frame {
  padding: 8px 8px 0;
  /* height: 480px; */
}

#PreviewModal0.modal .medium-modal .previewModal {
  top: -20px;
  background-color: transparent;
  padding: 8px;
  margin: 4px 10px 8px;
}

.col-right-inner .btn-close {
  padding: 4px 16px;
  /* position: absolute; */
  bottom: -45px;
  background-color: rgba(0, 0, 0, 0.25);
  border-color: #fff;
  border-radius: 8px;
  font-size: 20px;
  margin: 10px auto 0;
  display: block;
}

.col-right-inner .btn-close.btn-x {
  border: 0;
  min-width: 40px;
  height: 40px;
  left: 100%;
  position: absolute;
  top: -2px;
  background: transparent;
  z-index: 1;
  margin-top: 0;
}

.mui-style-1aio0y8 {
  overflow: hidden;
  display: flex;
  width: 214px;
  border: 2px solid rgb(84, 130, 219);
  border-radius: 100px;
  min-height: unset;
  padding: 2px;
  margin: 0 auto;
}

.mui-style-1anid1y {
  position: relative;
  display: inline-block;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow-x: hidden;
  width: 100%;
}

.mui-style-1l4w6pd {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.mui-style-22nrau {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  border: 0px;
  margin: 0px;
  border-radius: 0px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  font-family: Rubik, sans-serif;
  max-width: 360px;
  min-width: 90px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  flex-direction: column;
  min-height: unset;
  color: rgb(84, 130, 219);
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  padding: 6px 16px;
  text-transform: none;
}

/*QR Preview End*/

/* QR styling */

.shape-btn {
  border: 2px solid #eaeaec;
  background: #fff !important;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  padding: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.shape-btn:hover {
  border-color: #96949c;
}

.shape-btn input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.shape-btn svg {
  min-width: 76px;
  min-height: 76px;
}

.shape-btn:after {
  content: "";
  left: 0;
  right: 0;
  width: 2px;
  bottom: -21px;
  height: 0px;
  position: absolute;
  transition: bottom 0.2s ease-in-out;
  background-color: #fe8e3e;
  margin: 0 auto;
  opacity: 0;
}

.shape-btn.active:after {
  opacity: 1;
  height: 13px;
}

.shape-btn.active {
  border-color: #fe8e3e !important;
}

/* My QR Code */

.my-qr .w-30 {
  width: 30%;
  margin-right: 16px;
}

.my-qr .qrCode-check {
  margin: 0 14px;
}

.my-qr .w-20 {
  width: 20%;
  margin-right: 10px;
}

.my-qr .w-10 {
  width: 10%;
}

.large-btn {
  width: 187px !important;
  min-width: 64px !important;
  height: 56px !important;
  padding: 6px 16px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.75 !important;
  white-space: nowrap !important;
  border-radius: 28px !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.large-btn .start-icon {
  display: inherit;
  margin-left: -4px;
  margin-right: 10px;
}

@media only screen and (max-width: 1280px) {
  .large-btn {
    height: 48px;
    font-size: 15px;
  }
}

.search-bar {
  border-radius: 8px;
  position: relative;
  flex: 1;
}

.search-bar span {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}

/* .my-qr .w-20 label, .my-qr .w-10 label {
	color: #68676C;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 4px;
} */

.folder-section {
  /* margin-top: 36px; */
  margin-bottom: 16px;
}

.folder-section label {
  /* font-weight: 700; */
  line-height: 22px;
  letter-spacing: 1px;
  margin: 0;
  display: block;
}

.folder-container {
  display: flex;
  overflow-y: auto;
  padding-bottom: 10px;
  padding-top: 12px;
}

.folder-container .my-folder {
  min-width: 187px;
  padding: 14px 16px 18px;
  margin-right: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
  box-shadow: rgb(205 209 224) 0px 4px 6px 0px;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  border: 1px solid transparent;
}

.folder-container .my-folder:hover {
  border-color: var(--brand-color-primary);
}

.folder-container .my-folder h4 {
  font-size: 13px;
  line-height: 24px;
  margin: 0 0 8px;
  overflow: hidden;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.folder-container .my-folder .folder-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.folder-container .my-folder .folder-inner span {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0px;
  color: rgb(150, 148, 156);
  font-weight: 600;
}

.folder-container .my-folder .folder-inner .badge {
  width: 30px;
  height: 20px;
  display: flex;
  padding: 0 11px;
  font-size: 13px;
  align-items: center;
  font-weight: 500;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  background-color: #f7f7f7;
  color: #220e27;
}

.folder-btn {
  width: 155px !important;

}

.folder-btn.outlineBtn {
  background-color: #fff !important;
}

.folder-btn.outlineBtn:hover {
  background-color: transparent !important;
}

.back-btn {
  color: #1d59f9;
  display: flex;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  align-items: center;
  font-weight: 700;
  margin-left: -2px;

}

.back-btn:hover {
  color: #1043cb;
}

@media only screen and (max-width: 960px) {
  .medium-modal .modal-content .mb-frame-inner {
    margin: 8px auto;
    width: 270px;
    height: 540px;
  }

  .mb-frame-inner .iphone-line.mobile-qr {
    bottom: 25px;
    left: 0px;
  }

  .folder-section {
    margin-top: 8px;
  }

  .folder-section label {
    font-size: 12px;
  }

  /* .mb-frame-inner {
        width: 225px;
        height: 450px;
    } */
  .mb-frame-inner iframe {
    border-radius: 30px;
  }

  .mb-frame-inner .card {
    border-radius: 30px;
  }

  .mb-frame-inner .card::after {
    background-size: 310px;
  }

  .folder-container .my-folder {
    min-width: 134px;
    padding: 12px;
    margin-right: 12px;
  }

  .folder-container .my-folder h4 {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 2px;
  }

  .folder-container .my-folder .folder-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .folder-container .my-folder .folder-inner span {
    font-size: 11px;
    line-height: 16px;
    /* margin-bottom: 8px; */
  }

  .socialLabel {
    width: unset;
  }
}

/* Sidebar Menu */

.toggle-container {
  margin: 32px 11px 0 32px;
  border-top: 1px solid #eaeaec;
}

.menu-toggle {
  border-bottom: 1px solid #eaeaec;
}

.menu-toggle .tab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  cursor: pointer;
}

.menu-toggle .tab-head label {
  font-size: 13px;
  line-height: 20px;

  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.menu-toggle .tab-head[aria-expanded="false"] label {
  opacity: 0.3;
}

.menu-toggle .tab-head:hover label {
  opacity: 1;
}

.menu-toggle .tab-head span {
  opacity: 0.3;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  display: block;
  float: right;
  position: absolute;
  right: -1px;
  top: 16px;

}

.menu-toggle .tab-head .minimize {
  top: 12px;
}

.menu-toggle .tab-head:hover span {
  opacity: 1;
}

.menu-toggle .tab-head[aria-expanded="false"] .minimize {
  transform: rotate(180deg);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition-delay: 0.5s;
  opacity: 0;
}

.menu-toggle .tab-head[aria-expanded="true"] .plus {
  transform: rotate(180deg);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition-delay: 0.5s;
  opacity: 0;
}

.menu-toggle .tab-head[aria-expanded="true"] .minimize {
  opacity: 1;
}

.menu-toggle .toggle-link {
  list-style: none;
  padding: 0 0 19px;
  margin: 0;
}

.menu-toggle .toggle-link li {
  margin-top: 4px;
  cursor: pointer;
}

.menu-toggle .toggle-link a {
  padding: 9px 0px 9px 7px;
  opacity: 0.3;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;

  display: block;
  text-decoration: none;
  color: #220e27;
}

.menu-toggle .toggle-link li:hover a {
  opacity: 0.7;
}

.menu-toggle .toggle-link li:first-child {
  margin-top: 0;
}

.triel-tab {
  height: 40px;
  display: flex;
  margin-top: 20px;
  align-items: center;
  padding-left: 12px;
  border-radius: 4px;
  padding-right: 8px;
  justify-content: space-between;
  background-color: #cdd1e04d;
}

.triel-tab span {
  color: #220e27;
  font-size: 12px;

  font-weight: 600;
}

.custom-container {
  width: calc(100% - 60px);
  max-width: 998px;
  padding-top: 36px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.custom-heading {
  margin: 0 0 35px;
  font-size: 24px;
  font-weight: 500;
  line-height: 25px;

}

@media (max-width: 660px) {
  .custom-container {
    width: calc(100% - 40px);
  }

  .custom-heading {
    margin-bottom: 20px;
  }
}

/* customScrollbar */

.customScrollbar::-webkit-scrollbar-thumb {
  background: #00000033;
  border-radius: 30px;
}

.customScrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.customScrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.overflow-auto {
  display: flex;
  flex-direction: column;
}

/* QR code frame css start*/

.frameWrapper {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
}

.frameSlide .qr_frame_button {
  width: 80px;
  border: 2px solid #eaeaec;
  padding: 8px;
  min-height: 100px;
  max-height: 100px;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  background-color: #fff;

}



.frameSlide .qr_frame_button:hover {
  border-color: #96949c;
}

.frameSlide .qr_frame_button.active {
  border-color: #fe8e3e;
}

.frameSlide .qr_frame_button img {
  height: 80px;
  max-width: 62px;
}

/* QR code frame CSS end */

.collapse-btn {
  padding: 28px;
  border-top: 1px solid #eaeaec;
}

.collapseInner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.collapseInner-head span {
  color: #220e27;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.square-btn {
  box-shadow: none;
  background-color: #fff;
  padding: 5px 15px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  text-transform: none;
  white-space: nowrap;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square-btn.active {
  background-color: rgb(25, 118, 210);
  border-radius: 50px;
  color: white;
}

.square-btn:hover {
  /* border: 2px solid #1D59F9; */
}

/* dashboard dropdown button */

button.btn.dropdown-toggle.bs-placeholder.btn-light {
  background: #fff;
  border-radius: 30px;
}

.preview-head {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-head h4 {
  color: #220e27;
  height: 36px;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.preview-head .clear-btn {
  color: #220e27;
  cursor: pointer;
  display: flex;
  outline: 0;
  align-items: center;
}

.preview-head .clear-btn:hover span {
  text-decoration: underline;
}

.preview-head .clear-btn span {
  font-size: 20px;
  font-weight: 500;
  margin-right: 10px;
}

.preview-head .square-btn.active {
  display: none;
}

.custom-upload {
  margin-bottom: 23px;
}

.custom-upload label {
  width: 100%;
  /* height: 150px; */
  height: auto;
  padding: 14px;
  font-weight: 600;
  border: 2px dashed #96949c;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  margin: 0;
  transition: all 0.2s ease-in-out;
}

.custom-upload label:hover {
  border-color: #68676c;
}

.custom-upload label input,
.welcome-screen .screen-upload label input {
  width: 100% !important;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  top: 0;
  left: 0;
}

.welcome-screen .screen-upload label .input-image img {
  max-width: 100%;
  height: auto;
}

.custom-upload label .upload-btn,
.custom-upload label .change-btn,
.welcome-screen .screen-upload .upload-btn {
  height: 56px;
  padding: 6px 16px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;

  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  text-transform: none;
  outline: 0;
}

.custom-upload label .upload-btn,
.welcome-screen .screen-upload .upload-btn {
  border: 0;
  background-color: #1d59f9;
  min-width: 200px;
  color: #fff;
}

.custom-upload label .upload-btn:hover,
.welcome-screen .screen-upload .upload-btn:hover {
  background-color: #1043cb;
}

.custom-upload label .change-btn {
  color: #220e27;
  min-width: 160px;
  border: 2px solid #96949c;
  background-color: #fff;
}

.custom-upload label .change-btn:hover {
  border-color: #1043cb;
  background-color: #f8f8f9;
}

.custom-upload label span {
  color: #220e27;
  margin-top: 16px;
  font-size: 13px;
  line-height: 18px;
}

.custom-upload label .before-upload {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.custom-upload label .after-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 21px 34px 21px 26px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

.custom-upload label .after-upload img {
  height: 80px;
  width: 80px;
}

.custom-upload label .after-upload img {
  height: 80px;
  width: 80px;
  margin-right: 20px;
}

.custom-upload label .after-upload span {
  color: #220e27;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 0 20px 0 0;
}

.afterImage-upload {
  border: 2px solid #eaeaec;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  margin-bottom: 8px;
  background-color: #fff;
  position: relative;
}

.afterImage-upload div.d-flex {
  position: relative;
  z-index: 5;
}

.afterImage-upload .progressbar {
  position: absolute;
  background-color: rgba(0, 71, 255, 0.05);
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  /* transition: 1s; */
}

.afterImage-upload:last-child {
  margin-bottom: 0;
}

.afterImage-upload .imagePreview {
  width: 64px;
  border: 2px solid #eaeaec;
  height: 64px;
  padding: 6px;
  margin-right: 16px;
  border-radius: 8px;
  background-color: #fff;
}

.afterImage-upload .imagePreview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* .afterImage-upload .previewDetail {
    width: 50px;
} */
.afterImage-upload .previewDetail label {
  color: #220e27;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  display: block;
  margin: 0;
  text-overflow: ellipsis;
}

.afterImage-upload .previewDetail span {
  color: #96949c;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
  line-height: 17px;
  display: block;
}

.afterImage-upload button {
  /* color: #FE4256; */
  width: 33px;
  height: 48px;
  border: 0;
  cursor: pointer;
  outline: 0;
  padding: 0;
  background: transparent;
}

.afterImage-upload .flex-1 {
  flex: 1;
  z-index: 1;
}

.afterImage-upload .previewDetail .f-500 {
  font-weight: 500;
}

.afterImage-upload .videoPreview {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background-color: #eaeaec;
  margin-right: 28px;
}

.afterImage-upload .videoPreview iframe {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.afterImage-upload .videoPreview img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.afterImage-upload .videoPreview video {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.afterImage-upload .textarea-control {
  margin-top: 15px;
  resize: none;
}

.checkbox-wrapper {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 4px;
  background-color: #f7f7f7;
}

.img_check_wrapper {
  margin-top: 24px;
}

.checkbox-wrapper .passwordlabel {
  color: #68676c;
  font-size: 13px;
  transition: color 0.2s ease-in-out;

  font-weight: 600;
  line-height: 18px;
}

.checkbox-wrapper:hover .passwordlabel {
  color: #220e27;
}

.checkbox-wrapper:hover .roundCheckbox label {
  border-color: #68676c;
}

.form-group .accountSaveButton {
  width: 160px;
  height: 48px;
  font-size: 15px;
  min-width: 160px;
  margin-top: 1px;
}

.welcome-screen span {
  color: #68676c;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 8px;
  display: block;
}

.welcome-screen .screen-upload {
  display: flex;
  align-items: center;
}

.welcome-screen .screen-upload label {
  color: #96949c;
  width: 80px;
  border: 2px solid #96949c;
  cursor: pointer;
  height: 80px;
  outline: 0;
  padding: 8px;
  position: relative;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  background-color: #fff;
  margin: 0 32px 0 0;
}

.welcome-screen.large-screen .screen-upload label {
  width: 158px;
}

.welcome-screen .screen-upload label:hover {
  border-color: #68676c;
}

.welcome-screen .screen-upload label .input-image {
  width: 60px;
  height: 60px;
  display: flex;
  overflow: hidden;
  align-items: center;
  border-radius: 4px;
  flex-direction: row;
  justify-content: center;
  background-color: #f7f7f7;
}

.welcome-screen.large-screen .screen-upload label .input-image {
  width: 138px;
}

.welcome-screen .screen-upload label .add-icon {
  top: -8px;
  color: #fff;
  right: -8px;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  transition: background-color 0.2s ease-in-out;
  align-items: center;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  background-color: #220e27;
}

.welcome-screen .screen-upload label:hover .add-icon {
  background-color: #68676c;
}

.welcome-screen .screen-upload .delete-btn {
  height: 56px;
  padding: 6px 16px;
  font-size: 18px;
  transition: all 0.2s ease-in-out;

  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  text-transform: none;
  outline: 0;
  color: #1d59f9;
  border: 2px solid #1d59f9;
  background-color: #fff;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-screen .screen-upload .delete-btn svg {
  /* display: inherit; */
  margin-left: -4px;
  margin-right: 10px;
}

.welcome-screen .screen-upload .delete-btn:hover {
  border-color: #1043cb;
  background-color: #f8f8f9;
}

.welcome-screen .screen-upload .upload-btn:disabled {
  color: #fff;
  background-color: #eaeaec;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 960px) {
  .preview-head .clear-btn span {
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
  }

  .welcome-screen .screen-upload .delete-btn,
  .welcome-screen .screen-upload .upload-btn {
    min-width: 112px;
    height: 48px;
    font-size: 15px;
    min-width: 144px;
  }
}

/* customSwitchToggle design */

.customSwitchToggle {
  padding-left: 44px;
  min-height: 38px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.customSwitchToggle .custom-control-label {
  padding-left: 15px;
  color: #68676c;
  font-size: 13px;
  transition: color 0.2s ease-in-out;

  font-weight: 600;
  user-select: none;
  white-space: normal;
}

.customSwitchToggle:hover .custom-control-label {
  color: #220e27;
}

.customSwitchToggle .custom-control-label::before {
  left: -30px;
  width: 34px;
  pointer-events: all;
  border-radius: 0.5rem;
  border: none;
  background: #9f9f9f;
  box-shadow: none !important;
  height: 14px;
}

.customSwitchToggle .custom-control-label::after {
  top: 1px;
  left: 0;
  background-color: #fff;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%),
    0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
  transform: translateX(-32px);
}

.customSwitchToggle .custom-control-label::before {
  display: block;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: #8eacfc;
  background: #8eacfc;
}

.customSwitchToggle .custom-control-input:checked~.custom-control-label::after {
  background-color: #1d59f9;
  transform: translateX(-14px);
}

/* contactPage */

.outerheader {
  padding-top: 62px;
  padding-bottom: 56px;
  width: calc(100% - 60px);
  display: flex;
  max-width: 820px;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
}

.contactPage h1,
.outerheader h1 {
  font-size: 44px;
  line-height: 72px;
  margin: 0 0 12px;
  font-weight: 700;
  color: #220e27;
  text-align: center;

}

.contactPage p,
.outerheader p {
  font-size: 18px;
  line-height: 28px;
  color: #68676c;
  margin: 0px auto;
  max-width: 560px;
  font-weight: 500;
  text-align: center;

}

.contactPage .contactPageDetail {
  /* padding-top: 40px; */
}

.contactPage form {
  margin: 0 auto;
  max-width: 612px;
  padding: 52px 20px 64px;
}

.contactPage .accountSaveButton {
  max-width: 295px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactPage .contactPageColumn {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contactPage .contactPageColumn p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
  text-align: start;
}

.contactPage .contactPageColumn .para {
  color: #191919;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 18px;
}

.contactPage .contactPageColumn label {
  color: #191919;
  font-size: 14px;
  min-width: 51px;
  font-weight: 600;
  line-height: 24px;
}

.contactPage .contactPageColumn span {
  font-size: 14px;
  line-height: 24px;
  padding-left: 8px;
  font-weight: 400;
  color: #1d59f9;
}

.contactPage .contactPageInner {
  padding: 150px 0;
  background-color: #f8f8f9;
  width: calc(100% - 60px);
  display: flex;
  max-width: 1030px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.contactPage .contactCaptcha {
  max-width: 306px;
  margin: 0 auto 23px;
  display: flex;
  padding: 12px;
  align-items: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: start;
  background-color: #f4f4f4;
  /* background-color: #ff0000; */
}
@media (max-width: 350.98px) {
  .contactPage .contactCaptcha {
    position: relative;
    left:-25px;
  }
}

.contactPage .contactCaptcha img {
  width: 100%;
}

.colorPaletteForm {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  overflow-x: auto;
}

.colorPaletteForm .formcolorPalette {
  /* width: calc(20% - 20px); */
  /* height: auto; */
  /* width: calc(20% - 8px); */
  width: calc(14% - 2px);
  border: 2px solid #eaeaec;
  height: 52px;
  display: flex;
  padding: 8px;
  transition: all 0.2s ease-in-out;
  align-items: center;
  border-radius: 4px;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
}

.colorPaletteForm .formcolorPalette:hover {
  border-color: #96949c;
}

.colorPaletteForm .formcolorPalette.active {
  border-color: #fe8e3e;
}

.colorPaletteForm .formcolorPalette::after {
  content: "";
  left: 0;
  right: 0;
  width: 2px;
  bottom: -21px;
  height: 0px;
  position: absolute;
  transition: bottom 0.2s ease-in-out;
  background-color: #fe8e3e;
  margin: 0 auto;
  opacity: 0;
}

.colorPaletteForm .formcolorPalette.active::after {
  height: 13px;
  opacity: 1;
}

.colorPaletteForm input {
  width: 56px;
  /* width: 100%; */
  height: 32px;
  border: none;
  pointer-events: none;
  outline: none;
  padding: 0;
}

.colorPaletteForm .middlePalette {
  margin: 0 5px;
  border: 1px solid #f8f8f9;
}

.colorPaletteForm input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.colorPaletteForm input::-webkit-color-swatch {
  border: none;
}

.colorPaletteForm img {
  display: none;
}

.colorPaletteInner {
  width: 100%;
  height: 118px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 21px 23px 23px;
  position: relative;
  border-radius: 4px;
  background-color: #f7f7f7;
}

.color-error {
  position: absolute;
  padding-top: 5px;
}

.color-error {
  position: absolute;
  padding-top: 5px;
}

.colorPaletteInner .form-group {
  max-width: 240px;
  width: 100%;
}

.colorPaletteInner1 .form-group {
  max-width: 202px !important;
}

.colorPaletteInner button,
.replace-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 100%;
  background-color: #220e27;
  margin-bottom: 7px;
}

.colorPaletteInner .pickerField {
  border: none;
}

.colorPaletteInner .pickerWhiteBorder {
  background-color: #ffffff;
  border: 1px solid #eaeaec;
}

.custom-accodian .formCustomBtn {
  color: #220e27;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  border: 1px solid #d4d1db;
  min-width: 40px;
}

.custom-accodian .formMenuBtn {
  background-color: #eaeaea;
  border-color: #eaeaea;
}

.custom-accodian .collapseInner1 {
  padding: 24px 28px;
  border-top: 1px solid #eaeaec;
}

.productAccodian {
  margin-top: 29px !important;
  background-color: #f7f7f7;
}

.productAccodian .custom-accodian {
  width: 100%;
  display: block;
  padding: 19px 24px 10px;
  border-top: 1px solid #eaeaec;
  text-align: left;
  box-shadow: none;
  background: none;
  border-radius: unset !important;
}

.productAccodian .custom-accodian .accodianBtn {
  min-height: 0;
}

.productIcon {
  /* display: grid; */
  padding: 15px 19px;
  row-gap: 10px;
  column-gap: 10px;
  border-radius: 4px;
  background-color: #fff;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 37px;
}

.productIcon .boxtagLabel {
  border: 2.5px solid #eaeaec;
}

.boxtagLabel:focus {
  background-color: #eaeaec !important;
}

.productAccodianbutton {
  width: 100%;
  padding: 16px 24px;
  border-top: 1px solid #eaeaec;
  background-color: #f7f7f7;
}

.productSectionBtn {
  padding: 24px 28px;
  border-top: 1px solid #eaeaec;
}

.bg-container {
  width: 100%;
  padding: 21px 23px 23px;
  border-radius: 4px;
  background-color: #f7f7f7;
}

.bg-container .bg-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bg-container .bg-inner:last-child {
  margin-bottom: 0;
}

.bg-container .bg-inner .form-group {
  max-width: 285px;
  width: 100%;
}


.bg-container .checkbox-wrapper {
  height: 24px;
}

.bg-container .bg-note {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 24px;
  background-color: #f8f8f9;
}

.bg-container .bg-note svg {
  margin-right: 20px;
}

.bg-container .bg-note p {
  flex: 1;
  color: #68676c;
  font-size: 13px;
  line-height: 21px;
  margin: 0;
}

.bg-container .bg-head {
  color: #220e27;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin: 0 0 20px;
}

.cornerBtn-container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 24px;
}

.eye-btn {
  min-width: 52px;
  max-width: 52px;
  border: 2px solid #eaeaec;
  height: 52px;
  display: inline-flex;
  transition: all 0.2s ease-in-out;
  align-items: center;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  outline: 0;
  padding: 0;
  background-color: #fff;
}

.eye-btn:hover {
  border-color: #96949c;
}

.eye-btn.active {
  border-color: #fe8e3e;
}

.couponLocation1 {
  padding: 0 28px 28px;
}

.couponLocation .squreSmallBtn {
  min-width: 132px !important;
  border-radius: 8px !important;
  width: 132px !important;

  font-size: 14px;
  font-weight: 400 !important;
  line-height: 16px;
}

.facilitiesIcon {
  padding: 31px !important;
  border-radius: 4px;
  background-color: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.appLinks {
  padding-bottom: 19px;
}

.appLinks .socialItem {
  margin-bottom: 18px;
}

.appLink-btn {
  width: 100%;
  display: flex;
  padding: 15px 24px !important;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  background-color: #f7f7f7;
}

.appLink-btn span {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #68676c;
  margin-right: 16px;
  display: block;
}

.appLink-btn button {
  border: 2px solid #000;
  height: 50px;
  min-width: 120px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #f7f7f7;
  font-size: 15px;
  font-weight: 400;
  border-width: 3px !important;
  margin-right: 12px;
}

.appLink-btn button:hover {
  border-color: #1043cb;
  background-color: #f8f8f9;
}

#myQrCode {
  position: relative;
  min-height: 100vh;
  /* overflow-x: hidden; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

#myQrCode .custom-container {
  margin-bottom: 0;
}

#myQrCode .myQrCode-inner {
  flex: 1;
  /* overflow-y: auto; */
}

#myQrCode .qrCode-footer {
  min-height: 76px;
  background: rgb(255, 255, 255);
  position: fixed;
  bottom: 0px;
  box-shadow: rgb(0 0 0 / 14%) 0px -2px 6px 1px;
  width: 100%;
  z-index: 15;
  display: flex;
  justify-content: center;
  max-width: calc(100% - 300px);
}

#myQrCode .qrCode-footer .custom-container {
  margin: 0;
  padding: 0;
}

@media (min-width: 660px) and (max-width: 1199.98px) {
  #myQrCode .qrCode-footer .custom-container>div button {
    width: 124px !important;
  }
}

@media (max-width: 991.98px) {
  #myQrCode .qrCode-footer {
    max-width: 100%;
  }
}

#myQrCode .qrCode-footer .custom-container .footerClose {
  min-width: auto !important;
  width: auto !important;
}

#myQrCode .qrCode-footer button {
  width: 164px;
  min-width: 64px;
}

#myQrCode .qrCode-footer button.dl-btn {
  margin: 0 12px !important;
}

#myQrCode .clear-btn {
  color: #000000de;
  box-shadow: none;
}

#myQrCode .clear-btn.large-btn {
  min-width: 200px !important;
}

#myQrCode .clear-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

#myQrCode .selected-code {
  display: flex;
  color: #220e27;

  font-size: 15px;
  align-items: center;
  font-weight: 500;
}

#myQrCode .selected-code span {
  color: #fff;
  /* width: 24px;
  height: 24px; */
  display: flex;
  font-size: 20px;
  align-items: center;
  font-weight: 700;
  /* margin-left: 12px; */
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  background-color: #1d59f9;
}

#myQrCode .right .r-open {
  display: none;
}

.modal-content.extra-space {
  padding: 90px 40px 40px;
  max-width: 388px;
}

.modal-content .modal-img {
  text-align: center;
}

.modal-content .modal-img svg {
  height: 140px;
  width: 140px;
}

.modal-content .modal-img p {
  font-size: 16px;
  margin-top: 22px;
  line-height: 26px;
  margin-bottom: 58px;
  color: rgb(104, 103, 108);
  font-weight: 500;
}

.modal-btn {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 0;
}

.modal-btn.modalFooter {
  border-top: 1px solid rgb(234, 234, 236);
  padding: 28px 0 0;
  margin-top: 31px;
}

.modal-btn button {
  /* width: calc(50% - 10px) !important; */
  min-width: unset !important;
  margin: 0;
  font-weight: 700;
  /* height: 56px; */
  padding: 6px 16px;
  font-size: 18px;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-btn button.clear-btn {
  font-size: 15px;
}

.modal-btn button:disabled {
  color: #fff;
  background-color: #eaeaec;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
  outline: 0;
  border: none;
}

.qrCode-card {
  padding: 20px 26px 20px 8px;
  min-height: 108px;
  width: 100%;
  transition: all 0.2s ease-in-out 0s;
  border-color: transparent;
  border-style: solid;
  border-width: 0px;
  border-radius: 8px;
  margin-bottom: 8px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: start;
}

.qrCode-card .qrCode-check {
  height: 42px;
  width: 42px;
  margin-right: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrCode-card .qrCode-image {
  width: 64px;
  min-width: 64px;
  border: 0px solid rgb(254, 142, 62);
  cursor: pointer;
  height: 64px;
  display: flex;
  background: white;
  align-items: center;
  margin-right: 0px;
  border-radius: 8px;
  justify-content: center;
  background-color: #fff;
  padding: 6px;
  position: relative;
}

.qrCode-card .qrCode-image img {
  height: 100%;
  width: 100%;
}

.qrCode-card .qrCode-image .lockSvg {
  top: -18px;
  left: -18px;
  color: #220e27;
  width: 28px;
  height: 28px;
  padding: 5px;
  position: absolute;
  background: #fddf37;
  border-radius: 50%;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.qrCode-card .qrCode-info .name {
  color: #fe8e3e;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.qrCode-card .qrCode-info button {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.qrCode-card .qr-label {
  color: #96949c;
  font-size: 11px;
  font-weight: 400;
  line-height: 22px;
  display: block;
}

.qrCode-card .qr-label.total-scans-label {
  color: #3e3e3e;
  display: none;
}

.qrCode-card .qr-label.total-scans-label b {
  color: #fe8e3e;
}

@media (max-width: 960px) {
  .qrCode-card .qr-label.total-scans-label {
    display: block;
  }

  .qrCode-card .qr-label.created-date-label {
    display: none;
  }
}

.qrCode-card .scan-info {
  flex-direction: column;
  justify-content: center;
}

.qrCode-card .scan-info label {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-right: 0px;
  margin-bottom: 7px;
  display: block;
}

.qrCode-card .scan-info span {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  display: block;
}

.qrCode-card .right {
  width: auto;
  display: flex;
}

.qrCode-card .right button:focus {
  box-shadow: none;
}

.qrCode-card .right .round-btn {
  color: #220e27;
  border: 2px solid #eaeaec;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.2s ease-in-out;
}

.qrCode-card .right .round-btn.downloadBtn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.qrCode-card .right .round-btn.downloadBtn.disabled svg {
  opacity: 0.65;
}

.qrCode-card .right .round-btn:last-child {
  margin-right: 0;
}



.large-modal .modal-content .large-icon {
  top: 16px;
  color: #000000;
  right: 16px;
  position: absolute;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

.large-modal .modal-content .large-icon:hover {
  background: #eaeaec !important;
  box-shadow: none;
}

.large-modal .modal-content .qrCodeImg {
  /* border: 3px solid rgb(254, 142, 62); */
  display: flex;
  border-radius: 8px;
  flex-direction: column;
  padding: 20px;
  /* width: 306px; */
  /* height: 306px; */
}

.large-modal .modal-content .qrCodeImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-modal .modal-content .scan-tab {
  color: #68676c;
  padding: 10px 20px;
  font-size: 13px;
  background: #eaeaec;
  margin-top: 24px;
  font-weight: 500;
  border-radius: 24px;
}

.qrDetail .detail-head {
  margin: 28px 0 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.qrDetail .detail-head span {
  color: rgb(104, 103, 108);
  display: flex;
  font-size: 12px;
  align-items: center;
  font-weight: 400;
  line-height: 20px;
  margin-right: 36px;

}

.qrDetail .detail-card {
  padding: 10px;
  min-height: 168px;
  align-items: center;
  display: flex;
  margin-bottom: 12px;
  box-shadow: rgb(234 234 236) 0px 4px 6px 0px;
  border-radius: 8px;
  background-color: #fff;
}

.qrDetail .detail-card .scan-info {
  /* min-width: 130px;
    height: 130px;
    border-right: 2px solid rgb(234, 234, 236);
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center; */
}

.qrDetail .detail-card .scan-info h4 {
  font-size: 36px;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 12px;

}

.qrDetail .detail-card .scan-info span {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;

  display: block;
  color: #220e27;
}

.qrDetail .detail-card .detail-inner {
  /* flex: 1; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qrDetail .detail-card .detail-inner .innerLeft {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 18px 0px 22px 5px;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailContainer {
  display: flex;
  align-items: center;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailContainer:last-child {
  margin-bottom: 0;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailContainer .detailBox {
  display: flex;
  align-items: center;
  min-width: 200px;
  flex-grow: 1;
  padding-right: 16px;
}

/* .qrDetail .detail-card .detail-inner .innerLeft .detailContainer .detailBox:first-child {
    width: 203px;
} */

.qrDetail .detail-card .detail-inner .innerLeft .detailBox .badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  margin-right: 16px;
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  background-color: #f8f8f9;
  color: #220e27;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailBox span {
  color: #68676c;
  font-size: 12px;
  line-height: 20px;

  font-weight: 400;
  display: block;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailBox label {
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailBox label:hover {
  text-decoration: underline;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailBox label svg {
  opacity: 0;
  margin-left: 4px;
  transition: all 0.2s ease-in-out;
}

.qrDetail .detail-card .detail-inner .innerLeft .detailBox label:hover svg {
  opacity: 1;
}

.qrDetail .detail-card .detail-inner .innerRight {
  display: flex;
}

.qrDetail .detail-card .detail-inner .innerRight .scan-box span {
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
  display: block;
}

.qrDetail .detail-card .detail-inner .innerRight .preview-box {
  width: 150px;
  padding-top: 4px;
  margin-right: 12px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
  position: relative;
  max-height: 144px;
  margin-bottom: 0px;
  flex-direction: column;
  padding-bottom: 0px;
  background-color: rgb(34, 14, 39);
  cursor: pointer;
}

.qrDetail .detail-card .detail-inner .innerRight .preview-box span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 6px;
  display: block;
}

.qrDetail .detail-card .detail-inner .innerRight .preview-box .previewImg {
  width: 100%;
  margin: auto;
  overflow: hidden;
  flex-grow: 1;
  max-width: 107px;
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.qrDetail .detail-card .detail-inner .innerRight .preview-box .previewImg iframe {
  width: 200%;
  border: 0;
  height: 600px;
  transform: scale(0.5);
  transform-origin: 0 -15px;
}

.qrDetail .my-qr .range {
  width: auto;
  min-width: 228px;
  margin-right: 12px;
}

.qrDetail .my-qr .duration {
  width: 94px;
}

.qrDetail .my-qr .type {
  width: 123px;
}

.qrDetail .my-qr .dropdown {
  width: 100% !important;
  height: 36px;
}

.qrDetail .my-qr .dropdown .dropdown-toggle {
  max-width: 100% !important;
}

#campaign .modal-dialog {
  max-width: 590px;
}

#campaign .modal-dialog .modal-content {
  max-width: 590px;
}

#campaign .inputContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#campaign .inputContainer .form-group {
  width: calc(50% - 8px);
  margin: 0;
}

.edit-qrCodeGroup {
  display: flex;
  align-items: center;
}

.edit-qrCodeGroup .editQrField {
  width: 100%;
  height: 32px;
  margin: 5px 0;
  min-width: 111px;
  color: #220e27;
  border: 2px solid #eaeaec;
  border-radius: 8px;
  transition: background-color, border-color 0.25s ease-in-out;
  font-size: 13px;
  line-height: 16px;
  outline: 0;
  padding: 0 6px;
}

.edit-qrCodeGroup .qrSmallBtn {
  height: 32px;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin-left: 5px;
  width: 50px;
  min-width: 64px;
  justify-content: center;
}

.qr-shape {
  height: 105px;
  overflow-x: auto;
}

@media (max-width: 1280px) {

  .form-group .accountSaveButton,
  .contactPage .accountSaveButton,
  .primaryBigButton,
  .custom-upload label .upload-btn,
  .welcome-screen .screen-upload .delete-btn,
  .welcome-screen .screen-upload .upload-btn,
  .addRowButton {
    height: 48px !important;
    font-size: 15px !important;
  }

  .bill-detail .QuestionAccodianMenu {
    flex-direction: column;
  }

  .bill-detail .billingQuestionPlan {
    margin-bottom: 20px;
  }

  .bill-detail .questionsAccodian,
  .planPricesPage .bill-detail .questionsAccodian {
    max-width: 100%;
  }
}

@media (max-width: 1140px) {
  #myQrCode .qrCode-card .scan-info {
    margin-left: auto;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  #myQrCode {
    /* height: calc(100vh - 75px); */
  }
}

@media (max-width: 960px) {
  .qrCode-card {
    padding: 15px 8px 14px 4px;
    min-height: 105px;
    align-items: flex-start;
  }

  #campaign .inputContainer .form-group {
    width: 100%;
    margin-bottom: 24px;
  }

  #myQrCode .qrCode-image {
    margin: auto 0;
  }

  #myQrCode .qrCode-card .qrCode-info {
    padding-right: 10px;
  }

  #myQrCode .qrCode-card .scan-info {
    display: none;
  }

  #myQrCode .qrCode-card .right .outline-btn {
    /* display: none; */
  }

  #myQrCode .qrCode-card .right .d-btn {
    display: none;
  }

  #myQrCode .qrCode-card .right {
    margin-left: auto;
  }

  #myQrCode .qrCode-card .right .round-btn {
    color: rgba(0, 0, 0, 0.54);
    border: none;
    width: 40px;
    height: 40px;
    margin: 0;
    margin-left: 4px;
    border: 2px solid #eaeaec;
  }

  #myQrCode .right .r-open {
    display: block;
  }

  .contactPage h1,
  .outerheader h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 8px;
  }

  .contactPage p,
  .outerheader p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }

  .my-account .accountCardDetail .accountSaveButton,
  .form-group .accountSaveButton,
  .contactPage .accountSaveButton,
  .primaryBigButton {
    min-width: 112px;
    width: unset;
    max-width: unset;
  }

  .termConditionsPage .termsContain .termsDetail {
    padding: 23px 16px 30px;
    font-size: 13px;
    line-height: 24px;
  }

  .termConditionsPage .termsContain .termsDetail p {
    margin-bottom: 11px;
  }

  .termConditionsPage .termsDetail h2 {
    font-size: 14px;
    margin: 40px 0 20px;
    line-height: 21px;
  }

  .termConditionsPage .termsContain .termsDetail h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .termConditionsPage .termsContain .policyBtn,
  .faqPage .policyBtn {
    margin-top: 50px;
  }

  .faqPage .custom-accodian .accodianBtn {
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    min-height: 64px;
  }

  .faqPage .custom-accodian,
  .faqPage .custom-accodian .accodianBtn.collapsed {
    margin-bottom: 10px;
  }

  .faqPage .custom-accodian .collapseInner {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
  }

  .faqPage .policyBtn {
    margin-bottom: 90px;
  }

  .contactPage .contactPageInner {
    flex-direction: column;
    padding: 80px 0;
    width: 100%;
  }

  .contactPage .contactPageColumn {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .contactPageMap iframe {
    max-width: 100%;
  }

  .contactPageMap {
    max-width: 100%;
  }

  .custom-accodian .collapseInner {
    padding: 8px 15px 15px;
  }

  .scan-activities .card .cardHeader,
  .qrrecord-container .custom-accodian .accodianBtn {
    font-size: 15px;
    padding: 8px 20px;
  }

  .my-account .accountCardDetail .accountCardDetailRow {
    padding: 28px 20px 23px;
    flex-direction: column;
  }

  /* .my-account .accountCardDetail .accountCardDetailBtn {
    padding: 24px 20px;
    justify-content: center;
    padding-left: 0 !important;
  } */

  .my-account .accountCardDetail h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .accountCardDetailRow .row {
    width: 100%;
  }

  .accountCardDetailRow .bootstrap-select,
  .accountCardDetailRow .form-group,
  .accountCardDetail .taxCardDetailRow .form-group {
    width: 100% !important;
    padding: 0 !important;
  }

  .accountCardDetailRow .form-group,
  .accountCardDetail .taxCardDetailRow .form-group {
    margin-bottom: 16px !important;
  }

  .accountCardDetailRow .form-group:last-child {
    margin-bottom: 0 !important;
  }

  .my-account .accountCardDetail .accountSaveButton {
    max-width: 320px;
    width: 100%;
  }

  .my-account .accountCardDetail .form-group .formMiWidth {
    min-width: unset;
  }

  .accountCardDetail .taxCardDetailRow {
    padding: 23px 19px;
  }

  .headingName .headTitle,
  .custom-heading {
    font-size: 20px;
    word-break: break-all;
    line-height: 1.2;
  }

  .res-bill {
    display: block;
    margin-top: 36px;
  }

  .bill-detail .billing-plan .bill-data .bill .bill-variant {
    display: none;
  }

  .bill-data {
    flex-direction: column;
  }

  .bill-detail .billing-plan .bill-data .bill {
    width: 100% !important;
    text-align: center;
    margin-bottom: 8px !important;
    padding: 21px 28px 32px;
  }

  .bill-detail .billing-plan .bill-data .bill .italic {
    justify-content: center;
    line-height: 18px;
  }

  .bill-detail .billing-plan .bill-data .bill .bill-month {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .bill-detail .billing-plan .bill-data .bill .bill-price {
    font-size: 24px;
    line-height: 24px;
  }

  .bill-detail .billing-plan .bill-data .bill .bill-sell {
    font-size: 11px;
    margin-bottom: 11px;
  }

  .bill-detail .billing-plan .bill-data .bill .primaryBigButton {
    margin-top: 0;
  }

  .bill-detail .billingQuestionPlan {
    font-size: 20px;
    line-height: 28px;
  }

  .planPricesPage .bill-detail .billing-plan .bill-data .bill {
    border: 3px solid #d7dae6;
  }

  .planPricesPage .bill-detail .billing-plan {
    padding: 0 0 15px;
  }

  .bill-detail .triel {
    /* flex-wrap: wrap; */
    align-items: start;
  }

  .bill-detail .triel .triel-des {
    flex-grow: 1;
    flex-basis: 80%;
  }
}

#myQrCode .my-qr.filters~.more-filters-btn {
  display: none;
  color: #0d6efd;
}

#myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem .form-select,
#myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem input#kt_daterangepicker_1 {
  border-radius: 40px;
}

#myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem>div {
  display: flex;
  position: relative;
}

#myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem>div::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  top: 50%;
  right: 15px;
}

#myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem>div>input {
  width: 300px;
}

#myQrCode .custom-container .datepicker-options-wrps .exp.options button.btn-light {
  border: 2px solid #e1e1e1;
  /* margin-top: 8px; */
  box-shadow: none;
}

@media (max-width: 660px) {
  .modal-content.extra-space {
    padding: 62px 24px 24px;
    max-width: 280px;
  }

  #PauseModalOpenBtn span.text {
    display: none;
  }

  #myQrCode .custom-container .export-info button,
  #myQrCode .custom-container .datepicker-options-wrps,
  #myQrCode .custom-container .datepicker-options-wrps .exp,
  #myQrCode .custom-container .datepicker-options-wrps .exp input#kt_daterangepicker_1,
  #myQrCode .custom-container .datepicker-options-wrps .exp.options>* {
    width: 100%;
  }

  #myQrCode .custom-container .datepicker-options-wrps .exp input#kt_daterangepicker_1 {
    border: 2px solid #e1e1e1;
  }

  #myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem,
  #myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem>div,
  #myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem>div>input {
    width: 100%;
    display: block;
  }

  #myQrCode .custom-container .datepicker-options-wrps .exp.options button.btn-light:focus {}

  .modal-content .modal-img p {
    font-size: 13px;
    margin-top: 20px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .modal-btn button {
    height: 48px !important;
    font-size: 15px !important;
  }

  #myQrCode .large-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: unset !important;
    padding: 8px !important;
  }

  #myQrCode .large-btn.mr-3 {
    margin-right: 8px !important;
  }

  #myQrCode .large-btn .text {
    display: none;
  }

  #myQrCode .large-btn .start-icon {
    margin: 0;
  }

  #myQrCode .edit-qrCodeGroup {
    flex-direction: column;
    align-items: flex-start;
  }

  #myQrCode .edit-qrCodeGroup .qrSmallBtn {
    margin: 0;
  }

  #myQrCode .my-qr {
    flex-direction: column;
    align-items: flex-start;
  }

  #myQrCode .my-qr .form-group {
    width: 100%;
    margin-bottom: 12px;
  }

  #myQrCode .my-qr.filters {
    max-height: 70px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
  }

  #myQrCode .my-qr.filters.active {
    transition: all 0.25s ease-in-out;
    max-height: 350px;
    overflow: visible;
  }

  #myQrCode .my-qr.filters~.more-filters-btn {
    display: block;
    margin: 0 auto;
  }

  .planPricesPage,
  .termConditionsPage,
  .faqPage {
    width: calc(100% - 40px);
  }

  .bg-container,
  .colorPaletteInner {
    padding: 17px 11px 14px;
  }

  .bg-container .bg-note {
    padding: 10px;
  }

  .bg-container .bg-inner {
    flex-direction: column;
  }

  .bg-container .bg-inner .form-group {
    max-width: 100%;
    margin-bottom: 16px !important;
  }

  .colorPaletteForm .formcolorPalette {
    min-width: 66px;
    margin-right: 8px;
  }

  .colorPaletteInner {
    flex-direction: column;
    height: unset;
    align-items: center;
  }

  .colorPaletteInner .form-group {
    max-width: 100%;
  }

  .colorPaletteInner button,
  .replace-btn {
    margin: 8px 0 0;
  }

  .bg-container .form-group {
    max-width: 100%;
    margin-bottom: 16px !important;
  }

  .collapseInner .form-group {
    margin-bottom: 16px !important;
  }

  #LocationInputs .form-group {
    margin-bottom: 0 !important;
  }

  .r-form {
    flex-direction: column;
  }

  .r-form .form-group {
    margin-right: 0 !important;
    width: 100%;
  }

  .r-form .form-group .accountSaveButton {
    min-width: 100%;
  }

  .couponLocation .couponButtonGroup .squreBtn {
    min-width: unset;
    white-space: nowrap;
    font-size: 14px;
    padding: 0;
    width: calc(33.33% - 2px);
  }

  .colorPaletteInner1 .form-group {
    max-width: 100% !important;
  }

  .date-export-container {
    flex-direction: column;
  }

  .date-export-container .dateItem {
    width: 100%;
  }

  .date-export-container .outlineBtn {
    margin: 16px 0 0 0;
    width: 100%;
  }

  .stat {
    flex-direction: column;
  }

  .stat .form-group {
    width: 100%;
    margin-bottom: 12px;
  }

  .all-qrinfo {
    flex-direction: column;
    /* padding: 15px 36px; */
  }

  */ .all-qrinfo .qritem {
    width: 100%;
    border: none;
    flex-direction: unset;
    justify-content: flex-start;
    height: unset;
    margin-bottom: 10px;
  }

  .all-qrinfo .qritem .itemcount {
    font-size: 24px;
    min-width: 55px;
    font-weight: 500;
    margin: 0 6px 0 0;
  }

  .all-qrinfo .qritem .itemlabel {
    font-size: 11px;
  }

  .all-qrinfo .qritem:last-child {
    margin-bottom: 0;
  }

  .my-account .navLinkBtn {
    min-width: unset;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
  }

  .my-account .nav-item {
    margin-right: 5px;
  }
}

/* LOADER */
.loader {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* width: 113px;
    height: 113px; */
}

.loader .box1,
.loader .box2,
.loader .box3 {
  border: 16px solid #ff9800;
  box-sizing: border-box;
  position: absolute;
  display: block;
}

.loader .box1 {
  width: 112px;
  height: 48px;
  margin-top: 64px;
  margin-left: 0px;
  -webkit-animation: anime1 4s 0s forwards ease-in-out infinite;
  animation: anime1 4s 0s forwards ease-in-out infinite;
}

.loader .box2 {
  width: 48px;
  height: 48px;
  margin-top: 0px;
  margin-left: 0px;
  -webkit-animation: anime2 4s 0s forwards ease-in-out infinite;
  animation: anime2 4s 0s forwards ease-in-out infinite;
}

.loader .box3 {
  width: 48px;
  height: 48px;
  margin-top: 0px;
  margin-left: 64px;
  -webkit-animation: anime3 4s 0s forwards ease-in-out infinite;
  animation: anime3 4s 0s forwards ease-in-out infinite;
}

@-webkit-keyframes anime1 {
  0% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  75% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 0px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }
}

@keyframes anime1 {
  0% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }

  75% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 0px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }
}

@-webkit-keyframes anime2 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  50% {
    width: 112px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }
}

@keyframes anime2 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  25% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  50% {
    width: 112px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  100% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }
}

@-webkit-keyframes anime3 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  25% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 64px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  100% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }
}

@keyframes anime3 {
  0% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  12.5% {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
  }

  25% {
    width: 48px;
    height: 112px;
    margin-top: 0px;
    margin-left: 64px;
  }

  37.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  50% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  62.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  75% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  87.5% {
    width: 48px;
    height: 48px;
    margin-top: 64px;
    margin-left: 64px;
  }

  100% {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
  }
}

/* dashboard dropdown changes (yash) */

.dropdown.bootstrap-select.show-tick .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
  background: #fff;
  border-radius: 30px;
}

.dropdown.bootstrap-select.active-cstm button.btn.dropdown-toggle.btn-light {
  background: #fff;
  border-radius: 30px;
  max-width: 180px;
}

/* @media (min-width: 660px) {
    #marginRight { margin-right: 10px; }
} */

.dropdown.bootstrap-select.quantity-cstm button.btn.dropdown-toggle.btn-light {
  background: #fff;
  border-radius: 30px;
  max-width: 80px;
}

.accountCardDetail .btn.dropdown-toggle.btn-light {
  background: transparent;
  min-width: 264px;
  border: 2px solid #eaeaec;
  border-radius: 50px;
  min-height: 50px;
}

/* userPage */

.userPage .headingName {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  margin-bottom: 20px;
}

.userPage .userListLabel {
  display: flex;
  align-items: center;
  padding: 4px 0 8px;
}

.userPage .usercol {
  flex: 1;
  margin: 0;
}

.userPage .usercol label,
.userPage .rolecol label {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 2px;
  color: #220e27;

  display: block;
}

.userPage .usercol span {

  color: #68676c;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  display: block;
}

.userPage .rolecol {
  min-width: 126px;
  margin: 0;
}

.userPage .rolecol .userLabel {
  line-height: 23px;
}

.userPage .foldercol {
  min-width: 186px;
  margin: 0;
  padding-right: 20px;
}

.userPage .statecol {
  min-width: 146px;
  margin: 0;
}

.userPage .statecol button {
  min-width: 112px;
  color: #000000;
  height: 28px;
  display: inline-flex;
  padding: 0px 16px;
  font-size: 13px;
  line-height: 18.5;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 14px;
  justify-content: center;
  background-color: #fddf37;

}

.userPage .statecol .active {
  background-color:  var(--brand-color-primary-light);
}

.userPage .buttoncol {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid rgb(234, 234, 236);
  padding: 0px 28px;
  height: 56px;
  margin: 0;
}

.userPage .buttoncol1 {
  height: 18px;
  border: none;
}

.userPage .buttoncol .userBtn {
  color: #220e27;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 2px solid #96949c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.userPage .buttoncol button:hover {
  border: 2px solid #1043cb;
}

.userPage .userRow {
  box-shadow: rgb(205 209 224) 0px 4px 6px 0px;
  border-radius: 8px;
  margin-bottom: 8px;
  background-color: #ffffff;
  height: 90px;
  display: flex;
  align-items: center;
  padding-left: 32px;
}

.modalButton {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid #eaeaec;
}

.modalButton button {
  width: calc(50% - 8px);
}

.loginRegisterModal .modal-content {
  padding: 20px 15px 5px;
}

.outline {
  background-color: #f8f8f9;
  color: #1d59f9;
  border: 2px solid #1d59f9;
}

.outline:hover {
  border: 2px solid #1043cb;
  background-color: #f8f8f9;
}

.outline:focus {
  background-color: #eaeaec;
}

.userPage .modal-content1 {
  padding-top: 90px;
}

.userPage .modal-content1 .modalButton {
  padding-top: 0;
  border-top: none;
}

.userPage .modal-content1 .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.userPage .modal-body svg {
  width: 140px;
  height: 140px;
}

.userPage .modal-body p {
  text-align: center;
  font-size: 16px;
  margin-top: 22px;
  line-height: 26px;
  margin-bottom: 58px;
  color: #68676c;
  font-weight: 500;

}

.loginRegisterModal .modalText {
  font-size: 14px;
  line-height: 19px;
  color: #68676c;
  text-align: center;
  font-weight: 600;

  margin: 0;
}

.loginRegisterModal .modalText a {
  color: #fe8e3e;
  transition: all 0.2s ease-in-out;
  line-height: 22px;
  text-decoration: none;
}

.loginRegisterModal .modalText a:hover {
  color: #eb6201;
}

.loginRegisterModal .modalText1 {
  font-size: 13px;
  font-weight: 400;
  color: #96949c;
  text-align: justify;
  margin: 0;
}

.loginRegisterModal .primaryBigButton {
  margin: 32px 0 20px;
  max-width: unset;
  width: 100%;
}

.loginRegisterModal .modalButton {
  border-top: 2px solid #eaeaec;
  display: block;
  padding: 0;
  margin-top: 24px;
}

.loginRegisterModal .outline {
  width: 100%;
  margin: 24px 0;
  display: flex;
  align-items: center;
}

#registerModal h1 {
  margin-bottom: 36px;
}

#forgotModal h1 {
  margin-bottom: 23px;
}

#forgotModal .modalButton {
  padding-top: 28px;
  margin-top: 39px;
}

#sendEmailModal svg {
  margin: 56px auto 28px;
}

#sendEmailModal h1 {
  margin-bottom: 16px;
  text-align: center;
}

#sendEmailModal .modalText {
  margin-bottom: 138px;
}

header {
  padding: 0 34px;
  height: 72px;
  display: flex;
  position: relative;
  background: #ffffff;
  box-shadow: #e6e6e6 0px 2px 8px 0px;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  padding: 5px 0;
  margin-right: auto;
}

header span {
  font-size: 15px;
  color: #220e27;
  font-weight: 500;
  line-height: 21px;
  padding: 0 17px 0 14px;
}

header button {
  margin-left: 10px;
  padding: 12px;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50%;
}

header button SVG {
  width: 24px;
}

header button:hover {
  background-color: #0000000a;
}

header button:active {
  background-color: #cecece;
}

.form-control:not(.input-field-control):invalid {
  border: 2px solid red !important;
  border: 2px solid #e5e7eb;
}

.dis-block {
  display: block !important;
}

.row-links {
  /* display: flex; */
  flex-wrap: wrap;
  /* margin-right: -15px; */
  /* margin-left: -15px; */
}

.accountSaveButton:disabled {
  background-color: #dddddd !important;
}

.alert-info {
  color: #ffffff;
  background-color: #4500ff;
  border-color: #4500ff;
}

.text-info {
  color: #ffffff !important;
}

.a-decoration {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

@media (min-width: 992px) {}

span.spinner-border {
  min-width: 30px;
  min-height: 30px;
}

.alert.alert-success span,
.alert.alert-danger span {
  vertical-align: text-bottom;
  margin: 0px 10px;
}

/* added by sachin  */

button.btn.outline-btn.btn-secondary {
  width: 132px;
  min-width: 64px;
  margin-right: 20px;
  height: 40px;
  font-size: 15px;
  padding: 3px 9px;
  color: #96949c;
  border: 2px solid #eaeaea;
  transition: all 0.2s ease-in-out;

  font-weight: 700;
  line-height: 1.75;
  white-space: nowrap;
  border-radius: 28px;
  background-color: #eaeaea;
}

label.error {
  color: red !important;
}

/* 29-01-23 */

.mbcenter {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 130px;
}

.mbhelp {
  position: absolute;
  right: 12%;
}

.mbberger {
  position: absolute;
  right: 15px;
}

.mbvr {
  position: absolute;
  right: 23%;
}

.trial-duration {
  width: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trial-duration-main {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  margin-top: 15px;
}

.trial-bottom-innner {
  font-size: 24px;
  font-family: "Kadwa", serif;
  font-weight: bold;
}

.trial-title {
  font-family: "Kadwa", serif;
  font-size: 12px;
  color: black;
}

.trial-days {
  font-family: "Kadwa", serif;
  font-size: 12px;
  color: grey;
}

.trial-btn {
  width: 100%;
  color: white;
  font-family: "Kadwa", serif;
  font-size: 18px;
  margin-top: 15px;
}

.trial-btn-lable {
  color: white;
  font-family: "Kadwa", serif;
  font-size: 14px;
}

.trial-bottom-inner {
  padding: 28px 20px;
  text-align: center;
  /* margin-left: 12px;*/
  border-radius: 8px;
  background-color: #f7f7f7;
}

.bottom-outside {
  margin: auto;
  width: min-content;
  position: fixed;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
}

#up1-img {
  max-width: 100%;
  height: auto;
}

.font-w-700 {
  font-weight: 700 !important;
}

.font-w-800 {
  font-weight: 800 !important;
}

/* New CSS 2023/02/06 */
.custom-accodian.categories-adding-accordion {
  /* overflow: hidden; */
}

.add-maincategory-wrp {
  position: relative;
  padding-top: 16px;
  margin-top: 8px;
}

.add-maincategory-wrp::after {
  position: absolute;
  content: "";
  width: calc(100% + 56px);
  height: 1px;
  background-color: #eaeaec;
  top: 0px;
  left: -28px;
}

.categories-adding-accordion .collapseInner .error-message {
  color: #e43b4d;
  font-size: 14px;
  margin: 8px 0;
  position: absolute;
  top: -40px;
  left: 32px;
}

.categories-adding-accordion .collapseInner {
  position: relative;
}

.categories-adding-accordion .collapseInner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0px;
  background-color: #eaeaec;
  left: 0px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category {
  padding: 16px 0;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category {
  margin-top: 16px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category:first-child {
  margin-top: 0px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .title-wrp .m-cat-btns {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #eaeaec;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #424242;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .title-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .title-wrp>span {}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .title-wrp>div.buttons-wrp {
  display: flex;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp {
  display: flex;
  align-items: center;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group label {
  font-size: 14px;
  line-height: 18px;
  color: #68676c;

  font-weight: 600;
  margin-bottom: 6px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp {
  margin-right: 8px;
  width: 80px;
  padding-top: 5px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropbtn {
  min-height: 45px;
  position: relative;
  width: 100%;
  border: 1px solid #96949c;
  border-radius: 50px;
  text-align: left;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon {
  width: 100%;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropbtn img {
  width: 24px;
  margin-left: 12px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropbtn::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  width: 0;
  height: 0;
  font-size: 12px;
  top: 13px;
  transform: translateY(-50%);
  right: 24px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  max-width: 300px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 10px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content .cat-icon-btn {
  padding: 8px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content .cat-icon-btn:hover {
  background-color: #f1f1f1;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content .cat-icon-btn:hover img {
  opacity: 1;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content .cat-icon-btn img {
  width: 18px;
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0.75;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .icon-list-wrp .form-group .dropdown-cat-icon .dropdown-content.active {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 6;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .input-wrp {
  flex-grow: 1;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .input-wrp .form-group .form-control {
  margin-bottom: 20px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .input-wrp .form-group {
  position: relative;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .main-category-block .field-wrp .input-wrp .form-group .invalid_err {
  position: absolute;
  bottom: -22px;
  font-size: 13px;
  left: 8px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .sub-category-block .field-wrp .input-wrp .form-group .form-control {
  margin-bottom: 20px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .sub-category-block .field-wrp .input-wrp .form-group {
  position: relative;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .sub-category-block .field-wrp .input-wrp .form-group .invalid_err {
  position: absolute;
  bottom: -22px;
  font-size: 13px;
  left: 8px;
}

.custom-accodian.categories-adding-accordion .collapseInner .category-fields-wrp .main-category .sub-category {
  padding: 16px 24px;
  background-color: #f7f7f7;
}

.sub-category-field .input-wrp .form-group {
  position: relative;
}

.sub-category-field .input-wrp .form-group .buttons-wrp {
  position: absolute;
  top: 53%;
  right: 25px;
}

.sub-category-field .input-wrp .form-group .buttons-wrp button:not(:last-child) {
  margin-right: 10px;
}

.categories-adding-accordion button.accodianBtn {
  position: relative;
  /* margin-bottom: 16px; */
}

.btn.rounded-btn.add-subcategory-btn {
  margin-top: 5px;
}

.btn.rounded-btn {
  background-color: #1d59f9;
  color: #ffffff;
  height: 56px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 18px;
}

.btn.rounded-btn:hover {
  background-color: #1043cb;
}

.btn.rounded-btn:focus {
  outline: 0;
  box-shadow: unset;
}

.add-maincategory-wrp .select-category-wrp .select-category>button {
  padding: 8px 32px;
  /* border: 2px solid #1D59F9; */
  height: 56px;
  border-radius: 28px;
  margin-left: 16px;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: -5;
}

.overlay.active {
  display: block;
  z-index: 5;
}

.select-category-wrp .select-category {
  position: relative;
}

.select-category-wrp .select-category .dropdown {
  position: absolute;
  right: -80%;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  width: 150px;
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
  transition: all 0.3s ease;
  z-index: 50;
}

.select-category-wrp .select-category .dropdown.active {
  max-height: 1000px;
  overflow: visible;
  padding: 8px 8px;
  transition: all 0.3s ease;
  z-index: 90;
}

.select-category-wrp .select-category .dropdown ul li button {
  padding: 4px;
  font-size: 14px;
  padding-right: 24px;
  padding-left: 8px;
  position: relative;
  width: calc(100% + 30px);
  text-align: left;
}

.select-category-wrp .select-category .dropdown ul li {
  padding: 4px 24px 4px 2px;
  position: relative;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item>button::after {
  position: absolute;
  width: 0;
  height: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  right: 32px;
  font-size: 12px;
  top: 6px;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item ul.dropdown-sub {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item:hover {
  background-color: #f6f6f6;
  border-radius: 8px;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item:hover ul.dropdown-sub {
  opacity: 1;
  z-index: 80;
  visibility: visible;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item:hover ul.dropdown-sub li:hover {
  background-color: #f6f6f6;
  border-radius: 8px;
}

.select-category-wrp .select-category .dropdown>ul>li.main-cat-item>ul.dropdown-sub {
  position: absolute;
  padding: 8px;
  right: -150px;
  top: 50%;
  width: 160px;
  transform: translateY(-50%);
  background-color: white;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
}

.def-category {
  text-transform: capitalize;
}

.grey-bg {
  background-color: #f7f7f7;
  border-radius: 4px;
}

/* Media */
@media only screen and (max-width: 960px) {
  .categories-adding-accordion .collapseInner::after {
    top: 16px;
  }

  .categories-adding-accordion .collapseInner .error-message {
    top: -24px;
    left: 20px;
  }
}

/* Media */
/* New CSS 2023/02/06 */

.dateItem .btn-group ul.multiselect-container li {
  padding: 0;
  margin: 0 8px 0 0;
}

.dateItem .btn-group ul.multiselect-container li a label input {
  opacity: 0;
}

.dateItem .btn-group ul.multiselect-container li a {
  display: block;
  padding: 7px 8px;
}

.dateItem .btn-group ul.multiselect-container li a label input {
  opacity: 0;
}

.dateItem .btn-group ul.multiselect-container li a label {
  margin-bottom: 0;
  margin-left: -14px;
}

/* .dateItem .btn-group ul.multiselect-container li a:hover {
  background-color: rgba(0, 0, 0, 0.08);
} */

.qrcode-detailview {}

.qrcode-detailview .codepannel-img {
  max-width: 250px;
  position: relative;
  margin: 0 auto;
}

.qrcode-detailview .codepannel-img svg {
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  position: absolute;
  top: -15px;
  left: -17px;
  opacity: 1;
}

.qrcode-detailview .codepannel-img img {
  width: 240px;
}

.qr-code-panel p {
  margin-top: 32px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 1199.98px) {
  .qrDetail .detail-card {
    flex-direction: column;
  }

  .qrDetail .detail-card .scan-info {
    border-right: 0;
    border-bottom: 2px solid rgb(234, 234, 236);
    width: 100%;
  }

  */ .qrDetail .detail-card .detail-inner {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .qrDetail .detail-card .detail-inner .innerRight {
    /* border-top: 2px solid rgb(234, 234, 236); */
    width: 100%;
    justify-content: center;
    /* padding-top: 16px; */
  }

  .qrDetail .detail-card .detail-inner .innerRight .preview-box {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  
  #myQrCode .qrCode-image {
    margin: 8px 0 auto 0;
  }
 

  .qrCode-card .qrCode-info button {
    font-size: 13px;
    line-height: 16px;
    text-align: left;
  }

  #myQrCode .qrCode-card .qrCode-info {
    padding-top: 4px;
  }

  .qrDetail .detail-card .detail-inner .innerLeft .detailContainer:first-child .detailBox:first-child,
  .qrDetail .detail-card .detail-inner .innerLeft .detailContainer:last-child .detailBox:first-child {
    padding-left: 14px;
  }

  .qrDetail .detail-card .detail-inner .innerLeft .detailContainer {
    align-items: flex-start;
    margin-bottom: 0px;
  }

  .qrDetail .detail-card .detail-inner .innerLeft .detailBox label {
    margin-bottom: 0;
    /* margin-top: 8px; */
  }

  #myQrCode .custom-container .datepicker-options-wrps .exp.date-time .dateItem {
    width: 100%;
    margin-bottom: 10px;
  }

  #myQrCode .custom-container .datepicker-options-wrps .exp.date-time {
    flex-direction: column;
  }

  .qrDetail .detail-card .detail-inner .innerRight .preview-box,
  .qrDetail .detail-card .detail-inner .innerRight .scan-box {
    margin-right: 0;
    width: 100%;
  }

  .qrDetail .detail-card .detail-inner .innerRight .scan-box {
    margin-bottom: 8px;
  }

  .qrDetail .detail-card .detail-inner .innerRight {
    flex-direction: column;
    align-items: center;
  }

  .qrDetail .detail-card .detail-inner .innerRight>div {
    width: 100%;
  }

  .qrDetail .detail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .qrDetail .detail-card .detail-inner {
    justify-content: flex-start;
  }

  .qrDetail .detail-head span:nth-child(2) {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .qrDetail .detail-card .detail-inner .innerLeft .detailBox span {
    /* height: 16px; */
  }
}

.jss49#qr-proceed-footer .jss51 button div {
  display: flex;
  margin-right: 8px;
}

.jss53 .square-btn.preview-qr-btn span {
  display: none;
}

@media (max-width: 960px) {
  .card.mb-frame-inner .card {
    height: calc(100% - 12px);
    /* width: 100%; */
    top: -5px;
  }

  .col-right .col-right-inner {
    margin: 0 auto;
  }

  .mui-style-1aio0y8 {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .jss49#qr-proceed-footer .jss51 button div {
    display: flex;
    margin-right: 0px;
  }

  .jss49 {
    background-color: #fff;
  }

  .jss49#qr-proceed-footer .jss51 button span.MuiButton-label.jss72 {
    display: none;
  }

  .jss49#qr-proceed-footer .jss51 button div {
    display: block;
  }

  .jss53 {
    justify-content: flex-end;
    /* width: auto; */
    max-width: 520px;
  }

  .jss70 {
    border-radius: 8px;
  }

  .jss49#qr-proceed-footer .jss51 button,
  .jss53 .square-btn {
    border-radius: 8px;
    border: 2px solid #1d59f9;
    color: #1d59f9;
  }

  .jss53 .square-btn.preview-qr-btn {}

  .jss53 .square-btn.preview-qr-btn span {
    display: block;
    font-weight: 600;
  }

  .jss53 .square-btn.preview-phone-btn {
    /* display: none; */
  }

  .jss53 #temp_submit {
    width: 100px;
  }

  .jss53 #temp_next {
    width: auto;
    flex-grow: 1;
    height: 48px;
  }

  .jss53 #temp_next .MuiButton-label {
    font-size: 18px;
    /* font-weight: 400; */
  }

  .jss53 .square-btn.preview-qr-btn,
  .jss53 #temp_next {
    height: 50px;
  }
}



.daterangepicker .ranges li {
  border-radius: 4px;
}

#overlayPre {
  background: black;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 1039;
}

@media (max-width: 374.98px) {
  /* .qrCode-card .qrCode-info button .qrCodeName{
        width: 80px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    } */
}

@media (max-width: 480.98px) {
  .qrCode-card .qrCode-image {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  .jss1349 {
    margin-top: 15px;
  }

  .col-right {
    padding: 0 3px;
  }
}

@media only screen and (min-width: 1200.5px) {
  .col-right-inner .btn-close {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .preview-qr-btn {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .mui-style-1aio0y8 {
    position: relative;
    overflow: visible;
  }

  .mb-frame-inner.desktop-frame-inner.card,
  .mb-frame-inner.desktop-frame-inner .card {
    background-color: transparent;
    margin-top: 4px;
    border-radius: 30px;
  }

  .jss53 .preview-qr-btn {
    border-radius: 8px;
    border: 2px solid #1d59f9;
    color: #1d59f9;
    box-shadow: none;
    background-color: #fff;
    padding: 5px 15px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
    text-transform: none;
    justify-content: center;
    box-sizing: border-box;

    outline: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex-grow: 1;
    margin-right: 8px;
    height: 52px;

    /*  */
  }

  @media (min-width: 960px) {
    .jss53 .preview-qr-btn {
      width: 150px;
    }
  }

  @media (max-width: 960px) {
    .jss53 .preview-qr-btn {
      margin-left: 8px;
      margin-right: 0px;
    }
  }

  .col-right.active {
    display: flex;
    justify-content: center;
  }

  .square-btn.preview-shifter.active {
    background-color: #5482db;
  }

  .square-btn.preview-shifter {
    background-color: transparent;
  }

  .mb-frame-inner.desktop-frame-inner {
    margin: 0 auto;
  }

  @media only screen and (max-height: 667px) {
    .col-right {
      height: 100%;
      overflow-y: scroll;
      top: 50%;
    }
  }
}

/* css written by webethics starts from here */
.steps-ped {
  padding-top: 00px !important;
}

.jss1349 {
  /* margin-top: 42px !important; */
}

.col-left::-webkit-scrollbar {
  display: none;
}

.col-left {
  overflow-y: auto !important;
}

.first_one .btn.accodianBtn {
  margin-bottom: -12px;
}

.custom-upload label span {}

.welcome-screen span {}

.afterImage-upload .previewDetail label {}

.medium-modal .modal-content p {}

.afterImage-upload .previewDetail span {}

.cta-btns {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.prevw-mob {
  display: none;
}

.colorPaletteForm input[type="color"].pickerField::-webkit-color-swatch {
  border-radius: 0 !important;
}

.invalid_err {
  color: #fe4256 !important;

  font-size: 12px;
}

.colorPaletteForm .formcolorPalette {
  border-radius: 0 !important;
}

.colorPaletteForm input {
  border-radius: 0 !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.steps-setpad {
  padding-top: 1.25rem;
}

/* APTO Dropdown Styles */

.apto-dropdown-wrapper {
  width: 100px;
  float: left;
  position: relative;
}

.apto-trigger-dropdown {
  outline: none;
}

.apto-trigger-dropdown:hover {
  background-color: #eee;
}

.apto-trigger-dropdown .fa-caret-down {
  float: right;
  line-height: 22px;
}

.apto-trigger-dropdown svg {
  width: 25px;
  float: left;
  height: 25px;
}

.dropdown-menu {
  max-width: 250px;
  min-width: 200px;
  padding: 0;
  display: none;
  z-index: 15;
  position: absolute;
  left: 0;
  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.3);
  /* max-height: 300px; */
  left: -10px;

  overflow-y: scroll;
  overflow-x: hidden;
  border: none;
  background: rgb(255, 255, 255);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item svg {
  width: 25px;
  height: 25px;
  float: left;
  margin-right: 10px;
  color: #96949c;
}

.dropdown-item {
  font-size: 13px !important;
  font-family: Lato, sans-serif !important;
  font-weight: 400 !important;
  width: 100%;
  height: 40px;
  line-height: 25px;
  border: 0;
  padding: 0 20px;
  cursor: pointer;
  transition: 0.2s ease-in;
  background-color: #fff;
  font-weight: 700;
  color: #5a616c;
  text-align: left;
}

.dropdown-item:hover {
  background-color: #e5e5e5;
}

.dropdown-item:hover svg {
  color: #000;
  transition: 0.4s ease-in-out;
}

.edit-folder, .delete-folder{
  height: 100% !important;
}

.new-folder-text-container{
  display: flex;
  align-items: center;
  min-height: 26px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.new-folder-text-container .text{
  max-width: 142px;
}

.apto-dropdown-wrapper .dropdown-menu {
  max-height: unset !important;
  border-radius: 6px;
}

.dropzone .dz-preview .dz-image {
  border-radius: 10px !important;
}

.street {
  padding-right: 8px;
}

.npc {
  padding-left: 8px;
}

/* webethics media query starts from here */

@media (max-width: 960px) {
  .steps-setpad {
    padding: 20px 28px 16px 20px;
  }

  .col-right {
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .col-right {
    padding-top: 0;
  }

  .mui-style-1aio0y8 {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .cta-btns {
    flex-wrap: wrap;
  }

  .cta-btns button {
    margin: 5px 0;
  }

  #step-id-label {
    padding: 6px 20px 0;
  }

  .mb-frame-inner.desktop-frame-inner {
    width: 250px;
    height: 503px;
  }

  .mb-frame-inner.desktop-frame-inner .card iframe {
    width: 100%;
    /* height: 480px; */
  }

  .col-right {
    height: 100%;
    /* margin-top: 122px; */
  }

  header .logo:not(.qci-logo) {
    width: 34px !important;
  }

  .mbcenter {
    left: 39%;
  }

  .couponLocation .couponButtonGroup .squreBtn {
    font-size: 12px;
  }

  .outlineBtn {
    font-size: 14px;
  }

  .custom-accodian .collapseInner .form-control {
    font-size: 13px;
  }

  .custom-select-box input {
    font-size: 13px;
  }

  .socialFormContainer {
    padding-bottom: 0;
  }

  .col-right {
    top: 0% !important;
    left: 0;
  }
}

@media screen and (max-width: 580px) {
  .socialInner p {
    margin-bottom: 0;
  }

  .socialFormContainer .socialItem {
    position: relative;
    display: block;
    align-items: flex-start;
    margin-bottom: 26px;
    justify-content: space-between;
  }

  .socialFormContainer .socialDetail {
    display: grid;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: 1fr 0px;
  }

  .socialFormContainer .socialItem .socialBtn {
    margin-left: 23px;
    max-width: 85px;
    width: 100%;
    text-align: right;
    position: absolute;
    top: 3%;
    right: 0%;
  }

  .socialIconContainer {
    display: block;
  }

  .socialIconContain {
    display: flex;
    flex-wrap: unset;
    flex-direction: row;
    overflow-x: auto;
  }

  .socialIconContain .boxtagLabel svg {
    width: 36px;
    overflow: hidden;
    vertical-align: middle;
  }
}

@media screen and (max-width: 768px) {
  .prevw-mob {
    display: block;
  }

  .prevw-desk {
    display: none;
  }

  .street {
    padding-right: 14px;
  }

  .npc {
    padding-left: 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1536px) {
  .card.mb-frame-inner .card {
    height: calc(100% + 15px);
    top: -10px;
    width: calc(100% - 2px);
  }

  .mb-frame-inner .card {
    border-radius: 31px !important;
    margin-top: 4px !important;
    margin-bottom: 0px !important;
    width: 100%;
  }
}

/* css written by webethics ends here... */

.qrCode-card .qrCode-info button .qrCodeName {
  color: #000;
}

select#filters_title_by option,
select#filters_text_by option {
  padding: 4px;
}

.btn.google-login {
  border-radius: 40px;
  padding: 10px;
  color: #000000;
  font-size: 16px;
  border-color: #eaeaec;
  background-color: #fff;
  display: flex;
  font-weight: 500;
}

.btn.google-login img {
  margin-left: 8px;
}

.btn.google-login span {
  flex-grow: 1;
  text-align: center;
}

.btn.google-login:hover {
  border-style: solid;
  border-color: #1d59f9;
  color: #1d59f9;
  background-color: #fff;
}

@media screen,
print {
  .jss1349 {
    /* margin-top: 8px !important; */
  }
}

.mb-frame-inner .card {
  /* width: 97%; */
  margin: auto;
  border-radius: 30px;
  max-width: 320px;

  /* margin-top: 13px; */
}

/* Phone Mockup */

/* Phone Mockup End*/
.card.mb-frame-inner .card {
  background-color: transparent;
}

/* Delete Later */
.guide-lines div#ajax-content-data,
.guide-lines .jss1347.main-inner,
.guide-lines .jss1347.main-inner .custom-row {
  position: relative;
}

.guide-lines .custom-row::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background-color: red;
  top: 81px;
  left: 0;
  z-index: 9999999999;
}

.guide-lines div#ajax-content-data::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100vh;
  background-color: red;
  top: -9px;
  left: 0;
}

.guide-lines .jss1347.main-inner::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background-color: red;
  top: 50px;
  left: 0;
  z-index: 9999999999;
}

.guide-lines .jss1347.main-inner::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background-color: red;
  top: 27px;
  left: 0;
}

@media (max-width: 960px) {
  .guide-lines div#ajax-content-data::after {
    left: calc(0% - -20px);
  }

  .mui-style-1aio0y8 {
    margin: 0 auto 0 auto;
  }
}

/* Delete Later */
@media (max-width: 575px) and (max-height: 932px) {
  .mb-frame-inner.desktop-frame-inner .card iframe {
    height: 100%;
  }

  .mb-frame {
    padding: 5px 20px 0;
  }

  @media (min-height: 736px) {
    /* .col-right.customScrollbar{
            padding-top: 0px;
        } */

    .col-right {
      padding-top: 0;
    }
  }

  .preview-head {
    /* padding-bottom: 0; */
  }
}

/* Chrome */

/*menu php styles*/

.vr {
  border-left: 1px solid rgb(227, 227, 227);
  min-height: 1em;
}

@import url("https://fonts.googleapis.com/css2?family=Kadwa:wght@400;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5.h6 {
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none !important;
}

body {
  background: var(--bg-color);
  font-family: "Kadwa", serif;
  overflow-x: hidden;
}

:root {
  --primary-color: #ff9b06;
  --light-primary: #ffb74d;
  --secondary--color: #00288a;
  --black: #000000;
  --white-color: #ffffff;
  --bg-color: #f5f5f5;
  --paragraph: #9c9c9c;
}

/* header start */

header {
  /* padding: 15px 0; */
  background: var(--white-color);
  box-shadow: rgb(230 230 230) 0px 2px 8px 0px;
}

header .container {
  max-width: 1196px;
}

header nav {
  /* height: 6rem; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: unset;
  max-width: 1196px;
  z-index: 999999;
  align-items: center;
}

/*Styling Links*/

.nav-links {
  display: flex;
  list-style: none;
  /* width: 58vw; */
  /* padding: 0 0.7vw; */
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.nav-links li a {
  text-decoration: none;
  color: #000000;
  margin: 0 16px;
  font-size: 15px !important;
  font-weight: 400;
  transition: 0.5s;
}

.nav-links li a:hover {
  color: #ff9b06;
}

.nav-links li {
  position: relative;
  padding: 0 7px;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.btn-hdr {
  padding: 0 !important;
  background: transparent;
  border: none;
  color: #000000;
  min-width: 0 !important;
  font-size: 16px !important;
  margin: 0 16px;
}

.btn-hdr:hover {
  background: transparent;
  color: #ff9b06;
}

/* .dropdown-menu {
    max-height: 300px;
    left: -20px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: none;
    background: rgb(255, 255, 255);
} */

/* 
        .dropdown-menu::-webkit-scrollbar {
            background: rgb(240, 240, 240) !important;
            width: 5px !important;
            border-radius: 3px !important;
            color: #00288A!important;
            height: 20px!important;
        } */

/* width */
.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.dropdown-menu::-webkit-scrollbar-track {
  /* background: #f1f1f1; */
}

/* Handle */
.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgb(209, 209, 209);
  border-radius: 100px;
}

.dropdown-menu a {
  margin: 0 !important;
}

.fade:not(.show) {
  opacity: 0.5;
}

#editURL.fade.show {
  opacity: 1;
  transition: 0.5s;

}

#editURL.fade:not(.show) {
  opacity: 0;
  transition: 0.5s;
}

/*Styling Buttons*/

.join-button {
  color: #fff;
  background-color: #00288a;
  border: 1.5px solid #00288a;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 22px;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
}

.join-button:hover {
  color: #fff;
  background-color: #ff9b06;
  border: 1.5px solid #ff9b06;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 20px;
  height: 1px;
  background: #b7b8bb;
  margin: 3px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-3px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-2px, -6px);
}

.mobileNav {
  display: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.7s ease;
}

@media only screen and (max-width: 1440px) {
  header nav {
    left: 160px;
  }
}

@media only screen and (max-width: 1199px) {
  nav {
    position: fixed;
    z-index: 3;
  }
  
  header nav {
    left: 0px;
    max-width: 100%;
  }
  
  .mobileNav {
    display: block;
    cursor: pointer;
    z-index: 2;
    transition: all 0.7s ease;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 2;
    transition: all 0.7s ease;
  }
  
  li.fade {
    padding-bottom: 50px;
  }
  
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1530px at 90% 10%);
    pointer-events: all;
  }

  @media only screen and (max-width: 960px) {
    header {
      height: 52px;
      padding: 10px 0;
    }

    .pagination-wrapper {
      /* padding-bottom: 20px; */
    }

    .app-container {
      /* min-height: calc(100vh + 100px); */
    }
  }
  
  .nav-links li {
    opacity: 0;
  }
  
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  
  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }
  
  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }
  
  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  
  li.fade {
    opacity: 1;
  }
  @media only screen and (max-width: 575.5px) {
    nav {
      position: fixed;
      z-index: 0;
    }
  
  }
}

@media only screen and (max-width: 575.5px) {
  .pagination-wrapper {
    /* padding-bottom: 30px; */
  }

  .navbar.app-navbar {
    /* position: fixed; */
    /* width: 100%; */
  }

  main.altum-animate #myQrCode {
    /* margin-top: 60px; */
  }
}

@media only screen and (max-width: 960px) {
  header {
    height: 52px;
    padding: 10px 0;
  }
}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 576px) {}

/* banner section start */

section.banner {
  padding: 100px 0;
}

section.banner .container {
  max-width: 1140px;
}

.white-box {
  background: #ffffff;
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  padding: 60px 100px;
}

.banner-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.banner-heading h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  max-width: 470px;
  padding-bottom: 15px;
}

.banner-heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  max-width: 430px;
  padding-bottom: 15px;
  color: var(--paragraph);
}

.banner-heading a {
  background: #ff9b06;
  border-radius: 50px;
  padding: 4px 40px;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 50px;
  display: inline-block;
  transition: 0.5s;
}

.banner-heading a:hover {
  background: #00288a;
}

.hero-img img {
  width: 100%;
}

/* banner section media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .white-box {
    padding: 40px 80px;
  }

  section.banner {
    padding: 70px 0;
  }

  .banner-heading h2 {
    font-size: 32px;
    line-height: 46px;
    max-width: 400px;
    padding-bottom: 10px;
  }

  .banner-heading p {
    font-size: 16px;
    line-height: 22px;
    max-width: 320px;
    padding-bottom: 10px;
  }

  .banner-heading a {
    padding: 4px 30px;
    font-size: 18px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .white-box {
    padding: 30px 60px;
  }

  section.banner {
    padding: 40px 0;
  }

  .banner-heading h2 {
    font-size: 22px;
    line-height: 32px;
    max-width: 260px;
    padding-bottom: 5px;
  }

  .banner-heading p {
    font-size: 14px;
    line-height: 20px;
    max-width: 270px;
    padding-bottom: 8px;
  }

  .banner-heading a {
    padding: 3px 20px;
    font-size: 14px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .white-box {
    padding: 20px;
  }

  section.banner {
    padding: 30px 0;
  }

  /* .banner-heading h2 {
            font-size: 16px;
            line-height: 22px;
            max-width: 180px;
            padding-bottom: 3px;
        }
        .banner-heading p {
            font-size: 12px;
            line-height: 16px;
            max-width: 200px;
            padding-bottom: 5px;
        }
        .banner-heading a {
            padding: 3px 10px;
            font-size: 12px;
            line-height: 21px;
        } */

  .banner-heading {
    align-items: center;
    padding-bottom: 10px;
  }

  .banner-heading h2 {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .banner-heading p {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    max-width: 100%;
  }

  .banner-heading a {
    padding: 3px 20px;
    font-size: 12px;
    line-height: 22px;
  }
}

/* section step of qr satrt */

section.step-of-qr {
  background: #00288a;
  padding: 20px 0;
}

section.step-of-qr .container {
  max-width: 1440px;
}

h2.step-heading {
  text-align: center;
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  padding-bottom: 80px;
  position: relative;
  z-index: 999;
}

h2.step-heading:after {
  content: "";
  position: absolute;
  top: 27px;
  right: 200px;
  width: 280px;
  height: 30px;
  background: #ff9b06;
  z-index: -1;
}

.squre-box h4 {
  background: #ffffff;
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  padding: 20px 40px;
  color: #00288a;
}

.steps h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  max-width: 290px;
  text-align: center;
  padding-bottom: 10px;
}

.steps p {
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: #ffffff;
  text-align: center;
  max-width: 270px;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-for-qr {
  display: flex;
  justify-content: space-around;
}

.squre-box {
  padding-bottom: 30px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

/* step of qr section media querry start */

@media only screen and (max-width: 1368px) {
  h2.step-heading:after {
    right: 160px;
  }
}

@media only screen and (max-width: 1280px) {
  h2.step-heading:after {
    right: 120px;
    top: 20;
  }
}

@media only screen and (max-width: 1280px) {
  h2.step-heading:after {
    right: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  h2.step-heading:after {
    right: 80px;
  }
}

@media only screen and (max-width: 1024px) {
  h2.step-heading:after {
    right: 0px;
  }
}

@media only screen and (max-width: 991px) {
  h2.step-heading {
    font-size: 32px;
    line-height: 46px;
    padding-bottom: 60px;
  }

  h2.step-heading:after {
    right: 60px;
    width: 230px;
    height: 25px;
    top: 20px;
  }

  .squre-box {
    padding-bottom: 20px;
  }

  .squre-box h4 {
    font-size: 26px;
    line-height: 36px;
  }

  .steps h3 {
    font-size: 20px;
    line-height: 25px;
    max-width: 220px;
  }

  .steps p {
    font-size: 16px;
    line-height: 25px;
    max-width: 240px;
  }
}

@media only screen and (max-width: 767px) {
  h2.step-heading {
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 40px;
  }

  h2.step-heading:after {
    right: 86px;
    width: 150px;
    height: 20px;
    top: 15px;
  }

  .squre-box h4 {
    font-size: 22px;
    line-height: 28px;
    padding: 15px 30px;
  }

  .squre-box {
    padding-bottom: 15px;
  }

  .steps h3 {
    font-size: 16px;
    line-height: 23px;
    max-width: 170px;
    padding-bottom: 5px;
  }

  .steps p {
    font-size: 14px;
    line-height: 22px;
    max-width: 210px;
  }
}

@media only screen and (max-width: 575px) {
  h2.step-heading {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 30px;
  }

  .squre-box h4 {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 20px;
  }

  .squre-box {
    padding-bottom: 10px;
  }

  .steps h3 {
    font-size: 14px;
    line-height: 20px;
    max-width: 150px;
  }

  .steps p {
    font-size: 12px;
    line-height: 18px;
    max-width: 160px;
  }

  h2.step-heading:after {
    width: 100px;
    height: 10px;
    top: 12px;
  }

  h2.step-heading:after {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  h2.step-heading:after {
    right: 27px;
  }

  .step-for-qr {
    flex-direction: column;
  }

  .steps h3 {
    max-width: 100%;
  }

  .steps p {
    max-width: 100%;
  }

  .steps {
    padding-bottom: 10px;
  }
}

/*  marketing features section start */

section.marketing-features {
  padding: 100px 0;
}

section.marketing-features .container {
  max-width: 1140px;
}

.marketing-heading {
  padding-bottom: 100px;
}

.marketing-heading h2 {
  text-align: center;
  color: #000000;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  padding-bottom: 10px;
  position: relative;
}

.marketing-heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000000;
}

.features-boxes {
  position: relative;
}

.feature-box {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #ffffff;
  box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  margin-bottom: 40px;
  transition: 0.5s;
}

.feature-box:hover {
  background: #ffb74d;
}

.icon {
  margin-right: 20px;
}

.icon i {
  font-size: 18px;
  background: #00288a;
  padding: 15px;
  color: white;
  border-radius: 50%;
}

.features h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.features p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
}

/* marketing features section media querry start */

@media only screen and (max-width: 1199px) {
  .features-boxes::after {
    width: 200px;
    height: 200px;
    right: -15px;
    top: -80px;
  }

  .features-boxes::before {
    height: 200px;
    width: 200px;
    left: -10px;
  }

  .marketing-heading {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  section.marketing-features {
    padding: 70px 0;
  }

  .marketing-heading h2 {
    font-size: 32px;
    line-height: 46px;
  }

  .marketing-heading p {
    font-size: 18px;
    line-height: 22px;
  }

  .features h5 {
    font-size: 14px;
    line-height: 18px;
  }

  .features p {
    font-size: 12px;
    line-height: 14px;
  }

  .icon i {
    font-size: 16px;
    padding: 13px;
  }

  .feature-box {
    padding: 15px 20px;
  }

  .icon {
    margin-right: 10px;
  }

  .marketing-heading {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  section.marketing-features {
    padding: 40px 0;
  }

  .marketing-heading h2 {
    font-size: 22px;
    line-height: 31px;
  }

  .marketing-heading p {
    font-size: 16px;
    line-height: 18px;
  }

  .marketing-heading {
    padding-bottom: 40px;
  }

  .features-boxes::after {
    height: 120px;
    top: -30px;
  }
}

@media only screen and (max-width: 575px) {
  section.marketing-features {
    padding: 20px 0;
  }

  .marketing-heading h2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 5px;
  }

  .marketing-heading p {
    font-size: 14px;
    line-height: 15px;
  }

  .features-boxes::before {
    display: none;
  }

  .features-boxes::after {
    display: none;
  }
}

/* analys qr section start */

section.analys-qr {
  background: #00288a;
  padding: 40px 0;
}

section.analys-qr.container {
  max-width: 1150px;
}

/* analysis-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100px;
        } */

.analysis-heading h2 {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #ffffff;
  padding-bottom: 26px;
  z-index: 99;
  position: relative;
}

.analysis-heading h2::after {
  position: absolute;
  top: 9px;
  right: 180px;
  width: 180px;
  height: 40px;
  content: "";
  background: #ff9b06;
  z-index: -1;
}

.analysis-heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 20px;
}

.section__slogan {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  background: lightgray;
  border-radius: 0px;
  padding: 0 20px;
  margin-bottom: 40px;
  color: #21325e;
}

.section__slogan img {
  width: 30px;
  height: 30px;
}

h2.section__heading.heading--2 {
  padding-bottom: 100px;
}

.section__caption {
  margin-bottom: 50px;
  font-size: 17px;
}

.section__slogan--center {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 0px;
  text-align: center;
  /* font-size: 20px; */
}

.btn--primary {
  background: #00288a;
  border: 2px solid #00288a;
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus {
  background: #fff;
  border: 2px solid #21325e;
  color: #21325e;
}

/* ===== SECTION EXPERTISE ===== */
/* preview box tab strt */

button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

/*--------------------*/
.category-lists-slider {
  position: relative;
}

#catgory-slider .swiper-slide {
  width: auto;
}

.category-button {
  text-align: center;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.category-button img {
  max-width: 100px;
}

.category-button.active {
  border-radius: 15px;
  border: 3px solid #ff9b06;
}

.data-text {
  display: none;
}

.data-text.active {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 20px 40px;
}

/* .data-text h6 {
                font-size: 18px;
                margin-top: 30px;
                margin-bottom: 8px;
                font-weight: 700;
            } */

.slider-button {
  width: 25px;
  height: 25px;
  background-color: #ff9b06;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  top: 5px;
  z-index: 1;
  cursor: pointer;
}

.slider-button.slider-prev {
  left: -30px;
}

.slider-button.slider-next {
  right: -30px;
}

.slider-button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

.box {
  padding: 10px;
  margin-top: 20px;
  border-radius: 6px;
  transition: 0.3s;
  height: 100%;
}

.box img {
  width: 100%;
}

.box h4 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}

.box p {
  font-size: 18px;
  margin-bottom: 50px;
}

.btn-create {
  background: #00288a;
  padding: 15px 35px;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  transition: 0.5s;
}

.btn-create:hover {
  background: #ff9b06;
  color: #fff;
}

.box i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #37a7f1;
}

/* preview box tab end */

/* media querry start */

@media only screen and (max-width: 1199px) {
  .analysis-heading h2::after {
    right: 95px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  .analysis-heading h2 {
    font-size: 32px;
    line-height: 46px;
    padding-bottom: 20px;
  }

  .analysis-heading h2::after {
    right: 170px;
    width: 150px;
    top: 5px;
  }

  .analysis-heading p {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .btn-create {
    background: #00288a;
    padding: 15px 35px;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    transition: 0.5s;
  }

  .btn-create:hover {
    background: #ff9b06;
    color: #fff;
  }

  .box i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #37a7f1;
  }

  /* preview box tab end */

  /* media querry start */

  @media only screen and (max-width: 1199px) {
    .analysis-heading h2::after {
      right: 95px;
    }
  }

  @media only screen and (max-width: 991px) {
    .container {
      max-width: 100%;
    }

    .analysis-heading h2 {
      font-size: 32px;
      line-height: 46px;
      padding-bottom: 20px;
    }

    .analysis-heading h2::after {
      right: 170px;
      width: 150px;
      top: 5px;
    }

    .analysis-heading p {
      font-size: 18px;
      line-height: 27px;
      padding-bottom: 30px;
    }

    h2.section__heading.heading--2 {
      padding-bottom: 50px;
      font-size: 26px;
    }

    .section__caption {
      margin-bottom: 30px;
      font-size: 15px;
    }

    a.btn.btn--primary {
      font-size: 18px;
      padding: 14px 32px;
    }
  }

  @media only screen and (max-width: 767px) {
    .analysis-heading h2 {
      font-size: 22px;
      line-height: 31px;
    }

    .analysis-heading h2::after {
      right: 160px;
      width: 97px;
      top: 0px;
      height: 30px;
    }

    .analysis-heading p {
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 40px;
    }

    h2.section__heading.heading--2 {
      padding-bottom: 30px;
      font-size: 22px;
    }

    .section__caption {
      margin-bottom: 20px;
      font-size: 13px;
    }

    a.btn.btn--primary {
      font-size: 16px;
      padding: 10px 22px;
    }

    .box {
      text-align: center;
      padding: 0;
    }

    .box h4 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 30px;
    }

    .box p {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .btn-create {
      padding: 10px 25px;
      font-size: 16px;
    }
  }

  @media only screen and (max-width: 575px) {
    .analysis-heading h2::after {
      display: none;
    }

    .analysis-heading h2 {
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 10px;
    }

    .analysis-heading p {
      font-size: 14px;
      line-height: 22px;
      padding-bottom: 6px;
    }

    .category-lists-slider {
      margin-top: 40px;
    }

    .slider-button {
      top: -40px;
    }

    .slider-button.slider-prev {
      left: inherit;
      right: 32px;
    }

    .slider-button.slider-next {
      right: 0;
    }

    .data-text.active {
      padding: 10px;
    }

    .box {
      text-align: center;
      padding: 0;
      border-radius: 0;
    }

    .box h4 {
      margin-bottom: 20px;
    }

    .box p {
      margin-bottom: 20px;
    }
  }

  /* ===== SECTION EXPERTISE end ===== */

  /* know more section start */

  section.know-more {
    background: #fff;
    padding: 40px 0;
  }

  section.know-more .container {
    max-width: 1440px;
  }

  .know-more-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .know-more-heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #000000;
    padding-bottom: 26px;
    position: relative;
    z-index: 99;
  }

  .know-more-heading h2:after {
    position: absolute;
    top: 20px;
    left: 160px;
    content: "";
    height: 30px;
    width: 240px;
    background: #ff9b06;
    z-index: -1;
  }

  .know-more-heading p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    max-width: 430px;
    padding-bottom: 26px;
  }

  .know-more-heading a {
    background: #00288a;
    color: #ffffff;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 20px;
    filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.5));
  }

  /* media query start */

  @media only screen and (max-width: 1199px) {
    .know-more-heading::after {
      right: -15px;
    }
  }

  @media only screen and (max-width: 991px) {
    .know-more-heading::after {
      width: 200px;
      top: -5px;
    }

    .know-more-heading h2 {
      font-size: 32px;
      line-height: 45px;
      padding-bottom: 20px;
    }

    .know-more-heading h2:after {
      width: 210px;
      left: 130px;
      height: 25px;
    }

    .know-more-heading p {
      font-size: 18px;
      line-height: 24px;
      padding-bottom: 20px;
    }

    .know-more-heading a {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

  @media only screen and (max-width: 767px) {
    .know-more-heading::after {
      width: 140px;
      height: 140px;
      top: 10px;
    }

    .know-more-heading h2 {
      font-size: 22px;
      line-height: 32px;
      padding-bottom: 10px;
    }

    .know-more-heading h2:after {
      width: 150px;
      left: 90px;
      height: 18px;
      top: 15px;
    }

    .know-more-heading p {
      font-size: 16px;
      line-height: 22px;
      padding-bottom: 10px;
    }

    .know-more-heading a {
      font-size: 12px;
    }
  }

  @media only screen and (max-width: 575px) {
    .know-more-heading::after {
      display: none;
    }

    section.know-more {
      padding: 20px 0;
    }

    .know-more-heading h2 {
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 5px;
    }

    .know-more-heading h2:after {
      display: none;
    }

    .know-more-heading p {
      font-size: 14px;
      line-height: 18px;
    }

    .know-more-heading h2:after {
      display: none;
    }
  }

  /* basic-concept section start */

  section.basic-concept {
    padding: 100px 0;
  }

  section.basic-concept h2 {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #ffffff;
    padding-bottom: 26px;
    position: relative;
    z-index: 99;
  }

  section.basic-concept h2::before {
    position: absolute;
    top: 4px;
    left: 280px;
    height: 40px;
    width: 550px;
    content: "";
    background: #ff9b06;
    z-index: -1;
  }

  .accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .accordion__button {
    border: none;
    padding: 30px;
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 100ms linear;
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    font-size: 20px;
  }

  .accordion__button:hover {
    --accordion__button_bd-cr: var(--white-3);
  }

  p.accordion__content.active {
    background: #fff;
    margin-bottom: 40px;
    border-radius: 10px;
    font-size: 16px;
  }

  .accordion__content {
    padding: 1em;
  }

  .accordion__content:not(.active) {
    display: none;
  }

  .rmbg {
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
    padding: 20px;
  }

  p.rmbg.active {
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
    padding: 20px;
  }

  .create-qr-code {
    background: #00288a;
    color: #fff;
    padding: 20px 50px;
    border-radius: 30px;
    transition: 0.5s;
    display: inline-block;
    font-size: 18px;
  }

  .create {
    text-align: center;
    margin-top: 100px;
  }

  .create-qr-code:hover {
    background: #ff9b06;
    color: #fff;
  }

  /* faq page css */

  section.FAQ {
    padding: 100px 0;
  }

  section.FAQ .container {
    max-width: 1140px;
  }

  .faq-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #000000;
    padding-bottom: 26px;
    text-align: center;
  }

  .faq-heading p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    max-width: 700px;
  }

  .accrodian {
    padding-top: 30px;
  }

  /* accrodian media querry start */

  @media only screen and (max-width: 1199px) {
    section.basic-concept h2::before {
      left: 190px;
    }
  }

  @media only screen and (max-width: 991px) {
    section.basic-concept {
      padding: 80px 0;
    }

    section.basic-concept h2 {
      font-size: 32px;
      line-height: 45px;
      padding-bottom: 20px;
    }

    section.basic-concept h2::before {
      left: 240px;
      width: 470px;
      top: 2px;
    }

    .accordion__button {
      padding: 25px;
      margin-bottom: 30px;
    }

    p.accordion__content.active {
      margin-bottom: 30px;
      font-size: 16px;
    }

    .create {
      margin-top: 50px;
    }

    section.FAQ {
      padding: 50px 0;
    }
  }

  @media only screen and (max-width: 767px) {
    section.basic-concept {
      padding: 60px 0;
    }

    section.basic-concept h2 {
      font-size: 22px;
      line-height: 32px;
      padding-bottom: 10px;
    }

    section.basic-concept h2::before {
      left: 213px;
      width: 310px;
      top: 0px;
      height: 30px;
    }

    .accordion__button {
      padding: 20px;
      margin-bottom: 20px;
    }

    p.accordion__content.active {
      margin-bottom: 20px;
      font-size: 14px;
    }

    .create-qr-code {
      padding: 15px 20px;
      font-size: 16px;
    }

    .create {
      margin-top: 20px;
    }

    section.FAQ {
      padding: 20px 0;
    }

    .faq-heading h2 {
      font-size: 26px;
      padding-bottom: 15px;
      line-height: 25px;
    }

    .faq-heading p {
      font-size: 16px;
      max-width: 100%;
      line-height: 26px;
    }
  }

  @media only screen and (max-width: 575px) {
    section.basic-concept h2::before {
      display: none;
    }

    .accordion__button {
      padding: 10px;
      margin-bottom: 15px;
      font-size: 14px;
    }

    p.accordion__content.active {
      margin-bottom: 15px;
      font-size: 12px;
    }

    section.basic-concept {
      padding: 30px 0;
    }

    section.basic-concept h2 {
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 8px;
      color: #000000;
    }
  }

  /* creation of qr */

  section.creation-of-qr {
    padding: 20px 0 80px;
  }

  .creation-of-qr h2 {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #000000;
    padding: 70px 0 26px 0;
    position: relative;
  }

  /* creation of qr media querry start  */

  @media only screen and (max-width: 1199px) {}

  @media only screen and (max-width: 991px) {
    .creation-of-qr h2 {
      font-size: 32px;
      line-height: 45px;
    }
  }

  @media only screen and (max-width: 767px) {
    .creation-of-qr h2 {
      font-size: 22px;
      line-height: 32px;
      padding: 50px 0 26px 0;
    }

    section.creation-of-qr {
      padding: 20px 0 50px;
    }
  }

  @media only screen and (max-width: 575px) {
    .creation-of-qr h2 {
      font-size: 16px;
      line-height: 24px;
      padding: 30px 0 16px 0;
    }
  }

  /* generator section start */

  section.generator {
    padding: 100px 0;
    background: #ff9b06;
  }

  section.generator .container {
    max-width: 1140px;
  }

  .generator-heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 55px;
    color: #fff;
  }

  .generator-heading a {
    font-size: 18px;
    background: #00288a;
    padding: 10px 55px;
    border-radius: 30px;
    color: #ffffff;
    border: solid 1px #00288a;
    display: inline-block;
    transition: 0.5s;
  }

  .generator-heading a:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }

  .generator-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* generator section media querry start */

  @media only screen and (max-width: 1199px) {
    section.generator {
      padding: 80px 0;
    }
  }

  @media only screen and (max-width: 991px) {
    section.generator {
      padding: 60px 0;
    }

    .generator-heading h2 {
      font-size: 32px;
      line-height: 46px;
    }

    .generator-heading a {
      font-size: 16px;
    }
  }

  @media only screen and (max-width: 767px) {
    section.generator {
      padding: 40px 0;
    }

    .generator-heading h2 {
      font-size: 22px;
      line-height: 32px;
    }

    .generator-heading a {
      padding: 8px 45px;
    }
  }

  @media only screen and (max-width: 575px) {
    section.generator {
      padding: 20px 0;
    }

    .generator-heading h2 {
      font-size: 16px;
      line-height: 24px;
    }

    .generator-heading a {
      font-size: 14px;
      padding: 6px 25px;
    }
  }

  /* footer section start */

  footer {
    background: #00288a;
    padding: 40px 0;
  }

  footer .container {
    max-width: 1140px;
  }

  footer h4 {
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    padding-bottom: 30px;
  }

  h2.section__heading.heading--2 {
    padding-bottom: 50px;
    font-size: 26px;
  }

  .section__caption {
    margin-bottom: 30px;
    font-size: 15px;
  }

  a.btn.btn--primary {
    font-size: 18px;
    padding: 14px 32px;
  }
}

@media only screen and (max-width: 767px) {
  .analysis-heading h2 {
    font-size: 22px;
    line-height: 31px;
  }

  .analysis-heading h2::after {
    right: 160px;
    width: 97px;
    top: 0px;
    height: 30px;
  }

  .analysis-heading p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 40px;
  }

  h2.section__heading.heading--2 {
    padding-bottom: 30px;
    font-size: 22px;
  }

  .section__caption {
    margin-bottom: 20px;
    font-size: 13px;
  }

  a.btn.btn--primary {
    font-size: 16px;
    padding: 10px 22px;
  }

  .box {
    text-align: center;
    padding: 0;
  }

  .box h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 30px;
  }

  .box p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .btn-create {
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 575px) {
  .analysis-heading h2::after {
    display: none;
  }

  .analysis-heading h2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
  }

  .analysis-heading p {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 6px;
  }

  .category-lists-slider {
    margin-top: 40px;
  }

  .slider-button {
    top: -40px;
  }

  .slider-button.slider-prev {
    left: inherit;
    right: 32px;
  }

  .slider-button.slider-next {
    right: 0;
  }

  .data-text.active {
    padding: 10px;
  }

  .box {
    text-align: center;
    padding: 0;
    border-radius: 0;
  }

  .box h4 {
    margin-bottom: 20px;
  }

  .box p {
    margin-bottom: 20px;
  }
}

/* ===== SECTION EXPERTISE end ===== */

/* know more section start */

section.know-more {
  background: #fff;
  padding: 40px 0;
}

section.know-more .container {
  max-width: 1440px;
}

.know-more-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.know-more-heading h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #000000;
  padding-bottom: 26px;
  position: relative;
  z-index: 99;
}

.know-more-heading h2:after {
  position: absolute;
  top: 20px;
  left: 160px;
  content: "";
  height: 30px;
  width: 240px;
  background: #ff9b06;
  z-index: -1;
}

.know-more-heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  max-width: 430px;
  padding-bottom: 26px;
}

.know-more-heading a {
  background: #00288a;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 20px;
  filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.5));
}

/* media query start */

@media only screen and (max-width: 1199px) {
  .know-more-heading::after {
    right: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .know-more-heading::after {
    width: 200px;
    top: -5px;
  }

  .know-more-heading h2 {
    font-size: 32px;
    line-height: 45px;
    padding-bottom: 20px;
  }

  .know-more-heading h2:after {
    width: 210px;
    left: 130px;
    height: 25px;
  }

  .know-more-heading p {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 20px;
  }

  .know-more-heading a {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .know-more-heading::after {
    width: 140px;
    height: 140px;
    top: 10px;
  }

  .know-more-heading h2 {
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
  }

  .know-more-heading h2:after {
    width: 150px;
    left: 90px;
    height: 18px;
    top: 15px;
  }

  .know-more-heading p {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 10px;
  }

  .know-more-heading a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 575px) {
  .know-more-heading::after {
    display: none;
  }

  section.know-more {
    padding: 20px 0;
  }

  .know-more-heading h2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 5px;
  }

  .know-more-heading h2:after {
    display: none;
  }

  .know-more-heading p {
    font-size: 14px;
    line-height: 18px;
  }

  .know-more-heading h2:after {
    display: none;
  }
}

/* basic-concept section start */

section.basic-concept {
  padding: 100px 0;
}

section.basic-concept h2 {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #ffffff;
  padding-bottom: 26px;
  position: relative;
  z-index: 99;
}

section.basic-concept h2::before {
  position: absolute;
  top: 4px;
  left: 280px;
  height: 40px;
  width: 550px;
  content: "";
  background: #ff9b06;
  z-index: -1;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.accordion__button {
  border: none;
  padding: 30px;
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 100ms linear;
  box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
  font-size: 20px;
}

.accordion__button:hover {
  --accordion__button_bd-cr: var(--white-3);
}

p.accordion__content.active {
  background: #fff;
  margin-bottom: 40px;
  border-radius: 10px;
  font-size: 16px;
}

.accordion__content {
  padding: 1em;
}

.accordion__content:not(.active) {
  display: none;
}

.rmbg {
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 20px;
}

p.rmbg.active {
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  padding: 20px;
}

.create-qr-code {
  background: #00288a;
  color: #fff;
  padding: 20px 50px;
  border-radius: 30px;
  transition: 0.5s;
  display: inline-block;
  font-size: 18px;
}

.create {
  text-align: center;
  margin-top: 100px;
}

.create-qr-code:hover {
  background: #ff9b06;
  color: #fff;
}

/* faq page css */

section.FAQ {
  padding: 100px 0;
}

section.FAQ .container {
  max-width: 1140px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-heading h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #000000;
  padding-bottom: 26px;
  text-align: center;
}

.faq-heading p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  max-width: 700px;
}

.accrodian {
  padding-top: 30px;
}

/* accrodian media querry start */

@media only screen and (max-width: 1199px) {
  section.basic-concept h2::before {
    left: 190px;
  }
}

@media only screen and (max-width: 991px) {
  section.basic-concept {
    padding: 80px 0;
  }

  section.basic-concept h2 {
    font-size: 32px;
    line-height: 45px;
    padding-bottom: 20px;
  }

  section.basic-concept h2::before {
    left: 240px;
    width: 470px;
    top: 2px;
  }

  .accordion__button {
    padding: 25px;
    margin-bottom: 30px;
  }

  p.accordion__content.active {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .create {
    margin-top: 50px;
  }

  section.FAQ {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  section.basic-concept {
    padding: 60px 0;
  }

  section.basic-concept h2 {
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
  }

  section.basic-concept h2::before {
    left: 213px;
    width: 310px;
    top: 0px;
    height: 30px;
  }

  .accordion__button {
    padding: 20px;
    margin-bottom: 20px;
  }

  p.accordion__content.active {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .create-qr-code {
    padding: 15px 20px;
    font-size: 16px;
  }

  .create {
    margin-top: 20px;
  }

  section.FAQ {
    padding: 20px 0;
  }

  .faq-heading h2 {
    font-size: 26px;
    padding-bottom: 15px;
    line-height: 25px;
  }

  .faq-heading p {
    font-size: 16px;
    max-width: 100%;
    line-height: 26px;
  }
}

@media only screen and (max-width: 575px) {
  section.basic-concept h2::before {
    display: none;
  }

  .accordion__button {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
  }

  p.accordion__content.active {
    margin-bottom: 15px;
    font-size: 12px;
  }

  section.basic-concept {
    padding: 30px 0;
  }

  section.basic-concept h2 {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 8px;
    color: #000000;
  }
}

/* creation of qr */

section.creation-of-qr {
  padding: 20px 0 80px;
}

.creation-of-qr h2 {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #000000;
  padding: 70px 0 26px 0;
  position: relative;
}

/* creation of qr media querry start  */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .creation-of-qr h2 {
    font-size: 32px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .creation-of-qr h2 {
    font-size: 22px;
    line-height: 32px;
    padding: 50px 0 26px 0;
  }

  section.creation-of-qr {
    padding: 20px 0 50px;
  }
}

@media only screen and (max-width: 575px) {
  .creation-of-qr h2 {
    font-size: 16px;
    line-height: 24px;
    padding: 30px 0 16px 0;
  }
}

/* generator section start */

section.generator {
  padding: 100px 0;
  background: #ff9b06;
}

section.generator .container {
  max-width: 1140px;
}

.generator-heading h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: #fff;
}

.generator-heading a {
  font-size: 18px;
  background: #00288a;
  padding: 10px 55px;
  border-radius: 30px;
  color: #ffffff;
  border: solid 1px #00288a;
  display: inline-block;
  transition: 0.5s;
}

.generator-heading a:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.custom-accodian .section-name {
  width: 84px;
  margin-left: -110px !important;
}

.generator-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* generator section media querry start */

@media only screen and (max-width: 1199px) {
  section.generator {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  section.generator {
    padding: 60px 0;
  }

  .generator-heading h2 {
    font-size: 32px;
    line-height: 46px;
  }

  .generator-heading a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  section.generator {
    padding: 40px 0;
  }

  .generator-heading h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .generator-heading a {
    padding: 8px 45px;
  }
}

@media only screen and (max-width: 575px) {
  section.generator {
    padding: 20px 0;
  }

  .generator-heading h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .generator-heading a {
    font-size: 14px;
    padding: 6px 25px;
  }
}

/* footer section start */

footer {
  background: #00288a;
  padding: 40px 0;
}

footer .container {
  max-width: 1140px;
}

footer h4 {
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  padding-bottom: 30px;
}

.footer-menu li {
  padding-bottom: 10px;
}

.footer-menu a {
  font-size: 16px;
  color: #ffffff;
  transition: 0.5s;
}

.footer-menu a:hover {
  color: #ff9b06;
}

.footer-logo {
  margin-top: -50px;
}

.footer-logo img {
  width: 100%;
}

.social-media i,
.social-media a {
  font-size: 16px;
  color: #00288a;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  margin-right: 5px;
}

.social-media i:hover,
.social-media a:hover {
  background: #ff9b06;
  color: #ffffff;
}

.terms {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 20px;
  color: #fff;
}

/* footer media querry start */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  footer {
    padding: 60px 0;
  }

  footer h4 {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
  }

  .footer-menu li {
    padding-bottom: 5px;
  }

  .social-media i {
    font-size: 14px;
    padding: 10px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }

  footer h4 {
    font-size: 18px;
    line-height: 16px;
    padding-bottom: 15px;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .footer-logo {
    margin-top: 0px;
  }

  .terms {
    font-size: 14px;
  }

  .social-media i {
    font-size: 12px;
    padding: 6px;
  }
}

@media only screen and (max-width: 575px) {
  footer {
    padding: 20px 0;
    /* text-align: center; */
  }

  footer h4 {
    font-size: 16px;
    line-height: 14px;
    padding-bottom: 10px;
  }

  .terms {
    font-size: 12px;
  }

  .social-media {
    padding-bottom: 15px;
  }

  .footer-menu a {
    font-size: 12px;
  }

  .padding {
    padding-bottom: 20px;
  }

  /* .text-center {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            } */
}

/*Sidebar Navigation Menu Style Here*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fffcfc;
  overflow-x: hidden;
  transition: 0.5s;
  padding: 0px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidenav a {
  /* padding: 8px 8px 8px 32px; */
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #181616;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

/*
    * And let's slide it in from the left
    */

/* uday 's code */

@media (max-width: 480px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  header span {
    padding: unset;
  }

  .jss1456 {
    margin-top: unset;
    margin-bottom: unset;
    white-space: nowrap;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  header span {
    padding: unset;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .jss1456 {
    margin-top: unset;
    margin-bottom: unset;
    white-space: nowrap;
  }
}

@media (min-width: 1281px) {
  header span {
    padding: unset;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .jss1456 {
    margin-top: unset;
    margin-bottom: unset;
    white-space: nowrap;
  }
}

@media (min-width: 1920px) {
  header span {
    padding: unset;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }

  .jss1456 {
    margin-top: unset;
    margin-bottom: unset;
    white-space: nowrap;
  }
}

.burgermenu {
  display: block;
  font-size: 30px;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 10px;
}

.user-profile {
  margin-left: 5px;
}

.logprofile {
  font-family: "Kadwa", serif;
}

.helpmenu {
  display: table;
  position: absolute;
  right: 0px;
}

.mobilebr {
  display: table-cell;
  vertical-align: middle;
}

.mbmenuitem {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.footer .copyright {
  color: #ffffff;
  width: 100%;
  display: flex;
  padding: 30px 0;
  font-size: 13px;
  border-top: 1px solid #fff;
  align-items: center;
  line-height: 30px;
  justify-content: space-between;
}

@media (max-width: 739.95px) {
  .copyright {
    padding: 45px 0 30px 0;
    align-items: flex-start;
    line-height: 23px;
    flex-direction: column;
    margin-left: 15px;
  }
}

button.replace-btn[disabled],
button.replace-btn:disabled {
  background-color: #dddddd;
}

.custom-switch .custom-control-input:checked~.custom-control-label.qr-custom-switch::after {
  background-color: #fff;
  transform: translateX(16px);
  animation: pulse 0.5s;
}

.custom-switch .custom-control-input:checked:hover~.custom-control-label.qr-custom-switch::after {
  box-shadow: 0px 0px 0px 8px rgba(255, 155, 6, 0.1);
}

.custom-control-input:focus~.custom-control-label.qr-custom-switch::before,
.custom-switch input[type="checkbox"]:checked:focus,
.custom-switch input[type="checkbox"]:focus {
  box-shadow: unset;
}

.custom-switch input[type="checkbox"] {
  width: 36px;
  top: 0px;
  height: 24px;
}

.custom-switch .custom-control-label.qr-custom-switch::before {
  width: 36px;
  height: 16px;
  border-radius: 16px;
  border: 0;
  background-color: #9f9f9f;
}

.custom-switch input[type="checkbox"]:checked~.custom-control-label.qr-custom-switch::before {
  background-color: rgba(255, 155, 6, 1);
}

.custom-switch .custom-control-label.qr-custom-switch::after {
  width: 20px;
  height: 20px;
  top: 2px;
  left: -36px;
  background-color: white;
  box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%),
    0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
  border-radius: 10px;
}

.custom-switch input[type="checkbox"]:hover~.qr-custom-switch::after {
  box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.qr-custom-switch {}

.qr-custom-switch span {
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 13px;
}

.swap-btn-wrp {
  position: relative;
}

.swap-btn-wrp .replace-btn {
  position: relative;
  z-index: 5;
}

.swap-btn-wrp .divider {
  position: absolute;
  width: calc(100% + 20px);
  height: 4px;
  background-color: #f7f7f7;
  top: 44%;
  left: -10px;
}

.custom-select-box {
  position: relative;
}

/* .custom-select-box::after {
    position: absolute;
    top: 18px;
    left: 90%;
    content: '\f107';
    font: normal normal normal 14px/1 FontAwesome;
} */

@media (min-width: 1200px) and (min-height: 520px) and (max-width: 1440px) and (max-height: 768px) {
  .col-right .col-right-inner {
    height: calc(100vh - 100px);
    padding-bottom: 100px;
    overflow-y: hidden;
  }
  body:not(.app).scroll-fixer,
  body:not(.app).billing-main,
  body:not(.app).dpfmainwrapper {
    overflow-y: auto;
  }
  body:not(.app) {
    overflow-y: hidden;
  }

  /* .question-container, */
  #ajax-content-data {
    height: calc(100vh - 130px);
    /* overflow-y: auto; */
    overflow-y: hidden;
    margin-right: 10px;
  }

  #ajax-content-data #step2 {
    margin-left: 10px;
  }

  #ajax-content-data #step2 .card .card-body form #step2_form {
    max-width: 740px;
  }

  #ajax-content-data #step2 .card .card-body form #step3 {
    max-width: 750px;
  }

  #ajax-content-data #step1 {
    /* margin-right: 10px; */
    max-width: 776px;
  }

  #ajax-content-data:hover,
  .col-right .col-right-inner:hover {
    overflow-y: auto;
  }

  #ajax-content-data::-webkit-scrollbar-track,
  .col-right .col-right-inner::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: #f5f5f5;
  }

  #ajax-content-data::-webkit-scrollbar,
  .col-right .col-right-inner::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
  }

  #ajax-content-data::-webkit-scrollbar-thumb,
  .col-right .col-right-inner::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #b1b1b1;
  }
}

.custom-select-box input {
  width: 100%;
  padding: 11px 8px 11px 24px;
  border-radius: 32px;
  border: 2px solid #eaeaec;
  font-size: 16px;
  font-family: "lato";
}

.custom-select-box .dropdown {
  position: absolute;
  background-color: #fff;
  padding: 0px;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0px 18px 16px 1px rgb(0 0 0 / 15%);
  border-radius: 22px;
  left: 11px;
  /* top: 0; */

  overflow: hidden;
  max-height: 0;
  transition: 0.5s ease-in-out;
}

.custom-select-box .dropdown.active {
  max-height: 1000px;
  transition: 0.5s ease-in-out;
}

.custom-select-box .dropdown .drp-btn {
  padding: 4px 16px;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  width: 100%;
}

.custom-select-box .dropdown .drp-btn.btn-lato {
  font-family: "Lato", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-open {
  font-family: "Open Sans", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-robo {
  font-family: "Roboto", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-oswa {
  font-family: "Oswald", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-mont {
  font-family: "Montserrat", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-sour {
  font-family: "Source Sans Pro", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-slab {
  font-family: "Slabo 27px", serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-rale {
  font-family: "Raleway", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-merr {
  font-family: "Merriweather", serif !important;
}

.custom-select-box .dropdown .drp-btn.btn-noto {
  font-family: "Noto Sans", sans-serif !important;
}

.custom-select-box .dropdown .drp-btn:first-child {
  padding-top: 8px;
}

.custom-select-box .dropdown .drp-btn:last-child {
  padding-bottom: 8px;
}

.custom-select-box .dropdown .drp-btn:hover {
  background-color: #1d59f9;
  color: #fff;
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 155, 6, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 155, 6, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(255, 155, 6, 0);
    box-shadow: 0 0 0 10px rgba(255, 155, 6, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 155, 6, 0);
    box-shadow: 0 0 0 0 rgba(255, 155, 6, 0);
  }
}

.dropzone {
  border: 2px dashed #96949c !important;
  border-radius: 8px;
}

.dropzone .dz-button {
  min-width: 200px;
  height: 56px;
  background-color: #1d59f9 !important;
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-family: Lato, sans-serif !important;
}

.dz-remove {
  margin-top: 4px;
  content: "";
}

.dz-remove::before {
  font-family: FontAwesome;
  content: "\f1f8";
  color: rgb(84, 130, 219);
  font-size: 20px;
  margin-right: 6px;
}

.dz-remove {
  height: 28px;
  margin: 2px auto;
  position: absolute;
  left: 19%;

  color: rgb(84, 130, 219);
  bottom: -36%;
  transition: 0.4s ease-in-out;
}

.dz-details {
  display: none;
}

.dropzone .dz-preview .dz-image {
  width: 85px !important;
  height: 85px !important;
  /* background-color: #000; */
}

.dropzone .dz-preview {
  min-height: unset !important;
}

.dropzone .dz-preview .dz-image img {
  width: 85px;
}

.preview-qr-btn:disabled {
  color: #ffffff;
  border-color: #575757;
  background-color: #575757;
}

.rearrange-model .modal-content {
  /* padding: 52px 40px 40px; */
  /* max-width: 389px; */
  width: 100%;
  color: #220e27;
  margin: 20px auto;
  border-radius: 8px;
  overflow-y: auto;
}

.rearrange-model .modal-content h1 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;

  margin: 0 0 32px;
}

.rearrange-model .close {
  top: 10px;
  color: #96949c;
  right: 10px;
  position: absolute;
  transition: 0.3s ease-in all;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 1;
}

div#custom-dropzone-preview {
  /* display: none !important; */
  padding: 20px 0 38px 0px !important;
  border: none !important;
  overflow-x: auto;
  transition: 0.4s ease-in-out;
}

.custom_error {
  font-size: 12px;
  color: rgb(25, 118, 210);
  position: absolute;
  text-align: left;
  bottom: 5px;
  right: 10px;
  left: 20px;
}

.custom_error {
  font-size: 12px;
  color: rgb(25, 118, 210);
  position: absolute;
  text-align: left;
  bottom: 5px;
  right: 10px;
  left: 20px;
}

#custom-dropzone-preview::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  border-radius: 10px;
}

#custom-dropzone-preview::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #f5f5f5;
}

#custom-dropzone-preview::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #1d59f96b;
}

#custom-dropzone-preview:hover #custom-dropzone-preview::-webkit-scrollbar-thumb {
  background-color: #1d59f9;
  transition: 0.4s ease-in-out;
}

.dropzone .dz-preview {
  padding: 8px !important;
  margin: 8px !important;
  border: 2px solid rgb(217, 220, 225);
  border-radius: 10px !important;
}

.dropzone .dz-preview:hover {
  border-color: rgb(84, 130, 219);
  transition: 0.4s ease-in-out;
}

.rearrange-model .modal-content {
  /* padding: 52px 40px 40px; */
  /* max-width: 389px; */
  width: 100%;
  color: #220e27;
  margin: 20px auto;
  border-radius: 8px;
  overflow-y: auto;
}

.rearrange-model .modal-content h1 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;

  margin: 0 0 32px;
}

.rearrange-model .close {
  top: 10px;
  color: #96949c;
  right: 10px;
  position: absolute;
  transition: 0.3s ease-in all;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 1;
}

.spinner-border {
  top: 28%;
  left: 28%;
  z-index: 999;
}

.allergens {
  margin-left: auto !important;
  margin-right: auto !important;
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: flex;
  border: 2px solid red;
}

.allergens_img {
  display: block;
  width: 52px;
  padding: 8px;
}

.allergens_btn {
  position: relative;
  border: 2px solid #e4e4dd;
  border-radius: 5px;
  width: max-content !important;
  cursor: pointer !important;
}

.allergens_btn .allergens_checkbox {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0px;
  left: 0px;
  opacity: 0;
  z-index: 100;
  cursor: pointer !important;
}

.check_effect {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0px;
  left: 0px;
}

.allergens_checkbox:checked+.check_effect {
  border: 2px solid #1e2ccd;
  border-radius: 5px;
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0px;
  left: 0px;
  animation: fadeInAnimation ease 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tooltip {
  position: absolute;
  white-space: nowrap;
  top: 0;
  left: 51%;
  transform: translateX(-49%);
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.allergens_btn:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.allergens_btn:hover .tooltip,
.allergens_btn:hover .tooltip::before {
  background-color: #26162e;
  color: #ffffff;
}

/* Menu Changes */
.menu-product-wrap div.menu-product-section:last-child .menuActionButtons div button.menu-order-down,
.menu-product-wrap div.menu-product-section:first-child .menuActionButtons div button.menu-order-up {
  pointer-events: none;
  opacity: 0.5;
}

/* Menu Changes */
.product-container div.add_product:last-child .productActionButtons div button.product-order-down,
.product-container div.add_product:first-child .productActionButtons div button.product-order-up {
  pointer-events: none;
  opacity: 0.5;
}

.all_allergens {
  margin-left: -7px !important;
}

.custom-accodian .section-name {
  /* width: 84px; */
  margin-left: -110px !important;
  word-break: break-word;
}

.productAccodian .product-name {
  width: 102px;
  margin-left: -107px !important;
}

.productAccodian .product-btn {
  margin-left: -23px;
}

.custom-accodian .section-order {
  padding-right: 20px;
}

.custom-accodian .delete-sec-btn {
  margin-right: 10px;
}

@media (max-width: 650px) {
  .all_allergens {
    margin-left: -27px !important;
  }
}

@media (max-width: 500px) {
  .productAccodian .product-name {
    width: 102px;
    margin-left: -145px !important;
  }

  .custom-accodian .section-name {
    /* width: auto; */
    margin-left: -145px !important;
    word-break: break-word;
  }
}

@media (max-width: 400px) {
  .all_allergens {
    margin-left: -40px !important;
  }

  .allergens_btn {
    scale: 90%;
  }
}

@supports (-webkit-touch-callout: none) {

  /* CSS specific to iOS devices */
  @media (max-width: 480px) {
    input#validTillDate::-webkit-date-and-time-value {
      display: none;
      margin-right: 18px;
    }

    #validTillDate {
      width: 320px;
    }
  }
}

.custom-accodian .collapseInner .form-control,
.my-account .accountCardDetail .form-control,
.companyItem .companyTypeButton,
.contactPage .form-control,
.userPage .form-control,
.modal-content .form-group .form-control {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 650px) {

  .custom-accodian .collapseInner .form-control,
  .my-account .accountCardDetail .form-control,
  .contactPage .form-control,
  .userPage .form-control,
  .modal-content .form-group .form-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* video dropzone custom progress design */
.afterImage-upload .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 30%;
  bottom: -28%;
  margin-top: -8px;
  width: 100%;
  margin-left: -40px;
  background: rgb(227 227 227 / 90%);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.afterImage-upload .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.real-progress {
  text-align: center;
  margin-top: 23px;
  font-size: 12px;
  margin-right: 10px;
}

.icon-content-wrapper{
  display: flex;
  flex-direction: column;
  /* align-items: baseline; */
  justify-content: center;
  margin-top: 4px;
}

.icon-content-wrapper > span:first-child {
  margin-bottom: 2px;
}
