@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --primary-color: #2476FF;
  --secondary-color: #16BCDC;
  --info-color: #128AC5;
  --text-dark: #2E2E2E;
  --text-muted: #757575;
  --bg-light: #F0F2F4;
}

body .bg-light {
  --bs-bg-opacity: 1;
  background-color: #E9F1FF !important;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  padding-top: 0;
  height: 4657px;
  /* header */
}
body .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
body .header:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
body .header .navbar {
  padding: 1rem 0;
}
body .header .navbar .header-logo {
  height: 45px;
  transition: transform 0.3s ease;
}
body .header .navbar .header-logo:hover {
  transform: scale(1.05);
}
body .header .navbar .navbar-nav {
  gap: 0.5rem;
}
body .header .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 5px;
}
body .header .navbar .navbar-nav .nav-item .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}
body .header .navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  transition: transform 0.3s ease;
}
body .header .navbar .navbar-nav .nav-item .nav-link::after {
  display: none;
}
body .header .navbar .navbar-nav .nav-item .nav-link .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}
body .header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(36, 118, 255, 0.05);
}
body .header .navbar .navbar-nav .nav-item .nav-link:hover .dropdown-icon {
  transform: rotate(180deg);
}
body .header .navbar .navbar-nav .nav-item .nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}
body .header .navbar .navbar-nav .nav-item .dropdown-menu-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  margin-top: -5px;
  min-width: 240px;
  animation: dropdownSlide 0.3s ease;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}
