* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui;
}

ul,
li,
ol {
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

:root {
  --primary-orange: #FC730C;
  --second-blue-lighy: #055273;
  --second-blue-dark: #2b006e;
  --black: #000000;
  --white: #ffffff;
  --text-color: rgba(0, 0, 0, 0.8);
}

body {
  background: #f9f9f9;
  overflow-x: hidden !important;
}

/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 10px;
  border: 1px solid #f1f1f1;
} */

.row {
  row-gap: 10px;
}

.blue-dark-text {
  color: #992792;
}

.text-col {
  color: var(--text-color);
}

.text-gray-1 {
  color: rgb(207 207 207) !important;
}

.h1-heading {
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.h2-heading {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.h3-heading {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.h4-heading {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.h5-heading {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.h6-heading {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

.top-slider {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header {
  background-color: #992792;
  position: sticky;
  top: 28px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.logo-width {
  max-width: 180px;
}

.footer-logo {
  max-height: 74px;
}

.navbar-nav li a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 8px !important;
  display: block;
  color: var(--white);
}

.navbar-nav li a:hover,
.navbar-nav li a:focus,
.navbar-nav .nav-link.show {
  color: var(--second-blue-dark);
}

.header-login {
  color: var(--primary-orange);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--white);
  padding: 2px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all ease-in 0.5s;
}

.header-login:hover {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}

.dropdown-item {
  color: var(--black) !important;
  font-weight: 500 !important;
}

.dropdown-item:hover {
  color: var(--primary-orange) !important;
}

.navbar-toggler-icon {
  color: var(--white) !important;
}

/* sidebar */
.sidebar .user-head{
  background-color: var(--primary-orange);
  padding: 4px !important;
  border-radius: 4px;
}
.sidebar .user-head .profile-circle-img{
  height: 38px !important;
  width: 38px !important;
}
.sidebar .user-head .profile-circle-img img{
  height: 35px !important;
  width: 35px !important;
}
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  padding: 20px 10px;
  transition: left 0.3s ease-in-out;
  background-color: var(--second-blue-dark);
  z-index: 99;
}

.sidebar.show {
  left: 0;
}

.sidebar .close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 0 4px;
  z-index: 99;
}
table img[alt="no-data"]{
  height: 200px;
  display: block;
  margin: 0 auto 10px;
}

/* .sidebar-menu {
  padding-top: 30px;
} */
.sidebar-menu ul {
overflow-y: auto !important;
height: calc(100vh - 140px);
margin-top: 10px;
}
/* .sidebar-menu ul::-webkit-scrollbar {
  width: 0px !important;
}

.sidebar-menu ul::-webkit-scrollbar-track {
  background: transparent !important;
  border: none !important;
}

.sidebar-menu ul::-webkit-scrollbar-thumb {
  background: transparent !important; 
  -webkit-appearance: none !important;
} */

.sidebar-menu ul li a {
  color: var(--white);
  padding: 10px;
  display: block;
}
.sidebar-menu ul li a i{
  margin-right: 3px;
}

.sidebar-menu ul li a:hover {
  color: var(--primary-orange);
}
.sidebar-menu ul li a:hover .svg-hover-icon path {
  stroke: var(--primary-orange);
}

.accordion-content {
  display: none;
  padding-left: 10px;
}

.accordion-content a {
  display: block;
  color: #fff;
  padding: 5px 0;
  font-weight: 16px;
  font-weight: 400;
}

.sidebar-menu ul li a {
  position: relative;
}

.sidebar-menu ul li a.accordion-toggle::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  color: var(--white);
  transition: all 0.5s ease-in-out;
  transform-origin: 0%;
}

.sidebar-menu ul li a.accordion-toggle:hover::after {
  color: var(--primary-orange);
}

.accordion-toggle.accordion-expanded::after {
  transform: rotate(90deg) translate(-50%) !important;
  top: 10px !important;
}

/* hero section */
.hero-section img {
  height: calc(85vh - 102px);
  object-fit: cover;
}

.hero-section {
  padding: 0 !important;
}

.heroswiper .swiper-pagination {
  z-index: 2;
}

.heroswiper .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8);
}

.heroswiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-orange);
  width: 24px;
  border-radius: 4px;
  z-index: 2;
}

.hero-section .hero-slide {
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-sec-text {
  position: absolute;
  top: auto;
  bottom: 30%;
  left: 60%;
  right: auto;
  transform: translate(-50%, 0);
  z-index: 5;
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 95%;
}

@media (min-width: 768px) {
  .hero-sec-text h1 {
    font-size: 38px;
  }
}

.pri-cor-text {
  color: var(--primary-orange);
}

/* login  */

.login-cart {
  position: fixed;
  top: 0;
  right: -480px;
  max-width: 480px;
  height: 100%;
  background-color: var(--white);
  color: var(--black);
  transition: right 0.4s ease;
  z-index: 1000;
  /* padding: 20px; */
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  box-shadow: rgba(99, 99, 99, 0.2) -2px 0px 8px 0px;
}
.login-cart-scr-bg:has(.login-cart.show)::before{
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 999;
  height: 100%;
}


.login-cart .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  cursor: pointer;
}

.login-cart.show {
  right: 0;
}

.show-password::after {
  content: "\f070";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  color: var(--black);
  cursor: pointer;
}

.hide-password::after {
  content: "\f06e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  color: var(--black);
  cursor: pointer;
}

.text-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.text-btn:hover {
  color: var(--primary-orange);
}

