:root {
  --gradient-color: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
  --primary-color: #2b2b2b;
  --pink-color: #e10b90;
  --radius-20: 20px;
  --grey-color: #767676;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar {
  width: 0px;
}
::-webkit-scrollbar
/* Track */
::-webkit-scrollbar-track , ::-webkit-scrollbar-track {
  background: var(--gradient-color);
  border-radius: 20px;
}

@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoBlack";
  src: url("../fonts/Roboto-Black.woff2") format("woff2"),
    url("../fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2"),
    url("../fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Thin.woff2") format("woff2"),
    url("../fonts/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RobotoRegular";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/proxima/ProximaNova-Regular.woff2") format("woff2"),
    url("../fonts/proxima/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
button:disabled,
button[disabled] {
  background: #999 !important;
  cursor: no-drop !important;
}
.proxima {
  font-family: "Proxima Nova Rg", sans-serif;
}
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  outline: none !important;
}
a {
  text-decoration: none;
}
svg {
  width: 100%;
  resize: both;
}
.rounded-5 {
  border-radius: 1rem !important;
}
.text-pink {
  color: var(--pink-color);
}
.bg-light {
  background-color: #fafafa !important;
}
.bg-gray {
  background-color: #f1f1f1 !important;
}
.home-row svg {
  width: auto;
}
html,
body {
  min-height: 100%;
  letter-spacing: 0;
  background: var(--gradient-color);
  font-family: "RobotoRegular", sans-serif;
  font-size: 16px;
  width: auto;
  background-repeat: no-repeat;
  font-weight: 400;
  color: var(--primary-color);
  text-shadow: 1px 1px 1px rgb(0 0 0 / 0%) !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-attachment: fixed;
}
.bold {
  font-weight: 700;
}
.pt-100 {
  padding-top: 100px;
}
.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.white-rounded {
  background: #fff;
  box-shadow: 0px 19px 30px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  overflow: hidden;
}
.grey-text {
  color: var(--grey-color);
}
/*------ preloader -------*/
.preloader {
  position: fixed;
  width: 100%;
  background: var(--gradient-color);
  height: 100%;
  z-index: 99999999;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.2s ease-out 0.1s;
  transition: fill 0.2s ease-out 0.1s;
}
svg.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.2s ease-out 0.3s;
  transition: fill 0.2s ease-out 0.3s;
}
svg.active .svg-elem-2 {
  fill: #fff;
}
svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.2s ease-out 0.4s;
  transition: fill 0.2s ease-out 0.4s;
}
svg.active .svg-elem-3 {
  fill: #fff;
}
svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.2s ease-out 0.7s;
  transition: fill 0.2s ease-out 0.7s;
}
svg.active .svg-elem-4 {
  fill: #fff;
}
.uq-app .uq-modal {
  z-index: 99999 !important;
}
/*------ SideNavbar ------*/
.sidenav-btn {
  position: fixed;
  z-index: 9999;
  color: white;
  transition: background 0.3s;
  right: 5px;
  overflow: hidden;
  top: 10px;
  background: transparent;
  padding: 10px 25px;
  display: inline-block;
  border-radius: var(--radius-20);
  transition: all 0.3s;
}
.sidenav-btn.dark-btn {
  background: var(--primary-color);
  width: auto;
  min-height: unset;
  overflow: hidden;
}
.hamburger-icon.x {
  background: var(--primary-color);
}
.sidenav-btn span {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 2em;
}
.sidenav-btn:hover {
  color: white;
}
#sidenav {
  padding-top: 100px;
  width: 80%;
  max-width: 350px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: var(--primary-color);
  right: -350px;
  transition: right 0.35s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.sidenav-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  right: 100%;
  top: 0;
  z-index: -1;
  cursor: default;
}
.sidenav li.item {
  transition: all 0.3s;
}
.sidenav li.item:hover,
.sidenav li.item.active {
  background: #535353;
}
#sidenav.opennav {
  right: 0;
}
#sidenav.opennav + .sidenav-overlay {
  right: 0;
  z-index: 99;
}
#sidenav ul {
  list-style: none;
}
#sidenav ul a {
  color: white;
  transition: all 0.3s;
  position: relative;
  display: block;
}
.bg-gradientC {
  background: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
  z-index: 999999;
  position: relative;
}
.hamburger-icon {
  width: 20px;
  fill: white;
}
.hamburger-icon path {
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.hamburger-icon.x #path-1,
.hamburger-icon.x #path-4 {
  transform: scale(0);
}
.hamburger-icon.x #path-2 {
  transform: rotate(45deg);
}
.hamburger-icon.x #path-3 {
  transform: rotate(-45deg);
}