body .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item {
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
body .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(36, 118, 255, 0.08), rgba(22, 188, 220, 0.08));
  color: var(--primary-color);
  transform: translateX(4px);
}
body .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item:hover i {
  transform: scale(1.1);
}
body .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item i {
  font-size: 18px;
  color: var(--primary-color);
  transition: transform 0.2s ease;
}
body .header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
body .header .navbar .header-auth-group {
  display: flex;
  align-items: center;
  border: 1px solid #e9ecef;
  border-radius: 100px;
  background-color: white;
  height: 48px;
  padding: 0.25rem;
}
body .header .navbar .header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 1rem;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color 0.8s ease, color 0.8s ease, box-shadow 0.8s ease;
  position: relative;
  height: 40px;
  background-color: transparent;
  color: #6c757d;
  box-shadow: none;
}
body .header .navbar .header-link img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
body .header .navbar .header-link.active {
  background-color: #f0f2f4;
  color: var(--text-dark, #343a40);
}
body .header .navbar .header-link.active img {
  filter: none;
  opacity: 1;
}
body .header .navbar .btn-post-auction {
  background: #16BCDC;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 188, 220, 0.3);
  position: relative;
  overflow: hidden;
}
body .header .navbar .btn-post-auction::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
body .header .navbar .btn-post-auction i {
  transition: all 0.4s ease-in-out;
}
body .header .navbar .btn-post-auction span {
  transition: all 0.4s ease-in-out;
}
body .header .navbar .btn-post-auction:hover {
  background-color: #0fd186;
}
body .header .navbar .btn-post-auction:hover i {
  transform: translateX(130px);
}
body .header .navbar .btn-post-auction:hover span {
  transform: translateX(-25px);
}
body .header .navbar .btn-post-auction:active {
  transform: translateY(0);
}
body {
  /* Sub Navigation */
}
body .sub-nav {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--info-color) 100%);
  color: #fff;
  padding: 12px;
  transition: background 0.4s ease;
}
body .sub-nav a {
  transition: opacity 0.2s ease;
}
body .sub-nav a:hover {
  opacity: 1 !important;
}
body .sub-nav a.active {
  opacity: 1;
}
body .sub-nav .bi-house-door::before {
  content: url("../images/icons/Vector2.svg");
}
body .sub-nav .header-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
}
body .sub-nav .sub-nav-menu {
  transform: translateX(-43%);
}
body .sub-nav .sub-nav-menu .tab-button i {
  display: none;
}
body .sub-nav .sub-nav-menu .tab-button.active i {
  display: inline-block;
}
body .sub-nav .sub-nav-menu .tab-button:not(.active) {
  opacity: 0.65;
}
body .sub-nav .sub-nav-menu .tab-button:not(.active):hover {
  opacity: 0.85;
}
body .sub-nav .sub-nav-menu .tab-button.active {
  opacity: 1;
  border-bottom-color: var(--text-white);
}
body .sub-nav {
  /* Responsive */
}
@media (max-width: 768px) {
  body .sub-nav .sub-nav-menu {
    position: static;
    transform: none;
    justify-content: center !important;
    text-align: center;
  }
  body .sub-nav .header-divider {
    display: none;
  }
  body .sub-nav .sub-nav-info {
    width: 100%;
    text-align: center !important;
    margin-top: 0.5rem;
  }
}
body {
  /* Tab Section */
}
body .tab-section {
  background-color: var(--primary-color);
}
body .tab-section .tab-item {
  cursor: pointer;
  padding: 1rem 0;
}
body .tab-section .tab-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
}
body {
  /* Breadcrumb */
}
body .breadcrumb-section {
  background-color: #E9F1FF;
  font-size: 14px;
}
body .breadcrumb-section .breadcrumb {
  margin-top: 15px;
}
body .breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: var(--info-color);
  text-decoration: none;
}
body .breadcrumb-section .breadcrumb i {
  color: #BFBFBF;
}
body {
  /* Main Content */
}
body .main-content .search-card {
  border-radius: 16px;
  border: none;
  background: white;
}
body .main-content .search-card .search-input-group .search-input {
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #F0F2F4;
}
body .main-content .search-card .search-input-group .search-input::placeholder {
  color: #949494;
  font-size: 15px;
}
body .main-content .search-card .search-input-group .search-input:focus {
  border-color: var(--info-color);
  box-shadow: none;
  background-color: white;
}
body .main-content .search-card .search-input-group .search-icon {
  border: 1px solid #e0e0e0;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background-color: #F0F2F4;
  cursor: pointer;
  padding: 0 16px;
}
body .main-content .search-card {
  /* Custom Select */
}
body .main-content .search-card .custom-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #F0F2F4;
  cursor: pointer;
}
body .main-content .search-card .custom-select:focus {
  border-color: var(--info-color);
  box-shadow: none;
  background-color: white;
}
body .main-content .search-card {
  /* Date Input */
}
body .main-content .search-card .date-input-group .date-input {
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: #F0F2F4;
}
body .main-content .search-card .date-input-group .date-input:focus {
  border-color: var(--info-color);
  box-shadow: none;
  background-color: white;
}
body .main-content .search-card .date-input-group .date-icon {
  border: 1px solid #e0e0e0;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background-color: #F0F2F4;
  padding: 0 16px;
}
body .main-content .search-card {
  /* Filter Row */
}
body .main-content .search-card .filter-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
body .main-content .search-card .filter-row .filter-label-wrapper {
  min-width: 144px;
  padding-top: 6px;
}
body .main-content .search-card .filter-row .filter-label-wrapper .filter-label-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}
body .main-content .search-card .filter-row .filter-content {
  flex: 1;
}
body .main-content .search-card .filter-row .filter-content .filter-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  row-gap: 12px;
  /* Filter Buttons */
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-btn {
  background-color: transparent;
  border: none;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-btn:hover {
  background-color: #f5f5f5;
  color: var(--info-color);
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-btn.active {
  background-color: #E7F3F9;
  color: var(--info-color);
  font-weight: 600;
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-more {
  color: var(--info-color);
  font-weight: 700;
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-more:hover {
  background-color: #E7F3F9;
}
body .main-content .search-card .filter-row .filter-content .filter-items {
  /* Filter Dot */
}
body .main-content .search-card .filter-row .filter-content .filter-items .filter-dot {
  width: 4px;
  height: 4px;
  background-color: #DEDEDE;
  border-radius: 50%;
  flex-shrink: 0;
}
body .main-content .search-card {
  /* Collapse Button */
}
body .main-content .search-card .btn-collapse {
  background: none;
  border: none;
  color: var(--info-color);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
body .main-content .search-card .btn-collapse:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
body .main-content h2 {
  font-weight: 800;
  font-size: 24px;
  line-height: 140%;
}
body .main-content .text-muted {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
  color: #757575;
}
body .main-content select.form-select-sm {
  width: 160px;
  height: 40px;
  font-size: 14px;
  opacity: 1;
  padding-left: 16px;
  gap: 12px;
  border-radius: 8px;
}
body .main-content {
  /* Product Cards */
}
body .main-content .product-card {
  border-radius: 16px;
  border: none;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  gap: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body .main-content .product-card.is-expanded {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
body .main-content .product-card.is-expanded .card-title {
  max-height: var(--expanded-title-height) !important;
  -webkit-line-clamp: unset !important;
}
body .main-content .product-card.is-expanded .card-img-top {
  height: var(--adjusted-img-height) !important;
}
body .main-content .product-card .card-img-top {
  height: 202px;
  object-fit: cover;
  border-radius: 8px;
  transition: height 0.4s ease-in-out;
}
body .main-content .product-card .verify-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
body .main-content .product-card .verify-badge .bi-patch-check-fill::before {
  content: "\f4b5";
  width: 15px;
  height: 15px;
  color: #3BA500;
}
body .main-content .product-card .card-body {
  margin: -12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}
body .main-content .product-card .card-body .status-badge {
  align-self: flex-start;
  background-color: #E9F1FF;
  color: var(--text-dark);
  font-weight: 400;
  padding: 4px 12px 4px 8px;
  font-size: 12px;
  border-radius: 100px;
}
body .main-content .product-card .card-body .status-badge i {
  font-size: 14px;
}
body .main-content .product-card .card-body .status-badge .bi-gavel::before {
  content: url("../images/icons/Vectorblue.svg");
}
body .main-content .product-card .card-body .card-title {
  font-size: 14px;
  line-height: 1.4;
  max-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
body .main-content .product-card .card-body .car-info {
  margin-top: auto;
  background-color: var(--bg-light);
  padding: 8px;
  border-radius: 8px;
}
body .main-content .product-card .card-body .car-info small {
  font-size: 12px;
}
body .main-content .product-card .card-body .car-info i {
  font-size: 14px;
}
body .main-content .product-card .card-body .text-muted {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: #666666;
}
body .main-content .product-card .card-body .text-info {
  color: #128AC5 !important;
}
body .main-content .product-card .card-body .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body .main-content .product-card .card-body .btn-primary i {
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
body .main-content .product-card .card-body .btn-primary span {
  transition: all 0.4s ease-in-out;
}
body .main-content .product-card .card-body .btn-primary:hover {
  background-color: #0fd186;
  border-color: #0fd186;
}
body .main-content .product-card .card-body .btn-primary:hover i {
  transform: translateX(127px);
}
body .main-content .product-card .card-body .btn-primary:hover span {
  transform: translateX(-22px);
}
body .main-content .product-card.is-expanded .card-title {
  max-height: var(--expanded-title-height) !important;
  -webkit-line-clamp: unset !important;
}
body .main-content .product-card.is-expanded .card-img-top {
  height: var(--adjusted-img-height) !important;
}
body {
  /* Pagination */
}
body .pagination {
  padding-bottom: 60px;
}
body .pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 0 4px;
  color: var(--text-dark);
  font-weight: 600;
}
body .pagination .page-link:hover {
  background-color: var(--bg-light);
}
body .pagination .page-item.active .page-link {
  background-color: var(--secondary-color);
  color: white;
}
body {
  /* Footer */
}
body .footer {
  background-image: url("../images/bg_dark.png");
  position: relative;
  margin: 0 auto;
  max-width: 1824px;
  width: calc(100% - 76px);
  border-radius: 38px;
  background-color: white !important;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
body .footer .container {
  margin-top: 30px;
  margin-bottom: -80px;
}
body .footer::before, body .footer::after {
  content: "";
  position: absolute;
  background-size: cover;
  opacity: 15%;
}
body .footer::before {
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-image: url("https://c.animaapp.com/mgrlrs425bzV8m/img/home-5-bg-1-1.png");
}
body .footer::after {
  bottom: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-image: url("https://c.animaapp.com/mgrlrs425bzV8m/img/home-5-bg-1-1.png");
}
body .footer h5 {
  font-size: 18px;
  font-weight: 800;
  line-height: 140%;
  color: #FFFFFF;
}
body .footer p, body .footer a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  color: #A3A3A3 !important;
  z-index: 2;
}
body .footer .text-center {
  margin: 18px;
}
body .footer .payment-icons {
  position: relative;
  bottom: 80px;
  right: 115px;
  z-index: 2;
}
body .footer .social-icons {
  display: inline-block;
}
body .footer .social-icons a {
  position: relative;
  bottom: 80px;
  color: rgba(255, 255, 255, 0.6);
  right: 240px;
  margin-right: 16px;
  font-size: 20px;
  transition: color 0.3s;
}
body .footer .social-icons a:hover {
  color: #0dcaf0 !important;
}
body .footer p.text-muted {
  position: relative;
  color: #757575;
  font-size: 0.9rem;
  padding-bottom: 63px;
  top: 30px;
}
body .footer .payment-icons img {
  margin-right: 8px;
  cursor: pointer;
}
body .footer {
  /* === KHỐI RESPONSIVE CHO MOBILE === */
}
@media (max-width: 768px) {
  body .footer {
    text-align: left;
    border-radius: 0;
  }
  body .footer .col-md-4,
  body .footer .col-md-3,
  body .footer .col-md-2 {
    margin-bottom: 2rem;
  }
  body .footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2rem 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  body .footer .d-flex.align-items-center {
    justify-content: left !important;
  }
  body .footer .social-icons {
    position: static;
    bottom: auto;
    right: auto;
    margin-bottom: 60px;
  }
  body .footer .social-icons a {
    position: static; /* Reset vị trí */
    bottom: auto;
    right: auto;
    margin: 0 10px;
  }
  body .footer .payment-icons {
    position: static;
    bottom: auto;
    right: auto;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  body .footer .payment-icons img {
    margin: 5px;
  }
}
@media (max-width: 992px) {
  body .footer .payment-icons {
    bottom: initial;
  }
  body .footer .social-icons a {
    bottom: initial;
  }
}
body {
  /* Responsive */
}
@media (max-width: 1221px) {
  body .header .container-fluid .navbar .gap-3 {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  body .navbar .gap-3 {
    flex-direction: inherit !important;
  }
  body .navbar .navbar-nav .nav-item .nav-link:before {
    display: none;
  }
  body .navbar .navbar-nav .nav-item .dropdown-menu {
    position: absolute;
  }
  body .header-link {
    margin: 0.5rem 0;
  }
  body .header-divider {
    display: none;
  }
  body .btn-post-auction {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  body .tab-section .container > div {
    flex-direction: column;
    align-items: flex-start !important;
  }
  body .filter-row {
    flex-direction: column;
    gap: 8px;
  }
  body .filter-label-wrapper {
    min-width: 100%;
    padding-top: 0;
  }
  body .product-card {
    margin-bottom: 1rem;
  }
  body .sub-nav .d-flex {
    flex-direction: column;
    gap: 1rem;
  }
}
body {
  /* Form Labels */
}
body .form-label {
  font-size: 14px;
  margin-bottom: 8px;
}
body .phone-call {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  background-color: #b00020; /* Background of the button */
  display: flex;
  justify-content: center;
  align-items: center;
  left: 16px;
  bottom: 150px;
  cursor: pointer;
  position: fixed;
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}
body .phone-call:hover {
  transform: scale(1.1); /* Slight scaling on hover */
}
body .phone-call:before {
  content: "";
  position: absolute;
  background: radial-gradient(60.42% 60.42% at 50% 50%, rgba(176, 0, 32, 0.72) 0%, rgba(176, 0, 32, 0) 100%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  animation: pulse 1s linear infinite;
}
body .phone-call .icon-phone-call {
  width: 24px;
  height: 24px;
  background: url("../images/icons/phone-call.svg") no-repeat center center;
  background-size: contain;
  position: relative;
  z-index: 1;
  animation: changeIcon 1s linear infinite;
  animation-delay: 0.3s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
body {
  /* Keyframes for icon change (optional effect) */
}
@keyframes changeIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Slight zoom effect */
  }
}
body .connect-social {
  cursor: pointer;
  right: 0;
  bottom: 160px;
  position: fixed;
}
body .connect-social .cicon-mess {
  margin-top: -30px;
}
body .connect-social .cicon-logo {
  margin-left: 10px;
}
body .scroll {
  background: #16BCDC;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: 130px;
}
body .scroll .icon-scroll {
  width: 24px;
  height: 24px;
  display: block;
  background: url(../images/icons/icon-chevron-up.svg);
  margin: 12px auto;
}

/*# sourceMappingURL=auction-Coming-Soon.css.map */
