.btn_spinner {
  display: none;
}

.error {
  display: flex;
  margin-top: 8px;
  color: #bc1111;
}

.limited-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  line-height: 1.2; /* Adjust as needed for your font and design */
  max-height: calc(1.2 * 2); /* Set a fixed height for two lines of text */
}

button {
  cursor: pointer;
}

.swal2-popup.swal2-toast .swal2-title {
  font-size: 16px !important;
}
.heart-button .fa {
  color: gray;
}
.heart-button i.active {
  color: red !important;
}
.ps-account {
  background-color: #e8e5e5;
}
.fa-eye:before,
.fa-eye-slash:before {
  color: #757592;
}

.password-eye-icon {
  position: absolute;
  right: 8px;
  top: 6px;
  background: #f0f2f5;
  padding: 8px 9px;
  cursor: pointer;
}
.no_record {
  background: #ffff;
  box-shadow: 0px 0px 8px -6px #000;
  text-align: center;
  justify-content: center;
  padding: 25px 10px;
  border-bottom: 3px solid #034451;
  border-radius: 9px;
  font-size: 17px;
}

.one-limited-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Number of lines to show */
  -webkit-box-orient: vertical;
  line-height: 1.2; /* Adjust as needed for your font and design */
  max-height: calc(1.2 * 2); /* Set a fixed height for two lines of text */
}

.disabled {
  opacity: 0.5; /* Reduced opacity for a disabled look */
  pointer-events: none; /* Prevents interaction with the element */
  cursor: not-allowed; /* Changes cursor to 'not-allowed' */
}

#filter-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  display: none;
  justify-content: center;
  align-items: center;
}

#filter-loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ps-table--product .ps-product__wishlist_remove {
  padding-left: 10px;
  padding-right: 10px;
}
.ps-table--product .ps-product__wishlist_remove a {
  font-size: 14px;
}
.ps-table--product .ps-product__wishlist_remove i {
  font-weight: 600;
  color: #045363;
}

/* Absolute Center Spinner */
.full-page-loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
}

/* Transparent Overlay */
.full-page-loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: -webkit-radial-gradient(
    rgb(100 100 100 / 53%),
    rgb(126 126 126 / 53%)
  );
}

/* :not(:required) hides these rules from IE9 and below */
.full-page-loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.full-page-loading:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#couponBox,
#discountBox {
  display: none;
}
.addNewAddressBox {
  display: none;
}
.error-message {
  color: red;
}

.mobile-code {
  position: absolute;
  left: 0;
  border: 0;
  background: #f0f2f5;
  padding: 9px 9px;
  /* cursor: pointer; */
  font-size: 14px;
  font-style: normal;
}

.progress {
  margin-top: 5px;
  display: none;
}

.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;
  background-color: #045363;
}

span#upload {
  font-size: 13px;
  padding: 10px;
}

.form-group > label {
  margin-bottom: 1.5rem;
  font-weight: 500 !important;
  color: #045363 !important;
  line-height: 1em;
  font-size: 14px;
}

.main-select-box {
  background-color: #045363;
  color: #fff !important;
  padding: 10px;
  border-radius: 7px 0px 0px 7px;
  font-size: 15px !important;
  width: 150px;
}
.ps-search-table .main-select-box:focus {
  background-color: #045363;
}

/* Custom styles for search suggestion dropdown */
.search-suggestions {
  position: absolute;
  margin-top: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  max-height: 200px;
  overflow-y: auto;

  background: #f0f2f5;
  z-index: 999;
  width: 70%;
  text-transform: capitalize;
}

.search-suggestions li {
  list-style: none;
  padding: 8px 12px;
  margin: 0;
  font-size: 16px;
  cursor: pointer;
}

.search-suggestions li:hover {
  background-color: #f8f9fa;
}

.search-suggestions a {
  color: #333;
  text-decoration: none;
}

label#checkBoxValue-error {
  color: #bc1111;
}

.addAddressLine,
.addAddressLineI {
  width: 170px;
}

#taxBox {
  display: none;
}

.ps-checkout .taxAmount {
  color: #045363;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  min-width: 100px;
  text-align: right;
}

/* Ratings widget */
.rate {
  display: inline-block;
  border: 0;
}

/* Hide radio */
.rate > input {
  display: none;
}

/* Order correctly by floating highest to the right */
.rate > label {
  float: right;
}

/* The star of the show */
.rate > label:before {
  display: inline-block;
  font-size: 2.875rem;
  padding: 0.3rem 0.2rem;
  margin: 0;
  cursor: pointer;
  font-family: FontAwesome;
  content: "\f005 "; /* full star */
}

/* Click + hover color */
.rate > input:checked ~ label,
.rate > label:hover,
.rate > label:hover ~ label {
  color: #fd8d27;
}

/* Hover highlights */
.rate > input:checked + label:hover,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #fd8d27;
}

.star-border {
  color: #045363; /* Set the border color to yellow */
}
.fill-star {
  color: #fd8d27;
}