.fill-btn {
  display: block;
  padding: 6px 12px;
  background-color: var(--primary-orange);
  color: var(--white);
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}

.fill-btn:hover {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  background-color: transparent;
}

.text-14 {
  font-size: 14px;
}

.otp-input-main input {
  width: 40px;
  height: 40px;
  text-align: center;
}

.sign-up-gender input {
  height: 16px;
  width: 16px;
}

.py-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service-box {
  background-color: var(--white);
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}

.icon-bg {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 50%;
}

.text-btn-2 {
  color: var(--primary-orange);
  transition: all 0.5s ease-in-out;
  padding: 0;
}

.text-btn-2:hover {
  color: var(--second-blue-dark);
}

.sub-title {
  color: var(--primary-orange);
  font-size: 16px;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary-orange);
  box-shadow: none;
}

.accordion-item:first-of-type .accordion-button {
  border: 0;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: 0;
}

.accordion-header button {
  font-weight: 700;
  padding-left: 0;
}

.accordion {
  background: transparent;
}

.accordion-body {
  padding-top: 0;
  padding-left: 0;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-list li {
  font-size: 16px;
  color: var(--black);
  padding: 4px 0 4px 8px;
  font-weight: 500;
}

.text-list li::marker {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-right: 3px;
  color: var(--primary-orange);
  font-size: 18px;
}

.testmonial-box {
  padding: 20px;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  text-align: justify;
  height: 100%;
}

.profile-img-testmonial {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.testmonial-slide .next-testmonial,
.testmonial-slide .prev-testmonial,
.video-slide .next-video,
.video-slide .prev-video {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--second-blue-dark);
  position: absolute;
}

.testmonial-slide .next-testmonial::after,
.testmonial-slide .prev-testmonial::after,
.video-slide .next-video::after,
.video-slide .prev-video::after {
  font-size: 20px;
}

.video-slide .next-video {
  right: 20px;
}

.video-slide .prev-video {
  left: 20px;
}

@media (max-width: 575px) {
  .testmonial-slide .next-testmonial {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -5px;
    height: 28px !important;
    width: 28px !important;
  }

  .testmonial-slide .prev-testmonial {
    top: 50%;
    bottom: auto;
    left: -5px;
    right: auto;
    height: 28px !important;
    width: 28px !important;
  }

  .video-slide .next-video::after,
  .video-slide .prev-video::after,
  .testmonial-slide .prev-testmonial::after,
  .testmonial-slide .next-testmonial::after {
    font-size: 16px !important;
  }

  .video-slide .next-video,
  .video-slide .prev-video {
    height: 28px;
    width: 28px;
  }

}

.testmonial-box p {
  padding: 0;
}

.cart-with-icon {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}

.cart-with-icon p {
  margin-bottom: 0;
}

.product-cart {
  border-radius: 8px;
  padding: 20px;
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-cart img {
  border-radius: 2px;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  height: 60px;
  width: 60px;
  cursor: pointer;
  border-radius: 50%;
}

/* Animation */
@keyframes scaleIcon {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 137, 3, 0.3);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 0 40px rgba(1, 93, 199, 0);
    transform: translate(-50%, -50%) scale(1.07);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Applying animation */
.video-icon {
  animation: scaleIcon 2s ease-in-out infinite;
}

.social-icon {
  display: flex;
  align-items: center;
  column-gap: 18px;
}

/* footer */
.footer {

  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.footer::after {
  content: "";
  /*background-color: rgba(43, 0, 110, .6);
  background-color: rgb(28 1 71 / 60%);*/
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgb(43, 0, 110);
  background: linear-gradient(303deg, rgba(73, 0, 110, 0.43323266806722693) 0%, rgba(43, 0, 110, 1) 80%);
}

.footer>.container {
  z-index: 9;
  position: relative;
}

.footer-list {
  padding-left: 0;
}

.footer-list li a,
.footer-list-contact li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  padding: 4px 2px;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.footer-list li a::before,
.footer-list-contact li a:before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: var(--primary-orange);
  font-size: 12px;
  top: 50%;
  transform: translatey(-50%);
  left: -12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.footer-list li a:hover,
.footer-list li a:hover::before {
  color: var(--primary-orange);
  opacity: 1;
  visibility: visible;
  padding-left: 10px;
}

.footer-list-contact li a {
  display: flex;
  column-gap: 10px;
}

.last-text-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.video-banner img {
  border-radius: 8px;
}

.video-slide .video-banner img {
  max-height: 450px;
  object-fit: cover;
}

.our-service-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dropdown-toggle::after {
  border: 0;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0px;
  top: 12px;
}

.dropdown-toggle.show::after {
  transform: rotate(180deg);
  top: 8px;
}

.seprate-section {
  height: 3px;
  width: 100%;
  display: block;
  background-color: #ebebeb;
  margin: 36px auto;
}

.section-thired-1 {
  background-image: url("../images/section-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.section-thired-1::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  inset: 0;
}

.section-thired-1>div {
  z-index: 10;
  position: relative;
}

.section-thired-2 {
  background-image: url("../images/section-bg-2.jpg") !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.link-underline {
  text-decoration: underline 1.5px solid var(--second-blue-dark) !important;
  color: var(--second-blue-dark);
}

.link-underline:hover {
  text-decoration: underline 1.5px solid var(--primary-orange) !important;
}

.join-revolution-sec {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}

.pt-50 {
  padding-top: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.view-btn {
  background: #f2f2f2;
  padding: 6px 8px !important;
  border-radius: 10px;
  display: block;
  transition: all ease-in-out .5s;
}

.fill-btn-2 {
  width: 110px;
  text-align: center;
  display: block;
  padding: 6px 12px;
  background-color: var(--primary-orange);
  color: var(--white);
  border: 2px solid transparent;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
}

.fill-btn-2:hover {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  background-color: transparent;
}

.view-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.view-qr-sec {
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  padding: 24px 10px 12px;
  position: relative;
  background: #f2f2f2;
}

.view-qr-text {
  font-size: 16px !important;
  font-weight: 700;
  color: var(--white);
  padding: 2px 6px;
  background: var(--primary-orange);
  position: absolute;
  top: -13px;
  left: 20px;
  border-radius: 4px;
}

.dash-widget-form-bg .row {
  row-gap: 8px !important;
}

.dash-widget,
.datatable.dataTable {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
}

.dash-widget-form-bg {
  background: transparent !important;
  padding: 0 !important;
}

.thead-light tr th {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
}

.datatable.dataTable tbody tr.odd {
  background: rgb(255 248 243) !important;
}

.datatable.dataTable tbody tr.odd td {
  background: transparent !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-bg-type: transparent !important;
}

.user-sidebar {
  background: #f2f2f2 !important;
  position: sticky;
  top: 120px;
}

.main-content {
  position: relative;
}

.input-group-prepend {
  position: absolute;
  top: 1px;
  left: 0px;
  /* z-index: 999; */
  z-index: 50;
}

.input-group-prepend div {
  padding: 5.1px !important;
  border-radius: 9px;
}

.input-group-prepend+input[type="text"] {
  padding-left: 100px !important;
}

.btn-200-end {
  width: 200px !important;
}

.user-head img {
  border-radius: 50%;
  object-fit: cover;
  height: 50px !important;
  width: 50px !important;
  margin-right: 0;
}

.profile-circle-img {
  height: 60px !important;
  width: 60px !important;
  display: block;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

.user-head .user-information {
  align-items: start !important;
}


.datatable.dataTable thead tr th,
.datatable.dataTable tbody tr td {
  border-right: 1px solid #dcdcdc !important;
}




.four-column-data {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  margin-top: 20px;
}
.img-white{
  filter: brightness(0) invert(1);
}
.back-to-home-btn a {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  border-radius: 8px !important;
  margin-top: 20px !important;
  text-align: center !important;
}
.back-to-home-btn a:hover {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  border-radius: 8px !important;
  margin-top: 20px !important;
  text-align: center !important;
}



.user-sidebar{
  display: none !important;;
}



.table > :not(caption) > * > *{
  border-bottom-width: 0;
}
.table > :not(caption) > * {
  border-bottom-width: 1px;
}





@media (min-width: 576px) {
  .login-cart {
    width: 480px;
  }

  .chairman-img img {
    height: 640px !important;
  }

  .testmonial-slide .next-testmonial {
    right: -4px;
  }

  .testmonial-slide .prev-testmonial {
    left: -4px;
  }

  .video-slide .next-video {
    right: -4px;
  }

  .video-slide .prev-video {
    left: -4px;
  }

  .hero-sec-text {
    width: auto;
    padding: 30px;
  }

  .testmonial-box p {
    padding: 0 8px;
  }

}

@media (min-width: 768px) {
  .header {
    top: 30px;
  }

  .hero-section img {
    height: calc(100vh - 102px);
    object-fit: cover;
  }

  .profile-view-service-list li a {
    padding-left: 80px !important;
  }

  .otp-input-main input {
    width: 50px;
    height: 50px;
  }

  .py-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cart-with-icon {
    min-height: 167.57px;
  }

  .h1-heading {
    font-size: 40px !important;
  }

  .h2-heading {
    font-size: 32px !important;
  }

  .h3-heading {
    font-size: 26px !important;
  }

  .h4-heading {
    font-size: 24px !important;
  }

  .h5-heading {
    font-size: 20px !important;
  }

  .h6-heading {
    font-size: 16px !important;
  }

  .four-column-data {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 16px;
  }

}

@media (min-width: 992px) {
  .header {
    top: 32px;
  }

  .py-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .h1-heading {
    font-size: 48px !important;
  }

  .h2-heading {
    font-size: 24px !important;
  }

  .h3-heading {
    font-size: 27px !important;
  }

  .h4-heading {
    font-size: 24px !important;
  }

  .h5-heading {
    font-size: 20px !important;
  }

  .h6-heading {
    font-size: 16px !important;
  }

  .product-cart .h5-heading {
    height: 48px;
  }

  .testmonial-slide .next-testmonial {
    right: -35px;
  }

  .testmonial-slide .prev-testmonial {
    left: -35px;
  }

  .video-slide .next-video {
    right: -35px;
  }

  .video-slide .prev-video {
    left: -35px;
  }

  .user-sidebar{
    display: block !important;;
  }
}

@media (min-width: 1280px) {
  .product-cart .h5-heading {
    height: 48px;
  }

  .testmonial-box p {
    padding: 0;
  }

}

@media (min-width: 1400px) {
  .product-cart .h5-heading {
    height: auto;
  }
}





.top-slider {
  background: #f4d5e8;
  padding: 4px 0;
  box-shadow: 0 2px 5px #c4defe80;
  overflow: hidden;
  display: flex;
  width: 100%;
  margin: 0 auto;
  color: #992792  !important;
  font-weight:bold;
}

.top-slider p {
  margin-bottom: 0;
  font-weight: 500 !important;
  color: var(--white) !important;
  font-size: 16px !important;
}

.top-slideitem {
  animation: animate-top 25s linear infinite;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

@keyframes animate-top {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-1800px, 0, 0);
  }
}



input[type="radio"] {
  display: none;
}

.custom-radio {
  display: flex;
  align-items: center;
  margin-right: 15px;
  cursor: pointer;
}

.radio-circle {
  height: 19px;
  width: 19px;
  border: 2px solid #999;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  transition: border-color 0.3s ease;
}


.radio-circle::after {
  content: "";
  height: 12px;
  width: 12px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translatey(-50%);
  transition: background-color 0.3s ease, border 0.3s ease;
}


input[type="radio"]:checked~.radio-circle {
  border-color: var(--primary-orange);
}

input[type="radio"]:checked~.radio-circle::after {
  background-color: var(--primary-orange);
  border: 2px solid var(--primary-orange);

}

input[value="female"]:checked~.radio-circle::after {
  background-color: var(--primary-orange);
}

input[value="other"]:checked~.radio-circle::after {
  background-color: var(--primary-orange);
}

.header .nav-item .dropdown-menu li a:hover {
  background: #F2F2F2 !important;
}

.sidebar .accordion-content a {
  position: relative;
}

.sidebar .accordion-content a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background: var(--primary-orange);
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.5, 1, 0.89, 1);

}

.sidebar .accordion-content a:hover {
  padding-left: 25px;
  transition: all 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}

.sidebar .accordion-content a:hover::before {
  visibility: visible;
  opacity: 1;
  left: 10px;

}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--txt) !important;
  line-height: 40px !important;

}

.select2-container .select2-selection--single {
  height: 40px !important;
  border-radius: 10px !important;
  padding: 0 7px 0 !important;
}

.select2-container .select2-selection--single:focus {
  border-color: var(--primary);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  display: none;
}

.select2-dropdown {
  border-color: var(--border-color);
  border-radius: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border-color);
  height: 40px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  /*  background-color: var(--primary-light);
  border: 1px solid var(--primary-light); */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  color: var(--black);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #fff;
  /* background: var(--primary); */
  /* border: 1px solid; */
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: var(--white);
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
  border-color: var(--border-color);
  padding-bottom: 16px;
}

.multi-select-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--dark);
  border: 1px solid var(--dark);
}

