.customNavigation.auctionItemNavigation .btn.prev, .customNavigation.auctionItemNavigation .btn.next {
  background: transparent !important;
  font-size: 20px !important;
  border: none !important;
  box-shadow: none !important;
}

.customNavigation.auctionItemNavigation .btn.prev::before {
  content: '\e5c4' !important;
  font-family: icomoon !important;
  color: black;
}

.customNavigation.auctionItemNavigation .btn.next::before {
  content: '\e5c8' !important;
  font-family: icomoon !important;
  color: black;
}

/* SPECIALIST BIO STYLES */
.specialist-content-wrap .specialist-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 50px;
}

.specialist-content-wrap .specialist-bio {
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: relative;
}

.specialist-content-wrap .specialist-bio.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specialist-content-wrap .specialist-bio.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.specialist-content-wrap .read-more-toggle {
  display: inline-block;
  margin-top: 5px;
  transition: color 0.2s ease;
}

.specialist-content-wrap .read-more-toggle:hover {
  color: #8b7336 !important;
}

@media (max-width: 767px) {
  .specialist-content-wrap .overview-content .how_to_bid_btn_wrap {
    flex-direction: column;
  }

  .specialist-content-wrap .overview-content {
    max-width: 100%;
    padding: 0 5px;
  }

  .specialist-content-wrap .overview-content p {
    font-size: 15px;
  }

  .specialist-content-wrap .overview-content .how_to_bid_btn,
  .specialist-content-wrap .overview-content .register_to_bid_btn {
    font-size: 13px;
  }

  .specialist-content-wrap .specialist-info {
    flex-direction: column;
  }

  .specialist-content-wrap .specialist-photo {
    text-align: center;
    width: 100%;
  }
}

/* BID LOADER */
.bid-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 30, 40, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000000000;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

.bid-loader.hide {
  display: none !important;
}

.loader-content {
  text-align: center;
  position: relative;
}

.loader-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: block;
}

.loader-circle {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  -webkit-animation: drawCircle 2s ease-in-out infinite;
  animation: drawCircle 2s ease-in-out infinite;
}

.loader-brush {
  fill: none;
  stroke: #d4af37;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
  -webkit-animation: brushStroke 2s ease-in-out infinite;
  animation: brushStroke 2s ease-in-out infinite;
}

.bid-loader p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  -webkit-animation: pulse 2s ease-in-out infinite;
  animation: pulse 2s ease-in-out infinite;
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes drawCircle {
  0%   { stroke-dashoffset: 283; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -283; }
}

@keyframes drawCircle {
  0%   { stroke-dashoffset: 283; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -283; }
}

@-webkit-keyframes brushStroke {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

@keyframes brushStroke {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

@-webkit-keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* LANGUAGE/CURRENCY DROPDOWN */
.language-currency .dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.language-currency .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}


/* MAX BID SECTION */
#max-bid-section label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

#max-bid-section select.form-control,
#max-bid-section input.form-control {
  width: fit-content;
  margin-bottom: 5px;
}

#max-bid-error {
  font-size: 13px;
}


/* MAX BID STATUS INDICATOR */
.max-bid-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: #ccc;
    margin-top: -4px;
    margin-left: 8px;
}

.max-bid-status-dot.active {
    background-color: #2ecc71;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.max-bid-status-dot.inactive {
    background-color: #e74c3c;
}

@keyframes heartbeat {
    0%   { transform: scale(1);    opacity: 1; }
    14%  { transform: scale(1.3);  opacity: 0.8; }
    28%  { transform: scale(1);    opacity: 1; }
    42%  { transform: scale(1.3);  opacity: 0.8; }
    70%  { transform: scale(1);    opacity: 1; }
    100% { transform: scale(1);    opacity: 1; }
}