/* Cs Css */

.custom-edit-btn {
  background: #eff2f5;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px 0 0 20px;
  cursor: pointer;
}

.absolute-preloader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#pagePreloader {
  background: #fff;
  opacity: 0.5;
  z-index: 99999999;
}

html > .absolute-preloader,
body > .absolute-preloader {
  position: fixed !important;
}

.preloader-instance-lg .absolute-preloader .spinner-border,
#pagePreloader .spinner-border {
  width: 10rem !important;
  height: 10rem !important;
  z-index: 9999999999;
}

.preloader-instance-disabled {
  position: relative;
  opacity: 0.5;
  pointer-events: none;
}

.element-disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}

div.profile-progress {
  --size: 10rem;
  --fg: #369;
  --bg: #def;
  --value: 0;
  --pgPercentage: var(--value);
  animation: growProgressBar 3s 1 forwards;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      white 80%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
  position: absolute;
  display: none;
}

.password-input {
  padding-right: 40px !important;
}
.password-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-toggle.show .hide {
  display: none;
}
.password-toggle.hide .show {
  display: none;
}

[data-theme="dark"] .password-toggle svg {
  stroke: #fff !important;
}

.otp-form-group input {
  padding: 0 !important;
}

.pointer-auto {
  pointer-events: auto !important;
}

.btn-sm[data-bs-dismiss="modal"] {
  border-radius: 50% !important;
}

.no-bg {
  background-image: none !important;
}

.bs-invalid-feedback {
  display: block;
}

.form-select.is-invalid,
.was-validated .form-select:invalid,
.was-validated .form-select:invalid ~ .select2-container .select2-selection {
  border-color: #f1416c;
}

.form-select.is-valid,
.was-validated .form-select:valid,
.was-validated .form-select:valid ~ .select2-container .select2-selection {
  border-color: #50cd89;
}

.no-bgi {
  background-image: none !important;
}

.justify-right {
  display: flex !important;
  justify-content: right !important;
  margin-left: auto;
}

.image-upload-card {
  width: 100%;
  min-height: 200px;
  background: var(--jw-input-solid-bg);
  background-image: none;
  background-image: none;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-flow: column;
  border:2px dashed var(--jw-gray-400);
}

.image-upload-card img{
  height: inherit !important;
  max-height: inherit !important;
}

.form-edit-disabled .invalid-feedback {
  display: none;
}

.form-edit-disabled .form-edit-disabled-element {
  display: none !important;
}

.form-edit-disabled :is(input, textarea, select):not([type="checkbox"]) {
  background-image: none !important;
  background-position: initial !important;
  background-size: initial !important;
  padding-right: 1rem !important;
  border-color: var(--jw-input-solid-bg) !important;
}

.justify-align-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.justify-center {
  display: flex !important;
  justify-content: center !important;
}

.justify-between {
  display: flex !important;
  justify-content: space-between !important;
}

.align-justify-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.align-justify-around {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
}

.align-center {
  display: flex !important;
  align-items: center !important;
}

.justify-right {
  display: flex !important;
  justify-content: right !important;
  margin-left: auto;
  /* width: max-content; */
}

.d_none {
  display: none;
}

.d--none {
  display: none !important;
}

tr td:last-child,
tr th:last-child {
  text-align: right;
  padding-right: 0 !important;
}

.delete-alt {
  color: #fff;
  background: #fe7676;
  border-radius: 50%;
  box-shadow: -1px 1px 6px rgba(254, 118, 118, 0.8);
  border: 0;
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;
  vertical-align: top;
  text-align: center;
  right: -6px;
  z-index: 1;
  top: -6px;
  padding: 12px;
  transform: scale(0.7);
}

.delete-alt i {
  position: absolute;
  font-style: normal;
  left: 0;
  top: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}