.multi-select-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.multi-select-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: var(--dark);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--warning);
  border: 1px solid var(--warning);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: var(--warning);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(odd) {
  background-color: var(--info);
  border: 1px solid var(--info);
}

.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(odd) .select2-selection__choice__remove:hover,
.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(odd) .select2-selection__choice__remove:focus {
  background-color: var(--info);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(3) {
  background-color: var(--success);
  border: 1px solid var(--success);
}

.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(3) .select2-selection__choice__remove:hover,
.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(3) .select2-selection__choice__remove:focus {
  background-color: var(--success);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(4) {
  background-color: var(--danger);
  border: 1px solid var(--danger);
}

.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(4) .select2-selection__choice__remove:hover,
.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(4) .select2-selection__choice__remove:focus {
  background-color: var(--danger);
}

.multi-select-colored .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5) {
  background-color: var(--price);
  border: 1px solid var(--price);
}

.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(5) .select2-selection__choice__remove:hover,
.multi-select-colored .select2-container--default .select2-selection--multiple li:nth-child(5) .select2-selection__choice__remove:focus {
  background-color: var(--price);
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--off-white);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-light);
  color: var(--white);
}

.select2-container {
  width: 100% !important;
}


/* new-style Style */
label.error {
  font-size: 13px;
  margin: 4px 0 0;
  font-weight: 600;
  color: var(--danger);
  position: absolute;
  top: -4px;
  padding: 0px 3px;
  background: #d95c5c;
  border-radius: 6px;
  color: #fff !important;
  width: auto;
  text-align: center;
  right: 0;
  z-index: 11;
  text-transform: none;
  padding-left: 11px;
  padding-right: 11px;

}

