:root {
  --black: #000;
  --white: #fff;
  --logo: #42cbb2;
  --primary: #42cbb2;
  --primary-soft: #e6f9f5;
  --secondary: #e3e9f0;
  --success: #22c55e;
  --success-soft: #dcfce7;
  --danger: #ef4444;
  --danger-soft: #fee2e2;
  --warning: #f97316;
  --warning-soft: #ffedd5;
  --text-color: #7a7a7a;
  --border-color: #e3e9f0;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-2sm: 15px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --rounded-sm: 2px;
  --rounded: 4px;
  --rounded-md: 6px;
  --rounded-lg: 8px;
  --rounded-xl: 12px;
  --rounded-2xl: 16px;
  --rounded-full: 999px;
  --duration-150: 0.15s;
  --duration-200: 0.2s;
  --duration-300: 0.3s;
  --box-shadow: 0px 6px 12.6px 0px #dadada29;
  --border: 1px solid #e8e8e8;
  --font-poppins: Poppins;
  --font-black-color: #1e1515;
  --font-gray-color: #8e8a8a;
  --font-darker-gray-color: #625b5b;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
a,
span,
p,
div,
section,
input,
button,
strong,
small,
label {
  font-family: var(--font-poppins);
}

input,
button {
  font-family: inherit;
}
button {
  color: var(--black);
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title-underline-warning {
  background-image: url(/img/underline-warning.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.section-title-underline-primary {
  background-image: url(/img/underline-primary.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
/* end: Globals */

/* start: Skeleton */
.skeleton {
  background-image: linear-gradient(
    90deg,
    hsl(210, 15%, 88%),
    hsl(210, 15%, 95%),
    hsl(210, 15%, 88%)
  );
  background-size: 200%;
  border-radius: 8px;
  animation: skeleton 1s infinite reverse;
}
@keyframes skeleton {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}
/* end: Skeleton */

/* start: Form */
.form-control {
  height: 56px;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1.21px solid #8e8a8a;
  width: 100%;
  outline: none;
  border-radius: var(--rounded-lg);
  font-size: var(--text-base);
}
.form-control::placeholder {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #a6a6a6;
}
.form-control-sm {
  height: 36px;
  padding: 0 16px;
  font-size: var(--text-sm);
}
select.form-control {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMTJIMThNMyA2SDIxTTkgMThIMTUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
  background-size: 16px;
  background-position: right 16px center;
  font-weight: 600;
  font-size: 16px;
  font-family: Poppins;
  color: #1e1515;
  background-repeat: no-repeat;
}
.form-label {
  margin-bottom: 8px;
  font-weight: 500;
  display: inline-block;
  font-size: var(--text-base);
  color: var(--font-black-color);
  font-family: "Poppins";
}
.form-label-optional::after {
  content: " (optional)";
  font-size: var(--text-sm);
  color: var(--text-color);
}
.is-invalid {
  border-color: var(--danger);
}
.invalid-feedback {
  display: inline-block;
  margin-top: 4px;
  font-size: var(--text-sm);
  color: var(--danger);
}
.invalid-feedback > a {
  color: var(--danger);
  font-weight: 500;
}
.form-autocomplete-wrapper {
  position: relative;
}
.form-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--rounded-md);
  border: 1px solid #8e8a8a;
  z-index: 10;
  padding: 8px 0;
  overflow-y: auto;
  max-height: 300px;
}
.form-autocomplete-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  outline: none;
  text-align: left;
  border: none;
  cursor: pointer;
  height: 32px;
  padding: 0 16px;
  color: var(--black);
  font-size: var(--text-sm);
  width: 100%;
}
.form-autocomplete-item.focused,
.form-autocomplete-item:hover {
  background-color: var(--secondary);
}
/* end: Form */

/* start: Notification */
.notification-box {
  margin-bottom: 24px;
}
.notification-group-title {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}
.notification-group {
  margin-bottom: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.notification {
  border-radius: var(--rounded-lg);
  background-color: var(--white);
  border: 1px solid;
  border-left-width: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
}
.notification-body {
  min-width: 0;
  width: 100%;
  margin-right: 16px;
}
.notification-primary {
  background-color: var(--primary-soft);
  border-color: var(--primary);
}
.notification-success {
  background-color: var(--success-soft);
  border-color: var(--success);
}
.notification-secondary {
  background-color: var(--secondary-soft);
  border-color: var(--secondary);
}
.notification-warning {
  background-color: var(--warning-soft);
  border-color: var(--warning);
}
.notification-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.notification-description {
  font-size: var(--text-base);
  font-weight: 500;
  /* line-height: 1.5; */
  margin-bottom: 0;
}
.notification-icon {
  flex-shrink: 0;
  margin-right: 12px;
  font-size: var(--text-xl);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-lg);
}
.notification-primary .notification-icon {
  background-color: var(--primary);
  color: var(--white);
}
.notification-success .notification-icon {
  background-color: var(--success);
  color: var(--white);
}
.notification-secondary .notification-icon {
  background-color: var(--secondary);
  color: var(--white);
}
.notification-warning .notification-icon {
  background-color: var(--warning);
  color: var(--white);
}
.notification-arrow {
  font-size: var(--text-3xl);
  flex-shrink: 0;
}
.notification-primary .notification-arrow {
  color: var(--primary);
}
.notification-success .notification-arrow {
  color: var(--success);
}
.notification-secondary .notification-arrow {
  color: var(--secondary);
}
.notification-warning .notification-arrow {
  color: var(--warning);
}
/* end: Notification */

/* start: Badge */
.badge {
  height: 20px;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0 12px;
  border-radius: var(--rounded-full);
  display: inline-flex;
  align-items: center;
}
.badge-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.badge-danger {
  background-color: var(--danger-soft);
  color: var(--danger);
}
.badge-secondary {
  background-color: var(--secondary);
  color: var(--text-color);
}
/* end: Badge */

/* start: Alert */
.alert {
  padding: 8px 16px;
  border-radius: var(--rounded-md);
  font-size: var(--text-sm);
  margin-bottom: 16px;
}
.alert-danger {
  background-color: var(--danger-soft);
  color: var(--danger);
}
.alert-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.alert-warning {
  background-color: var(--warning-soft);
  color: var(--warning);
}
.alert > a {
  color: inherit;
  text-underline-offset: 2px;
}
.alert-center {
  text-align: center;
}
/* end: Alert */

/* start: Button */
.btn {
  height: 44px;
  padding: 0 24px;
  border-radius: var(--rounded-lg);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn-sm {
  height: 36px;
  font-size: var(--text-sm);
  padding: 0 16px;
}
.btn-nowrap {
  white-space: nowrap;
}
.btn-pill {
  border-radius: var(--rounded-full);
  height: 24px;
  font-size: var(--text-xs);
  padding: 0 8px;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.btn-primary-soft {
  background-color: var(--primary-soft);
  border-color: var(--primary-soft);
  color: var(--primary);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-primary-soft:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-warning {
  background-color: var(--warning);
  border-color: var(--warning);
  color: var(--white);
  transition-property: background-color, border-color;
  transition-duration: var(--duration-150);
}
.btn-warning:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-outline-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-danger {
  background-color: var(--danger);
  border-color: var(--danger);
  color: var(--white);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-block {
  width: 100%;
  height: 56px;
}
.btn > :first-child {
  margin-right: 8px;
}
/* end: Button */

/* start: Modal */
/* 
.modal-inner {
  max-width: 540px;
  margin: 16px auto;
  min-height: calc(100vh - 32px);
  padding: 0 16px;
  pointer-events: none;
}
.modal-center .modal-inner {
  display: flex;
  align-items: center;
}
.modal-content {
  width: 100%;
  background-color: var(--white);
  border-radius: var(--rounded-lg);
  pointer-events: auto;
  transition-property: transform;
  transition-duration: var(--duration-300);
} */
/* .modal.modal-shown .modal-content {
  transform: translateY(0);
}
.modal-body {
  padding: 16px;
} */
/* end: Modal */

/* start: Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-item {
  height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-right: none;
  text-decoration: none;
  color: var(--black);
}
.pagination-item:hover {
  background-color: var(--border-color);
}
.pagination-item.disabled,
.pagination-item:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination-item:first-child {
  border-top-left-radius: var(--rounded-md);
  border-bottom-left-radius: var(--rounded-md);
}
.pagination-item:last-child {
  border-right: 1px solid var(--border-color);
  border-top-right-radius: var(--rounded-md);
  border-bottom-right-radius: var(--rounded-md);
}
/* end: Pagination */
.no-image {
  padding: 26px 100px;
  background: linear-gradient(
    180deg,
    rgba(241, 241, 241, 0) 74%,
    rgba(218, 227, 225, 0.27) 83.45%,
    rgba(208, 212, 211, 0.4) 100%
  );

  /* border-bottom: 1px solid #e8e8e8; */
}
/* .white {
  color: #ffffff !important;
}
.black {
  color: #1e1515 !important;
} */
.img-text {
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 10, 10, 0.67) 37.45%, #291a1a 100%); */
  width: 100%;
  padding: 9px 15px;
  bottom: 126px !important;
  left: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(15, 10, 10, 0.67) 37.45%,
    #291a1a 100%
  );
}
.no-bids-made {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
}
.no-bids-avaliable-wrapper {
  background-color: white;
  padding: 49px 0px 45px 0;
}
.splide__slide img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
#image-slider,
#image-slider-track {
  height: 215px;
}
.splide__arrows {
  display: none;
}
.ri-arrow-left-line {
  font-size: 24px;
}
.topbar-back {
  height: 27px;
}