/*------ Home Page -------*/
.home-row .bg-white {
  background: white;
  box-shadow: 0px 19px 30px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  transform: rotate(8.82deg);
  width: 100%;
}
.home-bg {
  position: relative;
}
.home-bg:before {
  position: absolute;
  top: -20vh;
  right: -15vh;
  content: "";
  height: 110vh;
  aspect-ratio: 1;
  background: var(--gradient-color);
  transform: rotate(0deg);
  border-radius: 50%;
}
.home-service-sm {
  display: none;
}
.flex-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.big-title {
  line-height: 88.19%;
  letter-spacing: -0.04em;
}
.border-rounded {
  border-radius: 50%;
  padding: 1rem;
  position: relative;
  background: var(--gradient-color);
  padding: 3px;
  width: 150px;
  height: 150px;
}
.border-rounded img {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.gradient-color {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.04em;
}
.gradient-link {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: absolute;
  top: 3px;
  right: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.account-link {
  position: absolute;
  top: 3px;
  right: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.login-link a {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.forgetpass a {
  color: #2b2b2b;
  transition: all 0.3s;
}
.forgetpass a:hover {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.gradient-link:hover,
.login-link a {
  -webkit-text-fill-color: var(--pink-color);
}
.white-btn {
  display: inline-block;
  background-image: linear-gradient(100deg, #fff 63%, #ffff 99.33%);
  border-radius: var(--radius-20);
  color: var(--primary-color);
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  font-weight: 700;
  transition: all 0.3s;
  min-width: 280px;
  border: none;
  margin: auto;
}
.black-btn {
  background: var(--primary-color);
  color: white;
}

.black-btn span {
  color: white !important;
}
.white-btn span {
  color: var(--primary-color);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.white-btn:hover span {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.white-btn img {
  transition: all 0.3s;
  left: 0;
  position: relative;
  filter: brightness(0) invert(1);
}
.white-btn:hover img {
  left: 10px;
}
.home-column {
  display: flex;
  flex-wrap: wrap;
}
.tipr-barcode {
  max-width: 300px;
  width: 100%;
}
.pages a,
.contact-info a,
.payments-security .pages a {
  color: white;
  transition: all 0.3s;
  position: relative;
  min-height: 30px;
  height: 100%;
}
.pages a:before,
.contact-info a:before,
.payments-security .pages a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1px;
  left: 0;
  transform: scale(0);
  transform-origin: center;
  background: white;
  transition: all 0.3s;
}
.pages a:hover:before,
.contact-info a:hover:before,
.payments-security .pages a:hover:before,
.pages li.active a:before {
  transform: scale(1);
}
.bg-black {
  background: var(--primary-color);
  color: white;
}
.tipr .border-rounded {
  max-width: 318px;
  max-height: 318px;
  height: 100%;
  width: 100%;
}
.tipr .border-rounded img {
  background: var(--primary-color);
}
.tip-process img {
  max-width: 130px;
  max-height: 156px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.tipr-input {
  background: #ffffff;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-20);
  position: relative;
}
.tipr-input:focus {
  box-shadow: inset 4px 0px 4px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}
.tipr-input::placeholder,
.input-number::placeholder {
  /*    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);*/
}
.mandatory,
.optional {
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--pink-color);
  font-weight: 600;
  font-family: "RobotoRegular", sans-serif;
  font-style: normal;
}
.mandatory-res,
.mandatory-fields {
  display: none;
}
.select2-container--default .select2-selection--single {
  background-color: unset;
  border: unset;
  border-radius: unset;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-weight: 700;
  color: var(--primary-color);
}
.select2-container {
  width: auto !important;
}
.select2-container--open .select2-dropdown {
  top: 5px;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}
.submit-btn span {
  display: block;
  text-align: center;
  margin: auto;
}
.search-country {
  position: absolute;
  max-height: 50px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  position: sticky;
  background: white;
}
.search-country input {
  border-radius: 15px;
  border: 1px solid var(--primary-color);
}
.tipr-video {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}
.tipr-video iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.border-gradient {
  border-image: var(--gradient-color);
  border-image-slice: 1;
  background-origin: border-box;
  border: double 1px transparent;
  border-radius: 30px;
  background-image: linear-gradient(white, white), var(--gradient-color);
  background-clip: content-box, border-box;
}
.quotes,
.quotes-sm {
  display: none;
}
.home-service-sm .quotes-sm {
  display: none;
}
/*------ footer ------*/
.social_media {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_media li a {
  color: white;
}
.social_media li {
  transition: all.3s;
}
.social_media li:hover {
  transform: scale(1.5);
}
.logoFooter {
  max-width: 170px;
  object-fit: contain;
}
/*------ support ------*/
.input-contact {
  border-radius: var(--radius-20) !important;
  position: relative;
  background: #f1f1f1;
  border: none !important;
  box-shadow: none;
}
.input-contact input::placeholder {
  /* color: var(--primary-color);
    font-weight: 700;*/
}
.input-contact input {
  background: transparent;
}
/*------ contact ------*/
.contact-info a {
  color: var(--primary-color);
  position: relative;
}
.contact-info a:before {
  background: var(--primary-color);
}
.optional {
  color: var(--grey-color);
}
/*------ Login -------*/
.login-input::placeholder {
  text-align: center;
}
.toggle-password {
  font-size: 16px;
  color: var(--grey-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-btn {
  background: var(--gradient-color);
  color: white;
}
.welcome-btn {
  background: var(--gradient-color);
  position: absolute;
  bottom: 5rem;
  left: 0;
}
.login-btn p {
  color: white;
  display: block;
  width: 100%;
  text-align: center;
}
.id-image {
  position: relative;
  width: 100%;
}
.id-image img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 10px 12px 0px #00000026;
}
.user-id-label {
  position: relative;
  width: 100%;
  /* padding: 4rem; */
  border: 1px solid #d0d0d0;
  color: var(--grey-color);
  cursor: pointer;
  border: 1px solid #d0d0d0;
  background: #d9d9d980;
  height: 20vh;
  display: flex;
  /* vertical-align: middle; */
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.user-id-label + input {
  display: none;
}
.file-name {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
}
.id-container input:valid + .file-name {
  max-height: 50px;
  margin-top: 1.5rem;
}
.file-name span {
  font-family: "RobotoBold";
  color: var(--primary-color);
}
.remove-file {
  color: var(--primary-color);
  transition: background 0.3s;
}
.remove-file:hover {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
/* ------ bulk ------*/
.bulk-btn {
  background: var(--pink-color);
  color: white;
}
.content-page.bg-light {
  border-radius: var(--radius-20);
}
.file-upload {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.upload-csv {
  background: #dddddd;
  border-radius: 20px;
}
.btn-remove {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-remove span {
  transition: all 0.3s;
}
.btn-remove:hover span {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
/*------ staff Details -------*/
.staff-details {
  background: #f8f9fa;
  border-radius: 20px;
  width: 100%;
  margin: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.tipr-code {
  font-size: 16px;
  line-height: 146.5%;
  letter-spacing: -0.04em;
  color: var(--grey-color);
}
.bg-grey-staff {
  background: var(--grey-color);
  border-radius: 20px;
}
.staff-btns {
  list-style: none;
}
.staff-btns a {
  color: white;
  transition: all 0.3s;
}
.staff-btns a:hover {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.details-sm {
  display: none;
}
/*------ edit Page -------*/
label.grey-text span {
  font-size: 14px;
  font-weight: 400;
}
/*------ dashboard page -------*/
.dashboard-box {
  border-radius: var(--radius-20);
  overflow: hidden;
  text-align: center;
}
.dashboard-box h6 {
  font-weight: 700;
  text-align: center;
  color: white;
}
.dashboard-box .dashboard-img {
  overflow: hidden;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 30%);
}
.dashboard-box .dashboard-img img {
  width: 100%;
  margin: auto;
  text-align: center;
  object-fit: cover;
  transition: all 0.3s;
}
.dashboard-box:hover .dashboard-img img {
  transform: scale(1.1);
}
.dashboard-box.bg-pink {
  background: var(--pink-color);
}
.dashboard-box.bg-yellow {
  background: #ffac1b;
}
.dashboard-box.bg-black {
  background: var(--primary-color);
}
.tip-budget {
  list-style: none;
  display: inline;
  display: flex;
  justify-content: center;
}
.tip-budget li {
  background: var(--primary-color);
  border-radius: var(--radius-20);
  min-width: 100px;
  min-height: 100px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tip-budget li:before,
.payment-types li:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s;
  background: var(--gradient-color);
  z-index: 1;
}
.tip-budget li:hover:before,
.payment-types li:hover:before {
  opacity: 1;
}
.tip-budget li.active:before {
  opacity: 1 !important;
}
.tip-budget li h1,
.tip-budget li span,
.payment-types li img {
  display: block;
  z-index: 2;
  position: relative;
}
.payment-types {
  list-style: none;
  padding: 0;
}
.payment-types li {
  border-radius: var(--radius-20);
  transition: all.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.payment-types li img {
  max-height: 50px;
  height: 100%;
  text-align: center;
  object-fit: contain;
  width: 100%;
}
.payments-security p {
  color: var(--primary-color);
  font-size: 20px;
}
.payments-security .pages a {
  color: var(--pink-color);
}
.payments-security .pages a:before {
  background: var(--pink-color);
}
.tip-bugget {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.04em;
}
#tsparticles {
  min-height: 500px;
  height: 100%;
}
.user-balance {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
}
/*------ thanks page ------*/
#tsparticles {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
/*------ account page ------*/
.account-image {
  max-height: 208px;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}
/* ------- swal ------ */
.swal-button-container {
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
  margin-bottom: 10px !important;
}
.swal-button.swal-button--confirm {
  background: var(--gradient-color) !important;
  padding: 20px 55px !important;
  text-align: center !important;
}
@media (max-width: 1200px) {
  .home-column {
    display: unset;
  }
  .upload-csv {
    display: block !important;
  }
  .browse-btn {
    min-width: unset;
    width: 100%;
  }
  .m-company {
    position: relative;
    display: block;
    nargin-top: 25px;
    right: 0;
    margin: 18px 0 0 0px !important;
  }
  .border-rounded {
    max-width: 150px;
    max-height: 150px;
    height: 150px;
    width: 100%;
  }
  .border-rounded img {
    object-fit: contain;
  }
  .tipr-video {
    height: 500px;
  }
  .home-bg:before {
    height: 60%;
  }
}
/*review page*/
.rating {
  font-size: 2.2rem;
  line-height: 1.2rem;
  display: inline-block;
}
.star {
  color: #d0d0d0;
}
.star--full {
  background: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
  background-clip: text !important;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.star--full i {
  background: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
  background-clip: text !important;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.selWrap {
  position: relative;
  background: #2b2b2b;
  border-radius: 24px;
  color: white;
  height: 100%;
  max-height: 56px;
  z-index: 999;
}
.u-hide {
  display: none;
  position: absolute;
  background: #5e5e5e;
  border: 1px solid #d0d0d0;
  border-radius: 24px;
  color: white;
  width: 100%;
  list-style: none;
  padding: 0;
  z-index: 9;
  top: 39px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  padding-top: 20px;
  overflow: hidden;
}
.s-dropdown--styled {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: #2b2b2b;
  border-radius: 24px;
  color: white;
  position: relative;
  z-index: 9999;
}
.s-dropdown--styled span {
  position: relative;
  width: 100%;
  display: block;
  padding-left: 25px;
}
.s-dropdown--styled span:before {
  content: url("../images/icons/filter_list.png");
  display: inline-block;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}
.s-dropdown--styled span:after {
  content: url("../images/icons/arrow_drop_down_24px.png");
  display: inline-block;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
}
.s-dropdown--styled span::before {
  position: absolute;
  right: 0px;
}
.s-dropdown--styled ul {
}
.s-dropdown--styled ul li {
  position: relative;
  cursor: pointer;
}
.j-store {
  cursor: pointer;
  transition: all 0.3s;
}
.j-store:hover {
  background: #2b2b2b;
}
.review-content p {
  font-size: 14px;
  color: var(--grey-color);
}
.review-content p span.bold,
.review-content p.bold {
  color: black;
}
.review-bg p {
  color: #2b2b2b;
  font-size: 16px;
}
.check-input,
.check-input a {
  color: var(--primary-color);
  transition: all 0.3s;
}
.check-input a:hover {
  color: var(--pink-color);
}
.check-input .form-check-input:checked {
  background-color: var(--pink-color);
  border-color: var(--pink-color);
}
.check-input .form-check-input:focus {
  box-shadow: unset;
}

.fingerprint {
  width: fit-content;
  border-radius: 50%;
  border: 0 solid transparent;
  background-image: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
  padding: 8px;
  display: inline-block;
  padding: 5px;
}

.fingerprint img {
  display: block;
  border-radius: 50%;
  background: white;
  padding: 5vh;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

.please-wait {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
}

.dots-wait {
  display: flex;
  justify-content: space-around;
  align-items: end;
  margin: 0 6px;
}

.dots-wait .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 3px;
}

.dots-wait .dot:nth-child(1) {
  animation: pulse 2s infinite 0s;
}

.dots-wait .dot:nth-child(2) {
  animation: pulse 2s infinite 0.5s;
}

.dots-wait .dot:nth-child(3) {
  animation: pulse 2s infinite 1s;
}

.please-wait p {
  margin: 0px;
}

@media (max-width: 992px) {
  .home-row .bg-white {
    transform: unset;
  }
  .file-information .filename span,
  .tipr-input::placeholder,
  .card-btn span,
  .input-number::placeholder,
  .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    /*        font-size: 14px;*/
  }
  .footer-container {
    flex-direction: column-reverse;
  }
  .footer-container ul {
    margin-bottom: 20px !important;
    justify-content: center;
  }
  .table-responsive .table {
    direction: rtl;
    text-align: end;
  }
  footer .social_media {
    margin: 20px 0 !important;
  }
  .tip-budget {
    display: inline-block;
  }
  .tip-budget li {
    display: inherit;
    margin-bottom: 5px;
    min-width: 75px;
    min-height: 75px;
    font-size: 14px;
  }
  .flex-container-md {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .file-information .btn-remove span {
    display: none;
  }
  .tipr-video {
    height: 400px;
  }
  .home-bg:before {
    height: 40%;
  }
  .gradient-link,
  .account-link {
    position: relative;
    top: unset;
    transform: unset;
    right: unset;
  }
}
@media (max-width: 800px) {
  .file-information .filename span,
  .tipr-input::placeholder,
  .input-number::placeholder,
  .card-btn span,
  .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    /*        font-size: 12px;*/
  }
  .mandatory,
  .optional {
    font-size: 10px;
  }
  .filename {
    text-align: center !important;
  }
  .btn-remove {
    position: relative;
    top: unset;
    right: unset;
    transform: unset;
    transition: all 0.3s;
    cursor: pointer;
    margin-left: 10px;
    display: block;
  }
  .home-bg:before {
    height: 20%;
  }
  .login-link,
  .forgetpass {
    font-size: 12px;
  }
  .thankbuttons .white-btn:first-child img {
    filter: brightness(0) invert(1);
    margin-right: 1rem !important;
    margin-left: unset !important;
  }
  .thankbuttons a {
    min-width: unset;
    width: auto;
    display: inline-block !important;
    white-space: unset;
    margin: 0 !important;
    height: auto;
  }
  .thankbuttons a:first-child div.d-flex {
    flex-direction: row-reverse;
  }
  .thankbuttons a:first-child {
    margin-right: 10px !important;
  }
  .star-rating {
    font-size: 2em !important;
  }
}
@media (max-width: 768px) {
  #sidenav {
    overflow-y: scroll;
  }
  .home-row .bg-white {
    margin-bottom: 25px;
  }
  .tip-process {
    display: flex;
    align-items: center;
  }
  .staff-btns {
    display: flex !important;
    width: 100%;
  }
  .staff-btns li span {
    display: none;
  }
  .details-lg {
    display: none;
  }
  .details-sm {
    display: block;
  }
  .contact-title {
    font-size: 1rem;
  }
  .footer-pages {
    display: inline-block !important;
  }
  .footer-pages .social_media {
    margin: 0.5rem 0 0 0 !important;
  }
  .tipr-video {
    height: 300px;
  }
  .tipr-box {
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    margin-top: -11%;
    padding: 12% 5% 5% 5%;
  }
  .tipr-box p {
    margin-top: 0 !important;
    text-align: center;
  }
  .tipr-box span {
    color: #2b2b2b;
    text-align: center;
  }
  .forgetpass {
    margin-top: 15px;
    display: block;
  }
  .d-sm-block {
    display: block !important;
  }
  .review-title {
    display: none;
  }
}
@media (max-width: 600px) {
  .video-title {
    font-size: 16px;
  }
  .home-service-sm .quotes-sm {
    display: none;
  }
  .white-btn {
    min-width: unset;
    width: 100%;
    white-space: nowrap;
    font-size: 14px;
  }
  .container-sm {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  /*    .dashboard-box .dashboard-img img{
        height: 150px;
        object-position: top;
    }*/
  .account-image {
    max-height: 350px;
  }
  .tip-process {
    display: flex;
    align-items: center;
  }
  .tipr .border-rounded {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    margin: unset !important;
    margin-right: 20px !important;
  }
  .tip-process .gradient-color {
    font-size: 20px;
    text-align: start;
    margin-bottom: 0 !important ;
    margin-top: 0 !important ;
  }
  .tipr .gradient-color,
  .tip-process .gradient-color {
    font-size: 20px;
    margin-bottom: 0 !important ;
    margin-top: 0 !important ;
  }
  .tip-process span {
    text-align: start !important;
    display: inline-block;
    font-size: 14px;
    width: 100%;
  }
  .tipr span {
    display: inline;
    font-size: 14px;
    width: 100%;
  }
  .tip-process span {
    width: auto;
  }
  .tip-process span br {
    display: none;
  }
  .impact-img {
    margin-bottom: 0 !important;
  }
  #demo .mandatory,
  .contact-form .mandatory,
  .contact-form .optional {
    /*        display: none;*/
    /*font-size: 8px;*/
  }
  #demo.py-6 {
    padding-bottom: 0 !important;
  }
  .home-row svg {
    width: auto;
    max-width: 200px;
    margin: auto;
    text-align: center;
    display: block;
    width: 100%;
  }
  .title-resp {
    text-align: center;
    color: #fff;
  }
  .home-bg:before {
    content: none;
  }
  .home-row svg path,
  .home-row svg rect {
    fill: white;
  }
  .title-resp h4 {
    font-size: 14px;
  }
  .home-bg {
    background: var(--gradient-color) !important;
  }
  .home-service {
    display: none;
  }
  .home-service-sm {
    display: block;
    text-align: center;
    color: #000000;
    background: white;
    height: 100%;
    margin-top: -200px;
    position: relative;
  }
  .home-service-sm .text-white {
    color: #0000 important;
  }
  .home-service-sm h3 {
    font-size: 16px;
    color: #0000 important;
  }
  .home-service-sm p,
  .home-service-sm h5 {
    font-size: 14px;
    color: #0000 important;
  }
  .home-service-sm .border-gradient {
    border-image: var(--gradient-color);
    border-image-slice: 1;
    background-origin: border-box;
    border: double 1px transparent;
    border-radius: 30px;
    background-image: linear-gradient(white, white), var(--gradient-color);
    background-clip: content-box, border-box;
  }
  .m-company {
    /*        display: none;*/
    margin: 0 !important;
    top: 0;
    transform: unset;
    margin-left: 5px !important;
  }
  .mandatory-res {
    display: inline;
    position: relative;
    width: 6px;
    height: 6px;
  }
  .mandatory-res.optional {
    display: inline-block;
    position: relative;
    /* width: 6px; */
    /* height: 6px; */
    height: 100%;
    position: relative;
    top: unset;
    right: unset;
    transform: unset;
    width: auto;
  }
  .mandatory-res.optional:before {
    content: unset;
  }
  .mandatory-res:before {
    position: absolute;
    content: "";
    top: 50%;
    right: unset;
    left: 50%;
    width: 100%;
    height: 100%;
    font-size: 37px !important;
    transform: translate(-50%, -50%);
    background: var(--pink-color);
    border-radius: 50%;
  }
  .label-information {
    display: none;
  }
  .grey-text {
    display: flex;
    align-items: center;
  }
  .file-information {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
  }
  .file-information .btn-remove span {
    display: none;
  }
  .file-information .btn-remove {
    margin: 0 !important;
  }
  .grey-text span {
    text-align: start !important;
  }
  .mandatory-fields {
    color: var(--pink-color);
    display: block;
  }
  .sideNav-bottom .pages {
    display: block !important;
    margin-top: 30px !important;
  }
  .sideNav-bottom .pages li {
    display: inline-block;
  }
  footer svg {
    width: auto;
    max-width: 100px;
    margin: auto;
    text-align: center;
    display: block;
    width: 100%;
  }
  .white-btn .text-c {
    display: block;
    width: 100%;
    text-align: center;
  }
  .tipr-video {
    height: 200px;
  }
  .thankbuttons a {
    padding: 15px 8px !important;
  }
  .thankbuttons a p,
  .thankbuttons a span {
    font-size: 12px;
  }
  .thankbuttons .white-btn:first-child img {
    margin-right: 0.5rem !important;
  }
  .thankbuttons .white-btn:last-child img {
    margin-left: 0.5rem !important;
  }
  .tip-budget li:hover:before {
    opacity: 0;
  }
}

@media (max-width: 400px) {
  #demo .mandatory {
    /* display: none; */
    /* font-size: 8px; */
    top: unset;
    bottom: 4px;
    transform: unset;
  }
}

.back-btn:hover {
  color: var(--pink-color) !important;
}

.back-btn {
  color: black !important;
  transition: all 0.3s;
}

.buttons-div {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 500px) {
  .buttons-div {
    flex-wrap: wrap;
  }
}