label.error::before {
  position: absolute;
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-image: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: background 0.1s linear;
  margin-left: -0.3em;
  top: auto;
  background: #d95c5c;
  right: 11px;
  bottom: -4px;
  left: auto;
}

input.error,
select.error,
textarea.error,
select2.error {
  border: 1px solid #d95c5c !important;
  border-left: 5px solid #d95c5c !important;
  background-color: #FFFAFA !important;
}

input.error,
select.error,
textarea.error,
select2.error:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}



#snackbar-error {
  display: none;
  min-width: 310px;
  color: #ffffff;
  background-color: #ff3131;
  border-color: #fcd5d5;
  text-align: center;
  border-radius: 2px;
  padding: 16px 4px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 14px !important;
}

#snackbar-success {
  display: none;
  min-width: 310px;
  color: #ffffff;
  background-color: #008451;
  border-color: #c6eee0;
  text-align: center;
  border-radius: 2px;
  padding: 16px 4px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}

.error_pass {
  color: red;
}

#btn_spinner {
  display: none;
}

#btn_spinner_old {
  display: none;
}

#btn_spinner_new {
  display: none;
}

#btn_spinner1 {
  display: none;
}

#btn_spinner1 {
  display: none;
}

#btn_spinner2 {
  display: none;
}

#btn_spinner3 {
  display: none;
}

#btn_spinner4 {
  display: none;
}

#btn_spinner_3 {
  display: none;
}

#btn_spinner_4 {
  display: none;
}

#btn_spinner_5 {
  display: none;
}


