.header-blue {
  background: linear-gradient(135deg, #172a74, #21a9af);
  background-color: #184e8e;
  padding-bottom: 80px;
  font-family: "Nunito", sans-serif;
}

@media (min-width: 768px) {
  .header-blue {
    padding-bottom: 120px;
  }
}

.header-blue .navbar {
  background: transparent;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

@media (min-width: 768px) {
  .header-blue .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.header-blue .navbar .navbar-brand {
  font-weight: bold;
  color: inherit;
}

.header-blue .navbar .navbar-brand:hover {
  color: #f0f0f0;
}

.header-blue .navbar .navbar-collapse {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .header-blue .navbar .navbar-collapse {
    border-color: transparent;
    margin: 0;
  }
}

.header-blue .navbar .navbar-collapse span .login {
  color: #d9d9d9;
  margin-right: 0.5rem;
  text-decoration: none;
}

.header-blue .navbar .navbar-collapse span .login:hover {
  color: #fff;
}

.header-blue .navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.header-blue .navbar .navbar-toggler:hover,
.header-blue .navbar-toggler:focus {
  background: none;
}

.header-blue .navbar .navbar-nav a.active,
.header-blue .navbar .navbar-nav > .show .dropdown-item {
  background: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .header-blue .navbar-nav .nav-link {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media (max-width: 768px) {
  .auction-timer {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .header-blue .navbar-nav .nav-link {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

#timer4 span {
  font-weight: bold !important;
  font-size: 16px !important;
}

.header-blue .navbar .navbar-nav > li > .dropdown-menu {
  margin-top: -5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 2px;
}

.header-blue .navbar .dropdown-menu .dropdown-item:focus,
.header-blue .navbar .dropdown-menu .dropdown-item {
  line-height: 2;
  color: #37434d;
}

.header-blue .navbar .dropdown-menu .dropdown-item:focus,
.header-blue .navbar .dropdown-menu .dropdown-item:hover {
  background: #ebeff1;
}

.header-blue .action-button,
.header-blue .action-button:not(.disabled):active {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  color: #ebeff1;
  box-shadow: none;
  text-shadow: none;
  padding: 0.3rem 0.8rem;
  background: transparent;
  transition: background-color 0.25s;
  outline: none;
}

.header-blue .action-button:hover {
  color: #fff;
}

.header-blue .navbar .form-inline label {
  color: #d9d9d9;
}

.header-blue .navbar .form-inline .search-field {
  display: inline-block;
  width: 80%;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: #ccc;
  box-shadow: none;
  color: inherit;
  transition: border-bottom-color 0.3s;
}

.header-blue .navbar .form-inline .search-field:focus {
  border-bottom: 1px solid #ccc;
}

.header-blue .hero {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .header-blue .hero {
    margin-top: 60px;
    text-align: left;
  }
}

.header-blue .hero h1 {
  color: #fff;
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .header-blue .hero h1 {
    margin-top: 190px;
    margin-bottom: 24px;
    line-height: 1.2;
  }
}

.header-blue .hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
}

.header-blue .phone-holder {
  text-align: right;
}

.header-blue div.iphone-mockup {
  position: relative;
  max-width: 300px;
  margin: 20px;
  display: inline-block;
}

.header-blue .iphone-mockup img.device {
  width: 100%;
  height: auto;
}

.header-blue .iphone-mockup .screen {
  position: absolute;
  width: 88%;
  height: 77%;
  top: 12%;
  border-radius: 2px;
  left: 6%;
  border: 1px solid #444;
  background-color: #aaa;
  overflow: hidden;
  background: url(../../assets/img/screen-content-iphone-6.jpg);
  background-size: cover;
  background-position: center;
}

.header-blue .iphone-mockup .screen:before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 70%;
  height: 140%;
  top: -12%;
  right: -60%;
  transform: rotate(-19deg);
  opacity: 0.2;
}

/**************************************************************** Confirm Modal ********************************/
.modal1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal1.open {
  opacity: 1;
  visibility: visible;
}

.modal1-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.modal1-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.modal1 p {
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  justify-content: center;
}

.cancel-button,
.delete-button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  margin-right: 10px;
}

.cancel-button {
  background: #ddd;
  color: #333;
}

.delete-button {
  background: #e74c3c;
  color: #fff;
}

div#biddingContainer {
  overflow-y: scroll;
  height: 192px !important;
}

.live-auction-area {
  margin-bottom: 40px;
}

.navbar {
  background-color: transparent !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-nav a.nav-link {
  transition: all 0.3s ease-in-out;
  color: white !important;
  font-family: "Nunito", sans-serif;
  border-radius: 40px;
  border: 1px solid white;
  padding: 0px 30px;
  font-weight: bold;
}
.navbar-light .navbar-nav span.nav-link {
  color: white !important;
  font-family: "Nunito", sans-serif;
}

.navbar-light .navbar-nav a.nav-link:hover {
  transition: all 0.3s ease-in-out;
  color: #c21557 !important;
  background-color: white !important;
}

.bidding-content {
  margin-left: 19px;
  width: 50%;
}

.product-beta-md .product .ids.green {
  font-size: 16px;
  background: green;
}
.product-beta-md .product .ids.red {
  font-size: 16px;
  background: #f00;
}

.small-image-list li {
  cursor: pointer;
  margin-right: 8px !important;
}
.product-beta-md .product-disc .bid-btn {
  text-decoration: none !important;
}

.product-beta-md {
  box-shadow: 0px 2px 9px 6px lightgray !important;
  margin-bottom: 30px;
}
.account-input-box input[readonly] {
  background-color: #f2f2f2;
}
.tab-pane h3 {
  background: #c21557;
  padding: 13px;
  color: white;
  font-weight: bold;
}
a {
  color: #c21557;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-inner {
  flex: 1;
  margin-right: 10px;
}

/* Add any additional styling as needed */

.orderDetailsModal.table th {
  background-color: #ffffff;
  color: #000;
  text-align: left;
}

.orderDetailsModal.table td {
  background-color: #ffffff;
  color: #000;
  text-align: right;
}

th.paymentDetails,
td.paymentDetails {
  background-color: #c21557 !important;
  color: #fff !important;
  font-size: 19px;
  text-align: center !important;
}

.pendingAmount .red {
  color: #c21557;
  background: white;
  font-weight: bold;
}

.pendingAmount .green {
  color: green;
  background: white;
  font-weight: bold;
}

.error-message {
  border: 1px solid #c21557;
  padding: 12px;
  color: #c21557;
  font-weight: bold;
  font-size: 17px;
  background-color: #ffd5d5;
  border-radius: 5px;
}

.success-message {
  border: 1px solid green;
  padding: 12px;
  color: green;
  font-weight: bold;
  font-size: 17px;
  background-color: rgb(185, 255, 185);
  border-radius: 5px;
}
.font-size-12 {
  font-size: 12px !important;
}

.card-radio {
  font-size: 17px;
  font-weight: bold;
}

.back-button {
  line-height: 1;
  padding: 12px !important;
  font-size: 15px !important;
}

.single-widget {
  background-color: #fff;
}

.bidding-result.winner {
  color: green;
  font-weight: bold;
  font-size: 23px;
  margin-left: 51px;
}

.bidding-result.loser {
  color: red;
  font-weight: bold;
  font-size: 23px;
  margin-left: 51px;
}

@media (max-width: 768px) {
  .bidding-result.winner,
  .bidding-result.loser {
    margin-left: 25px !important;
  }
  .single-widget {
    padding: 20px !important;
  }
  .wdget-title,
  .auction-bid h5,
  .error-wrapper-start .error-content .error-texts h2 {
    font-size: 16px !important ;
  }
  p,
  .widget-list li,
  .footer-style-two .copyright p,
  .howtobid ul li {
    font-size: 12px !important;
  }
  .error-wrapper-start .error-content .error-texts {
    padding-top: 0px !important;
  }
  .content p,
  .widget-list li,
  .footer-style-two .copyright p,
  .howtobid ul {
    margin-bottom: 10px !important;
  }
  .right-form-area h3 {
    font-size: 22px !important;
  }
}

.content p,
.widget-list li,
.footer-style-two .copyright p,
.howtobid ul {
  margin-bottom: 24px;
}
.bidding-content h6 {
  color: black;
  font-weight: bold;
}

#dropdownMenu3 img {
  border-radius: 50%;
}

.row.align-items-center {
  height: 42px;
}
.topbar-style-one .topbar-social-icons {
  padding: 7px;
}

/****************** Shimmer ********************************/
.shimmerCard.product-card {
  background-color: #fff;
  /* border: 1px solid #c215574a; */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 9px 6px lightgray !important;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    #f0f0f0 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

.shimmerCard .image {
  width: 100%;
  height: 200px;
  background-color: #c215574a; /* Placeholder color */
}

.shimmerCard .details {
  margin-top: 10px;
  margin-bottom: 10px;
}

.shimmerCard .title {
  height: 20px;
  width: 80%;
  background-color: #c215574a; /* Placeholder color */
}

.shimmerCard span.btn.btn-default {
  background: #c215574a;
  padding: 22px 61px;
  margin-top: 15px;
  text-align: center;
  border-radius: 0px;
}
.shimmerCard .bidNowBtn {
  text-align: center;
}

.shimmerCard .price {
  height: 20px;
  width: 40%;
  margin-top: 10px;
  background-color: #c215574a; /* Placeholder color */
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 100%;
  }
}

/* @media (max-width: 1199px) {
  header .header-area .main-nav {
    
    width: 342px !important;
    -webkit-transform: translateX(-429px) !important;
    transform: translateX(-429px) !important;
    
  }
} */
.dropdown-menu.show {
  z-index: 9999999;
}
.dropdown-item:hover {
  background-color: #c21557 !important;
}
.menu-items a:hover {
  color: #c21557 !important;
  font-weight: bold !important;
}
.single-process .process-disc span {
  font-weight: 800;
  font-size: 20px;
  text-transform: capitalize;
  color: #c21557;
  padding-bottom: 5px;
}
.mb-50 {
  margin-bottom: 50px;
}
p.registratioFee {
  margin-bottom: 15px;
  color: #c21557;
  font-weight: bold;
}

.form-group {
  margin-bottom: 15px;
  margin-top: 30px;
}

.howtobid ul li {
  font-size: 16px;
}
.single-process .process-disc p {
  font-size: 12px !important;
}

.subscription-section.row {
  border: 1px solid #c21557;
  padding: 13px;
  border-radius: 6px;
}

p.subscriptionText {
  margin: 0px;
}

.sub-button {
  text-align: center;
  vertical-align: middle;
  display: grid;
}

.subscription-section.row {
  border: 1px solid #c21557;
  padding: 13px;
  border-radius: 6px;
  margin-bottom: 20px;
}

p.subscriptionText {
  margin: 8px 0 0 0;
  vertical-align: middle;
  display: grid;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.payment-success-container {
  text-align: center;
}

.payment-success-container img {
  height: 100px;
  max-width: 100px;
}

.payment-success-container h4 {
  font-size: 15px;
  margin-top: 16px;
  font-weight: bold;
}