.review-img-upload {
  background: #e6ebf4;
  border: 2px dashed #92a7bf;
  text-align: center;
  font-size: 30px;
  color: #90a0bc;
  cursor: pointer;
  opacity: 0.8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-xy {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.btn-pill {
  border-radius: 24px !important;
}

.was-validated .input-group-solid .form-control:invalid,
.form-control.is-invalid {
  border-color: #f1416c;
  padding-right: calc(1.5em + 1.55rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f1416c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f1416c' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.3875rem) center;
  background-size: calc(0.75em + 0.775rem) calc(0.75em + 0.775rem);
}

.was-validated .input-group-solid .form-control:valid,
.form-control.is-valid {
  border-color: #50cd89;
  padding-right: calc(1.5em + 1.55rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350cd89' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.3875rem) center;
  background-size: calc(0.75em + 0.775rem) calc(0.75em + 0.775rem);
}

.btn-rounded {
  border-radius: 24px !important;
}

.app-header {
  background-color: var(--jw-app-sidebar-light-bg-color) !important;
}

svg.svg-stroke path {
  stroke: currentColor;
}

svg.svg-stroke-1 path {
  stroke-width: 1px;
}
svg.svg-stroke-2 path {
  stroke-width: 2px;
}
svg.svg-stroke-3 path {
  stroke-width: 3px;
}
svg.svg-stroke-4 path {
  stroke-width: 4px;
}
svg.svg-stroke-5 path {
  stroke-width: 5px;
}
svg.svg-stroke-6 path {
  stroke-width: 6px;
}
svg.svg-stroke-7 path {
  stroke-width: 7px;
}
svg.svg-stroke-8 path {
  stroke-width: 8px;
}
svg.svg-stroke-9 path {
  stroke-width: 9px;
}
svg.svg-stroke-10 path {
  stroke-width: 10px;
}

[data-currency="suffix"] .input-group-currency {
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

[data-currency="suffix"] .input-group-currency .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 0;
  border-left: 1px solid var(--jw-input-border-color) !important;
  border-color: var(--jw-input-border-color) !important;
}

[data-currency="suffix"] .input-group-currency input {
  border-radius: 0.475rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin-left: 0 !important;
  border: 0 !important;
}

.contact-us {
  position: fixed;
  cursor: pointer;
  z-index: 105;
  width: 36px;
  height: 36px;
  bottom: 91px;
  right: 5px;
  border-radius: 0.475rem;
}

.node-button {
  width: 100%;
}

.ripple{
  position: absolute;
  top:0; 
  left:0;
   bottom:0;
    right:0;
  overflow: hidden;
  -webkit-transform: translateZ(0); /* to contain zoomed ripple */
  transform: translateZ(0);
  border-radius: inherit; /* inherit from parent (rounded buttons etc) */
  pointer-events: none; /* allow user interaction */
}
.rippleWave{
  backface-visibility: hidden;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  background: rgba(255,255,255, 1);
  opacity: 0.45;
  -webkit-animation: ripple 2s forwards;
  animation: ripple 2s forwards;
}

@keyframes ripple {
  to {transform: scale(24); opacity:0;}
}
@-webkit-keyframes ripple {
  to {-webkit-transform: scale(24); opacity:0;}
}
.btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  outline: currentcolor none 0px;
  border: 0px none;
  margin: 0px;
  cursor: pointer;
  user-select: none;
  appearance: none;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.71429;
  text-transform: capitalize;
  min-width: 64px;
  padding: 8px 22px;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  height: 48px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.btn-pro:hover {
  box-shadow: none;
}

:root{
  --bs-progress-bar-color:rgb(28, 202, 255);
}
.image-upload-progress
{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.image-upload-progress .progress-bar{
  width: 0;
    height: 3px;
  --bs-progress-bar-transition: width 0.6s ease;
  --bs-progress-bar-bg: var(--theme-primary);
}

.btn-pro-cyan {
  background-color: rgb(28, 202, 255);
  box-shadow: rgba(28, 202, 255, 0.24) 0px 8px 16px 0px;
}

.btn-pro-cyan:hover {
  text-decoration: none;
  background-color: rgb(14, 119, 183);
}

.btn-pro-warning {
  background-color: rgb(253, 169, 45);
  box-shadow: rgba(253, 169, 45, 0.24) 0px 8px 16px 0px;
}
.btn-pro-warning:hover {
  text-decoration: none;
  background-color: rgb(182, 104, 22);
}

.btn-pro-success {
  background-color: rgb(0, 171, 85);
  box-shadow: rgba(0, 171, 85, 0.24) 0px 8px 16px 0px;
}
.btn-pro-success:hover {
  text-decoration: none;
  background-color: rgb(0, 123, 85);
}

.btn-pro-info {
  background-color: rgb(118, 53, 220);
  box-shadow: rgba(118, 53, 220, 0.24) 0px 8px 16px 0px;
}
.btn-pro-info:hover {
  text-decoration: none;
  background-color: rgb(67, 26, 158);
}

.btn-pro-primary {
  background-color: #2065d1;
  box-shadow: 0 8px 16px 0 rgba(32, 101, 209, 0.24);
}
.btn-pro-primary:hover {
  text-decoration: none;
  background-color: #103996;
}

.btn-pro-danger {
  background-color: rgb(255, 48, 48);
  box-shadow: rgba(255, 48, 48, 0.24) 0px 8px 16px 0px;
}
.btn-pro-danger:hover {
  text-decoration: none;
  background-color: rgb(183, 24, 51);
}

.btn-pro:active {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px,
    rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}


/*  */

/* .app-sidebar{
  background-image: url("../images/flamebg.jpeg") !important;
background: #ffffff;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-image: none;
  background-size: auto;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

.app-sidebar::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: -10;
  background: linear-gradient(rgb(34,46,57,0.8), rgb(16,22,58,0.8)) !important;
} */


.text-orange{
  color:var(--bs-orange)
}

.pre-wrap{
  white-space: pre-wrap !important;
}

.mh-inherit{
  max-height: inherit !important;
}
.header-fixed
{
  z-index: 100;
position: fixed;
left: 0;
right: 0;
top: 0;
}


.wrap-text-1 {
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.text-primary-alt {
  color: #3e5569 !important;
}

.product-card:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px !important;
  opacity: .8;
}

.btn-pro[disabled]{
  opacity: .6;
  cursor: not-allowed !important;
}

.image-upload-card label.btn{
  border: 1px solid var(--jw-gray-400) !important;
}

.top-header
{
  margin-top: var(--jw-app-header-height);
}


#jw_app_header_menu .menu-link
{
  font-size: 1.2rem !important;
}


.gradient-primary {
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,0.7973389184775472) 0%, rgba(0,212,255,1) 100%); 
}