.separate-form input {
  border-radius: 10px !important;
  border: 1px solid #CDCDCD !important;
}


.fileUpload {
  position: relative;
  overflow: hidden;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.upload-btn {
  /* position: relative;
    right: -217px;
    padding-top: 11px;
    padding-bottom: 11px;
    border-radius: 3px;
    top: -41px; */

  border-radius: 0;
  line-height: 29px;
}


.progress {
  margin-top: 5px;
  display: none;
  height: 15px;
}

.input-group-append .btn,
.input-group-prepend .btn {
  padding: 5.5px;
  font-size: 14px;
}

#prof_pic_1-error {
  border-radius: 5px;
  margin-top: 8px;
}

.pro_pic_view_1 {
  width: 40%;
  padding-top: 10px;
}

.rmv {
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  background: rgb(217 92 92);
  /* / margin: 13px -10px; / */
  position: relative;
  top: -50px;
  left: -15px;
  height: 22px;
  width: 22px;
  line-height: 20px;
  text-align: center;
  padding: 0;

}

.rmv1 {
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  background: rgb(217 92 92);
  /* / margin: 13px -10px; / */
  position: relative;
  top: -110px;
  left: 98px;
  height: 22px;
  width: 22px;
  line-height: 20px;
  text-align: center;
  padding: 0;
}

.rmv:hover {
  background: rgba(255, 0, 0, 0.5);
}

.view-qr-sec-btn-posi {
  margin-bottom: 11px;
  margin-top: -24px;
}

.view-qr-sec-btn-posi .view-btn,
.view-btn[datatitle="Add Member"] {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
}

.view-qr-sec-btn-posi .view-btn:active,
.view-btn[datatitle="Add Member"]:active {
  background: var(--primary-orange);
  opacity: .5 !important;
}





.chat-online {
  color: #34ce57
}

.chat-offline {
  color: #e4606d
}

.chat-messages {
  display: flex;
  flex-direction: column;
  max-height: 550px;
  overflow-y: scroll
}

.chat-message-left,
.chat-message-right {
  display: flex;
  flex-shrink: 0;
  column-gap: 12px !important;
}

.chat-message-right .flex-shrink-1.bg-light,
.chat-message-left .flex-shrink-1.bg-light {
  position: relative;
  padding-bottom: 20px !important;
  min-width: 116px;

}

.chat-message-right .flex-shrink-1.bg-light .text-muted,
.chat-message-left .flex-shrink-1.bg-light .text-muted {
  position: absolute;
  right: 16px;
  top: auto;
  bottom: 0px;
  left: auto;
  font-size: 10px !important;
}

.chat-message-right img,
.chat-message-left img {
  max-width: max-content !important;
}


.chat-message-left {
  margin-right: auto
}

.chat-message-right {
  flex-direction: row-reverse;
  margin-left: auto
}



.qr-detailscart {
  background-color: var(--main-white);
  padding: 8px;
  border-radius: 4px;
  display: flex;
  column-gap: 24px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: 24px;
}

.qr-img-main {
  width: 50%;
}

.qr-img {
  width: 110px !important;
  height: 110px !important;
  object-fit: contain;
}


.qr-detailscart {
  background-color: var(--main-white);
  padding: 8px;
  border-radius: 4px;
  display: flex;
  column-gap: 24px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: 24px;
}

.qr-img-main {
  width: 50%;
}


.qr-details-ul li p,
.qr-details-ul li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--main-black4);
}

.qr-details-ul li a {
  color: var(--main-black);
  font-size: 18px;
}

.qr-img-icon {
  height: 30px;
  width: 30px;
}


@media (max-width: 575px) {
  .qr-img-main {
    width: 100% !important;
  }

  .sticker-btn {
    padding: 8px 6px !important;
    border-radius: 6px !important;
  }
}

@media (max-width: 767px) {
  .qr-detailscart {
    flex-wrap: wrap !important;
  }
}



/* profile page in mobile */
.profile-view-sec {
  min-height: 100vh;
}

.profile-view-sec-container {
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 400px) {
  .profile-view-service-list li a {
    padding-left: 40px !important;
  }

  .profile-view-service-list li a .right-arrow {
    right: 10px !important;
  }

  .profile-view-main-row>div>div {
    margin: 0 auto;
    text-align: center;
  }

  .profile-view-sec-container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .profile-view-service-list li a .first-icon {
    left: -25px !important;
  }

}

.profile-view-sec {
  max-width: 450px !important;
  margin: 0 auto;
  background-image: url("../images/Topology-1.png");
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 115px;
  box-shadow: rgba(99, 99, 99, 0.5) 0px 0px 8px 2px;
}

.profile-view-sec-logo {
  position: relative;
  height: 80px;
}