#reviews-content .ps-review--product .ps-review__desc {
  flex: none !important;
}

.filterButton {
  margin-top: 4rem;
}

.dashboardCard .card {
  background-color: #fff;
  border-radius: 10px;
  border: none;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1),
    0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1),
    0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12),
    0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}
.dashboardCard .l-bg-cherry {
  /* background: linear-gradient(to right, #493240, #f09) !important; */
  color: #fff;
}

.dashboardCard .l-bg-blue-dark {
  /* background: linear-gradient(to right, #373b44, #4286f4) !important; */
  color: #fff;
}

.dashboardCard .l-bg-green-dark {
  /* background: linear-gradient(to right, #0a504a, #38ef7d) !important; */
  color: #fff;
}

.dashboardCard .l-bg-orange-dark {
  /* background: linear-gradient(to right, #a86008, #ffba56) !important; */
  color: #fff;
}

.dashboardCard .card .card-statistic-3 .card-icon-large .fas,
.card .card-statistic-3 .card-icon-large .far,
.card .card-statistic-3 .card-icon-large .fab,
.card .card-statistic-3 .card-icon-large .fal {
  font-size: 110px;
}

.dashboardCard .card .card-statistic-3 .card-icon {
  text-align: center;
  line-height: 50px;
  margin-left: 15px;
  color: #000;
  position: absolute;
  right: -5px;
  top: 20px;
  opacity: 0.1;
}

.dashboardCard .l-bg-cyan {
  /* background: linear-gradient(135deg, #289cf5, #84c0ec) !important; */
  color: #fff;
}

.dashboardCard .l-bg-green {
  /* background: linear-gradient(135deg, #23bdb8 0%, #43e794 100%) !important; */
  color: #fff;
}

.dashboardCard .l-bg-orange {
  /* background: linear-gradient(to right, #f9900e, #ffba56) !important; */
  color: #fff;
}

.dashboardCard .l-bg-cyan {
  /* background: linear-gradient(135deg, #289cf5, #84c0ec) !important; */
  color: #fff;
}

.ps-compare--product .ps-table .ps-product_compare__remove {
  padding: 5px 0 10px;
  text-align: center;
}

#tax-price-total {
  display: none;
}

#ticketForm input[type="text"] {
  border-radius: 8px;
  height: 44px;
  border: none !important;
  width: 100%;
  background-color: #f0f2f5;
  color: #5b6c8f;
  font-size: 14px;
  padding: 10px 20px;
}

.datatimetext {
  font-size: 11px;
  font-weight: 500;
}

.order-login{
  padding: 14px 0px;
}

.order-login h2{
  font-size: 18px;
  font-weight: 600;
}

.order-id table tr td{
  font-size: 14px;
  font-weight: 500;
}

.login-link th {
  font-size: 14px;
  font-weight: 500;
}

.login-link .table td, .table th {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  vertical-align: top;
  text-align: justify;
  border-top: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

.login-link tbody {
  border-radius: 5px;
  border: 1px solid #dee2e6;
}


.login-link .table {
  text-align: center;
  width: 70%;
  margin-bottom: 1rem;
  margin: 0px 70px;
  background-color: transparent;
}


@media(max-width: 576px){
  .login-link .table {
    text-align: center;
    width: 70%;
    margin: 0px 0px;
}
.order-jan{
  overflow: scroll;
  padding-top: 10px;
}
.login-link {
  overflow: scroll;
  text-align: -webkit-center;
}
.login-link .table {
  text-align: center;
  width: 90%;
  margin-bottom: 1rem;
  margin: 0px 16px;
  background-color: transparent;
}
.order-image {
  padding-top: 30px;
  width: 18%;
}

}

@media(max-width: 480px){
  .login-link .table {
    text-align: center;
    width: 70%;
    margin: 0px 0px;
}
.order-jan{
  overflow: scroll;
  padding-top: 10px;
}
.login-link {
  overflow: scroll;
  text-align: -webkit-center;
}
.login-link .table {
  text-align: center;
  width: 70%;
  margin-bottom: 1rem;
  margin: 0px 10px;
  background-color: transparent;
}
.login-link .table {
  text-align: center;
  width: 90%;
  margin-bottom: 1rem;
  margin: 0px 16px;
  background-color: transparent;
}
.order-image {
  padding-top: 30px;
  width: 18%;
}

}


@media(max-width: 320px){
  .login-link .table {
    text-align: center;
    width: 70%;
    margin: 0px 0px;
}
.order-jan{
  overflow: scroll;
  padding-top: 10px;
}
.login-link {
  overflow: scroll;
  text-align: -webkit-center;
}
.login-link .table {
  text-align: center;
  width: 70%;
  margin-bottom: 1rem;
  margin: 0px 10px;
  background-color: transparent;
}
.order-image {
  padding-top: 30px;
  width: 18%;
}

}


.invalid-input {
  border: 1px solid red !important;
}

.valid-input {
  border: 1px solid green !important;
}