.profile-view-sec-logo::after {
  content: "";
  background-image: url("../images/profile-screen-shape-1.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
}

.profile-view-sec-logo img {
  width: 55px;
  height: 55px;
  position: relative;
  z-index: 5;
  margin: 8px 20px;
}

.profile-view-sec-home-icon {
  position: relative;
}

.profile-view-sec-home-icon span {
  position: absolute;
  top: -80px;
  right: 20px;
}

.profile-view-sec-user {
  background: var(--primary-orange);
  padding: 8px;
  border-radius: 20px;
  width: fit-content;
}

.profile-view-sec-user>div {
  background: rgba(254, 238, 238, 1);
  padding: 6px;
  width: fit-content;
  border-radius: 12px;
}

.profile-view-sec-user>div .user-img-profile-sec {
  height: 100px;
  width: 100px;
  border-radius: 6px;
}

.profile-view-usr-name {
  font-size: 16px;
  font-weight: 800;
  line-height: 21px;
  color: var(--black);
  margin-bottom: 6px !important;
}

.profile-view-vehicle-No {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: var(--black);
  margin-bottom: 6px !important;
}

.sticker-btn {
  display: inline-block;
  padding: 11px 9px;
  background: #2B006E;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16.94px;
  color: var(--white);
  transition: all ease-in 0.5s;
}

.sticker-btn:hover {
  color: var(--white) !important;
  background: var(--primary-orange);
}

.profile-view-service-list {
  padding-left: 25px;
}

.profile-view-service-list li a {
  color: var(--white);
  background: var(--primary-orange);
  padding: 12px 20px;
  display: block;
  width: 100%;
  border-radius: 10px;
  padding-left: 45px !important;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  transition: all ease-in-out .5s;
}

.profile-view-service-list li a:focus {
  background: rgba(9, 52, 70, 1);
}

.profile-view-service-list li a .right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all ease-in-out .5s;
}

/* .profile-view-service-list-main{
  height: 358px;
  overflow-y: auto;
} */
.profile-view-service-list li a:hover .right-arrow {
  right: 10px;
}

.profile-view-service-list li a .first-icon {
  display: block;
  width: 60px;
  height: 60px;
  border: 3px solid #2B006E;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  right: auto;
}

.profile-view-service-list li a .right-arrow {
  background-color: #2B006E;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.profile-view-last-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 450px;
  margin: 0 auto;
  padding: 47px 20px 10px 20px;
  z-index: 5;
}

.profile-view-last-main {
  background-image: url("../images/profile-screen-shape-2.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.profile-view-last-note {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
}


.VIpgJd-ZVi9od-ORHb-OEVmcd {
  height: 0 !important;
  width: 0 !important;
  display: none !important;
  visibility: hidden !important;
}

.hideTranslateHeight {
  top: 0px !important;
}

.goog-te-gadget-icon {
  display: none !important;
}


.goog-te-gadget-simple {
  background-color: #2b006e !important;
  padding: 4px 4px !important;
  border-radius: 7px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 14.94px !important;

}

.goog-te-gadget-simple span {
  color: var(--white) !important;

}


.goog-te-gadget-simple:hover {
  color: var(--white) !important;
  background: var(--primary-orange) !important;
}

.switch input {
  display: none;
}

.switch {
  display: inline-block;
  width: 50px;
  height: 14px;
  margin: 5px;
  margin-left: 25px;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: relative;
}

.slider {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
  background: #B7B7B7;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: visible;
  -webkit-transition: .4s;
  transition: .4s;
}
.detail-table thead tr  th{
  white-space:nowrap !important;
  text-align: center;
}
.detail-table tbody tr  td{
  text-align: center !important;
}

.slider:before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  background: #706F6F;
  border-radius: 100px;
  top: -8px;
  -webkit-transform: translateX(-0px);
  transform: translateX(-0px);
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.23);
}

.switch input:checked+.slider:before {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  background: #FC730C;
}

.off {
  position: absolute;
  left: -39px;
  top: -6px;
  color: #706F6F;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.on {
  position: absolute;
  right: -46px;
  top: -6px;
  color: #d3d3d3;
  font-family: 'roboto_light', sans-serif;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.switch input:checked~.off {
  color: #d3d3d3;

  top: -5px;
}

.switch input:checked~.on {
  color: #FC730C;

}

.view-profile-popup {
  padding: 30px 10px;
  position: relative;
}

.view-profile-popup>.view-profile-popup-main {
  position: relative;
  z-index: 5;
}

.view-profile-popup::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 160px;
  background-color: #efeceb;
  border-radius: 0 0 9px 9px;
}

.view-profile-popup .profile-view-sec-user .user-img-profile-sec {
  height: 130px !important;
  width: 130px !important;
  border-radius: 6px;
}

/* .view-profile-popup .form-group{
  padding:10px 0;
} */
.view-profile-popup .form-group label {
  color: #716d6d !important;
}

.view-profile-popup .form-group h5 {
  color: var(--black) !important;
}

.chairmen-message-para {
  font-size: 17px !important;
  font-weight: 400 !important;
}

.chairman-img {
  padding: 10px;
  border: 3px solid var(--second-blue-dark);
  border-radius: 8px 40% 8px 40%;
}

.chairman-img img {
  border-radius: 8px 40% 8px 40%;
  height: 450px;
}

.chairmen-message-textmain {
  background: var(--white);
}

.message-cot {
  position: absolute;
  left: auto;
  right: 50px;
  bottom: 50px;
}

.message-cot svg path {
  stroke: rgba(156, 155, 158, 0.5);
}

.text-justify {
  text-align: justify;
}

.langauge {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0px !important;
  display: inline-block;
  color: #2b006e !important;
}

.active-langauge {
  color: var(--primary-orange) !important;
}

.sticekr-cart-img-main {
  padding: 8px;
}

.sticekr-cart-img-main::after {
  content: "";
  position: absolute;
  background-color: var(--second-blue-dark);
  width: 112px;
  height: 84px;
  position: absolute;
  top: 0;
  right: 0;
}

.sticekr-cart-img-main::before {
  content: "";
  position: absolute;
  background-color: var(--second-blue-dark);
  width: 112px;
  height: 84px;
  position: absolute;
  bottom: 0;
  left: 0;
}


.img-top-text {
  background-color: var(--second-blue-dark);
  padding: 6px 15px;
  border-bottom-right-radius: 10px;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 4;
}

.img-top-text p {
  margin: 0;
  font-size: 8px;
  line-height: 12px;
  color: var(--white);
  font-weight: 500;
}

.sticker-cart-content-1 {
  border-bottom: 1px solid rgba(252, 115, 12, 1);
}

.view-more-btn {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-orange);
  display: inline-block;
  text-decoration: underline 1px solid var(--primary-orange);
}

.text-15 {
  font-size: 15px;
  font-weight: 400;
  line-height: 26.37px;
}

.text-12 {
  font-size: 12px;
  font-weight: 400;
  line-height: 21.1px;
}

.price-text p span {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 30.16px;
}

.price-text p del {
  color: #706F6F !important;
}

.addtocart-btn {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--primary-orange);
  transition: all ease-in 0.5s;
}

.addtocart-btn:hover {
  background-color: var(--primary-orange);
  color: var(--white);
}

.quentity-option-main {
  display: flex;
  align-items: center;
  column-gap: 14px;
}

.quentity-option-main select {
  width: 89px;
  border: 1px solid var(--primary-orange);
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 2px;
  padding: 4px;
}

.quentity-option-main a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: var(--black);
  text-decoration: underline 1px solid var(--black);
  transition: all ease-in-out .5s;
}

.quentity-option-main a:hover {
  color: var(--primary-orange);
  text-decoration: none;
}

.checkout-list-main-main {
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  border-radius: 6px;
}

.checkout-list-main {
  padding: 20px 12px;
  /* border: 1px solid var(--second-blue-dark); */
  /* background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  border-radius: 6px; */
}

.checkout-list-main-sep {
  border-top: 1px solid rgba(151, 151, 151, 1);

}

.text-20 {
  font-size: 20px;
  font-weight: 400;
  line-height: 35.16px;
}

.product-list-bill-product-img {
  width: 75px;
  height: 75px;
}

.bill-qty-col {
  color: rgba(151, 151, 151, 1);
}

.text-18 {
  font-size: 18px;
  font-weight: 400;
}

.product-list-bill {
  padding: 8px 12px;
  /* border: 1px solid rgba(151, 151, 151, 1); */
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  border-radius: 6px;
}

.total-bill {
  border-top: 1px solid rgba(151, 151, 151, 1);
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buy-sticker-address-form {
  /* border: 1px solid rgba(0, 0, 0, 1); */
  padding: 24px;
}

.buy-sticker-address-form label {
  font-weight: 600;
  margin: 1px;
}

.buy-sticker-address-form input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(151, 151, 151, 1);
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  display: block;
}

.buy-sticker-address-form .checkbox-input {
  display: flex;
  align-content: center;
  column-gap: 10px;
}

.buy-sticker-address-form .checkbox-input input[type="checkbox"] {
  height: 18px;
  width: 18px;
  border: 2px solid gray;
  cursor: pointer;
}

.coupencode input {
  border: 1px solid rgba(151, 151, 151, 1);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 14px;
  width: 100%;
}

.coupencode button {
  font-size: 12px;
  font-weight: 400;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid var(--primary-orange);
  background: var(--primary-orange);
  width: 126px;
  border-radius: 10px;
}

.payment-method-main {
  /* border: 1px solid rgba(151, 151, 151, 1); */
  padding: 16px 19px;

}

.payment-method-main form div {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.payment-method-main form div label {
  margin: 10px 0;
}

.success-message-main {
  height: fit-content;
  display: flex;
  align-self: center;
  justify-content: center;
}

.success-popup {
  /* border: 1px solid rgba(0, 0, 0, 1); */
  background: #F2F2F2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  padding: 10px 16px;
  width: 95%;
  text-align: center;
  height: fit-content;
  margin: 40px auto;
  border-radius: 10px;
}

.success-user-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--black);
}

.order-id {
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
  color: var(--black);
}

.success-message {
  font-size: 14px;
  font-weight: 300;
  line-height: 15px;
  width: 100%;
}

.succesfull-order-btn {
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 35px;
  border-radius: 5px;
  width: 100%;
  margin: 0 auto;
}

.cart-main {
  width: 100%;
  padding: 14px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  background: #f2f2f2;
  border-radius: 10px;
}

.checkbox-input input[type="checkbox"]:checked {
  accent-color: var(--primary-orange) !important;
}




@media(min-width:576px) {
  .addtocart-btn {
    width: 30%;
  }

  .success-popup {
    width: 70%;
    padding: 43px 50px;

  }

  .success-message {
    width: 85%;
  }

  .succesfull-order-btn {
    width: 40%;
  }

}

@media(min-width:768px) {
  .addtocart-btn {
    width: 50%;
  }

  .success-message-main {
    height: calc(100vh - 108px);
  }

  .success-popup {
    width: 70%;
    padding: 43px 50px;
    margin: auto;
  }

  .success-message {
    width: 70%;
  }

  .succesfull-order-btn {
    width: 40%;
  }

}

@media(min-width:991px) {
  .success-popup {
    width: 50%;
  }

  .success-message {
    width: 55%;
  }
}

@media(min-width:1200px) {
  .addtocart-btn {
    width: 30%;
  }
}


.line-clamp-alternative {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  transition: max-height 0.3s ease;
}

.gst-font {
  font-size: 11px !important;
}

.track {
  position: relative;
  background-color: #ddd;
  height: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 45px;
}

.track .step {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 25%;
  margin-top: -18px;
  text-align: center;
  position: relative;
}


.track .step.active .icon {
  background: #045363;
  color: #fff;
}

.track .icon {
  display: inline-block;
  width: 25px;
  top: 5px;
  height: 25px;
  line-height: 25px;
  position: relative;
  border-radius: 100%;
  background: #ddd;
  font-size: 12px;
}

.track .step.active .text {
  font-weight: 500;
  color: #000;
  font-size: 12px;
  padding-top: 8px;
}

.track .text {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
  padding-top: 8px;
}

.track .step.active:before {
  background: #045363;
}

.track .step::before {
  height: 4px;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 18px;
}


@media (min-width: 992px) {

  .footer_bg {
    position: absolute;
    bottom: 38px;
    background: url(../images/footer_bg.webp) no-repeat scroll center 0;
    width: 100%;
    height: 266px;
  }

  .footer_bg .footer_bg_one {
    background: url(../images/volks.gif) no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
  }

}


@-moz-keyframes myfirst {
  0% {
    left: 25%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: 25%;
  }

  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: 25%;
  }

  100% {
    left: 100%;
  }
}


.download-app a {
  text-decoration: none;
  border: 0;
}

.download-app img {
  display: block;
  width: 126px;
  height: auto;
  margin-bottom: 8px;
}

.how-it-work .gs-eb1 .list-group-item+.list-group-item {
  border-top-width: var(--bs-list-group-border-width);
}

.how-it-work .gs-eb1 .list-group-item {
  border-radius: var(--bs-list-group-border-radius) !important;
}


a.download-app-2 {
  background: #000;
  display: block;
  width: 110px;
  border-radius: 7px;
  margin: 10px auto;
}

.app-box {
  border: 1px solid #e5def2;
  border-radius: 6px;
  padding: 10px;
  background: linear-gradient(328deg, rgba(252, 115, 12, 1) 40%, rgba(251, 249, 255, 1) 40%);
}

.paper {
  background: #fff;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, .15), 0 -10px 0 -5px #eee, 0 -10px 1px -4px rgba(0, 0, 0, .15), .5px .5px 8px 0 rgba(0, 0, 0, .24)
}

@media (min-width: 768px) {
  .team-form.paper {
    margin-top: -35px;
  }
}

.facebook-svg {
  left: -3px;
  position: relative;
}


@media (min-width: 992px) {
  .navbar-nav .dropdown-menu li a {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .navbar-nav li a {
    padding: 10px 25px !important;
  }
}
@media (min-width: 1400px) {
  .navbar-nav li a {
    padding: 10px 16px !important;
  }
}



.ecobharat-banner .cart-main {
  border-radius: 10px;
  background-color: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px !important;
  padding: 17px;
}
.ecobharat-banner p {
  font-size: 13px;
}

.ecobharat-banner .h5-heading,.ecobharat-banner .h4-heading,.ecobharat-banner .h6-heading {
  color: #2b006e;
}
.dash-earning .h6-heading{
  color: #fff !important;;
}
.ecobharat-banner .input-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background-color: #fff;
  border: 1px solid #000;
  width: 100%;
  border-radius: 30px;
}
.ecobharat-banner .input-cart a {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.ecobharat-banner .input-cart-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.ecobharat-banner .input-cart-btn a {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid #000;
  background-color: transparent;
  border-radius: 30px;
}
.ecobharat-banner .input-cart-btn a:hover {
  background-color: #fc730c;
  color: #fff;
  border-color: #fff;
  transition: all ease-in-out 0.7s;
}
.ecobharat-banner .input-cart-btn a:hover svg {
  fill: #fff;
  transition: all ease-in-out 0.7s;
}

.ecobharat-banner .profile-card {
  width: 75%;
}
.ecobharat-banner .profile-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.ecobharat-banner .btn-Stroke {
  background: transparent;
  border-radius: 30px;
  border: 2px solid #fc730c;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  padding: 8px 18px;
  color: #fc730c;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ecobharat-banner .btn-Stroke:hover,
.ecobharat-banner .btn-Stroke:focus {
  background-color: #fc730c;
  border: 2px solid #fc730c;
  color: #fff;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.ecobharat-banner .btn-stroke-2 {
  padding: 2px 14px !important;
}
.ecobharat-banner .tet-1 {
  font-size: 24px;
}
.ecobharat-banner .cart-side .card-body .icon {
  background-color: rgba(255, 216, 189, 0.5);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
.ecobharat-banner .cart-side {
  border-radius: 10px;
}
.ecobharat-banner .link-text {
  width: 250px;
  font-size: 10px;
  overflow: hidden;
  white-space: nowrap;
}
.date{
  font-size: 12px !important;
}
@media (min-width: 768px) {
  .ecobharat-banner .link-text {
    font-size: 14px;
  }
  .date{
    font-size: 16px !important;
  }
  .ecobharat-banner .profile-card {
    width: 50%;
  }
  .ecobharat-banner .link-text {
  width: fit-content;
  overflow: visible;
}
}
@media (min-width: 992px) {
  .ecobharat-banner .input-cart {
    width: 100%;
  }
  .ecobharat-banner .profile-card {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .ecobharat-banner .input-cart {
    width: 100%;
  }
  .ecobharat-banner .profile-card {
    width:50%;
  }
}
@media (min-width: 1400px) {
  .ecobharat-banner .input-cart {
    width: 60%;
  }
  .ecobharat-banner .profile-card {
    width: 50%;
  }
 
}
