* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  height: 82px;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text h1 {
  margin: 0;
  font-size: 20px;
}

.brand-text span {
  color: #999;
  font-size: 13px;
}

.main-toggle {
  background: #101010;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.toggle-btn {
  height: 42px;
  padding: 0 22px;
  border: none;
  background: transparent;
  color: #999;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn.active {
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
}

.page {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 42px;
}

.hero {
  margin-bottom: 52px;
  padding-top: 12px;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1;
  max-width: 980px;
  letter-spacing: -2px;
}

.hero p {
  color: #888;
  font-size: 22px;
  max-width: 760px;
  line-height: 1.5;
}

.market-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.switch-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.switch-group.align-right {
  align-items: flex-end;
}

.switch-label {
  color: #8f8f8f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.market-tabs,
.price-view-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: #151515;
  border: 1px solid #262626;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 4px 18px rgba(0,0,0,0.25);
}

.market-tab,
.price-view-btn {
  height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #999;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.market-tab.active,
.price-view-btn.active {
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 4px 14px rgba(0,0,0,0.35);
}

.toolbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.search-input,
.toolbar-select {
  height: 50px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #141414;
  color: white;
  padding: 0 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 4px 18px rgba(0,0,0,0.28);
}

.search-input {
  flex: 1;
  min-width: 420px;
}

.view-toggle {
  display: flex;
  gap: 6px;
  background: #151515;
  border: 1px solid #262626;
  padding: 4px;
  border-radius: 12px;
}

.view-btn {
  height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #999;
  cursor: pointer;
  font-weight: 800;
}

.view-btn.active {
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: black;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 4px 14px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .price-view-switch {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .price-view-toggle {
    flex: 1;
  }

  .price-view-btn {
    flex: 1;
  }
}

.deals-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.deal-card {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.2s;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
}

.deal-card:hover {
  transform: translateY(-4px);
  border-color: #333;
}

.deal-image-wrap {
  min-height: 239px;
  background: #1b1b1b;
  border-bottom: 1px solid #242424;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;

  background: #fff;
  border-radius: 18px;
  padding: 10px;

  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 190px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2a2a2a, #202020);
  border: 1px solid #363636;
  color: #8f8f8f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid #3a3a3a;
  background: linear-gradient(180deg, #2c2c2c, #1b1b1b);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon span {
  width: 34px;
  height: 26px;
  border: 2px solid #777;
  border-radius: 5px;
  position: relative;
}

.placeholder-icon span::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #777;
  top: 4px;
  right: 5px;
}

.placeholder-icon span::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 22px;
  height: 12px;
  background: linear-gradient(135deg, transparent 45%, #777 46%);
}

.placeholder-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.72;
}

.deal-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}

.deal-badge {
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.deal-badge.quick {
  background: rgba(255, 204, 0, 0.16);
  color: #ffcc00;
}

.deal-badge.offer {
  background: rgba(0, 153, 255, 0.14);
  color: #58b5ff;
}

.deal-time {
  color: #777;
  font-size: 13px;
  white-space: nowrap;
}

.deal-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.15;
  min-height: 86px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.deal-meta {
  color: #888;
  margin-bottom: 24px;
  min-height: 20px;
}

.deal-payouts {
  display: flex;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 24px;
}

.payout-box {
  flex: 1;
  min-width: 0;
  min-height: 88px;
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border: 1px solid #232323;
  border-radius: 16px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.payout-label {
  display: block;
  width: 100%;
  color: #777;
  font-size: 13px;
  margin-bottom: 10px;
}

.payout-value {
  width: 100%;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.4px;
}

.deal-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.disabled-btn,
.disabled-btn:hover {
  background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
  color: rgba(255,255,255,0.42);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.offer-btn {
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: black;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 6px 18px rgba(0,0,0,0.4);
}

.loading-state,
.empty-state {
  width: 100%;
  padding: 80px;
  border-radius: 24px;
  background: #141414;
  border: 1px solid #242424;
  color: #888;
  text-align: center;
  font-size: 18px;
}

.load-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 12px 0 32px;
}

.load-more-btn {
  height: 52px;
  padding: 0 28px;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: black;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 6px 18px rgba(0,0,0,0.4);
}

.loading-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 0 44px;
  color: #888;
  font-size: 15px;
  font-weight: 700;
}

.dots span {
  animation: dotPulse 1.2s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.dots span:nth-child(3) {
  animation-delay: 0.36s;
}

.hidden {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.74);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-modal {
  width: min(560px, calc(100vw - 40px));
  background: linear-gradient(180deg, rgba(22,22,24,0.96), rgba(8,8,10,0.97));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 30px 30px 24px;
  position: relative;
  box-shadow:
    0 20px 46px rgba(0,0,0,0.56),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.login-modal h2 {
  margin: 10px 0 28px;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.login-modal p {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.45;
  max-width: 420px;
}

.login-modal form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-modal .modal-submit {
  margin-top: 18px;
}

.login-modal label {
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
}

.login-modal input {
  height: 50px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #111;
  color: white;
  padding: 0 14px;
  outline: none;
}

.offer-input {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #111;
  color: white;
  padding: 0 14px;
  outline: none;
  font-size: 16px;
  margin-bottom: 18px;
}

.offer-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.offer-input {
  margin-bottom: 22px;
  font-weight: 800;
}

/* remove ugly number arrows */
.offer-input::-webkit-outer-spin-button,
.offer-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.offer-input[type="number"] {
  -moz-appearance: textfield;
}

.modal-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 18px;
  box-shadow:
    0 8px 20px rgba(60,255,110,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: 0.18s ease;
}

.modal-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.login-error {
  min-height: 20px;
  color: #ff7b7b;
  font-size: 13px;
  font-weight: 700;
}

#offerError {
  margin-top: 12px;
}

.vat-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vat-label {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.vat-option {
  position: relative;
  min-height: 66px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.005));
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 50px;
  transition: 0.18s ease;
}

.vat-option::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.18);
  background: transparent;
}

.vat-option.active {
  border-color: #ffd21f;
  background: linear-gradient(180deg, rgba(255,210,31,0.09), rgba(255,210,31,0.03));
  box-shadow:
    0 0 0 1px rgba(255,210,31,0.15) inset,
    0 0 30px rgba(255,210,31,0.08);
}

.vat-option.active::before {
  border-color: #ffd21f;
  background: radial-gradient(circle at center, #ffd21f 0 42%, transparent 45%);
}

#confirmClaimBtn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(60,255,110,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

#confirmClaimBtn::before {
  content: "✓";
  margin-right: 10px;
}

#claimModal .login-error::before {
  content: "🔒 You can't change this after claiming.";
  display: block;
  text-align: center;
  margin-top: 14px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
}

#claimModal .login-error {
  color: #ff7b7b;
  text-align: center;
}

.login-submit-btn {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  box-shadow:
    0 10px 24px rgba(60,255,110,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transition: 0.18s ease;
}

.login-submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.login-modal p {
  line-height: 1.45;
}

.success-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(15,15,18,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.45),
    0 0 30px rgba(60,255,110,0.08);
  backdrop-filter: blur(14px);
  z-index: 999999;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.success-toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #58d86a, #2ca43c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(60,255,110,0.25);
}

.success-toast-text {
  color: white;
  font-size: 15px;
  font-weight: 700;
}

@keyframes dotPulse {
  0%, 20% {
    opacity: 0.15;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.15;
  }
}

@media (max-width: 1450px) {
  .deal-payouts {
    gap: 10px;
  }
}

@media (max-width: 1300px) {
  .deals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1150px) {
  .deal-payouts {
    flex-direction: column;
  }
}

@media (max-width: 950px) {
  .deals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    height: auto;
    gap: 18px;
    padding: 20px;
  }

  .page {
    padding: 22px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .search-input {
    min-width: 100%;
  }
}

@media (max-width: 620px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }
}

.table-wrap {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-head,
.table-row {
  display: grid;
  align-items: center;
  gap: 18px;
}

.quick-table .table-head,
.quick-table .table-row {
  grid-template-columns: 86px 2.2fr 1fr 80px 120px 140px 140px 130px 120px;
}

.wtb-table .table-head,
.wtb-table .table-row {
  grid-template-columns: 86px 2.4fr 1fr 80px 130px 150px 120px;
}

.table-head {
  padding: 0 18px 8px;
  color: rgba(255,255,255,0.46);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
}

.table-row {
  min-height: 96px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid #2a2a2a;
}

.table-image {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 6px;
}

.table-image-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2a2a2a, #202020);
  border: 1px solid #363636;
}

.table-product {
  font-weight: 900;
  line-height: 1.25;
  font-size: 15.5px;
}

.table-row > div {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 700;
}

.table-btn {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 13px;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.table-btn.offer-btn {
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: black;
}

.table-btn.disabled-btn {
  background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
  color: rgba(255,255,255,0.42);
  cursor: not-allowed;
}

.table-row .deal-badge {
  display: inline-flex;
  width: fit-content;
}

.table-row > div {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.header-auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.signup-btn,
.login-btn,
.profile-btn {
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 900;
  text-decoration: none;

  cursor: pointer;
  transition: 0.18s ease;
}

.signup-btn {
  padding: 0 18px;

  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.35);
}

.login-btn {
  padding: 0 20px;

  border: none;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: #050505;

  box-shadow:
    0 8px 20px rgba(255,204,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.32);
}

.profile-btn {
  width: 46px;

  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.35);
}

.signup-btn:hover,
.login-btn:hover,
.profile-btn:hover,
.modal-signup-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.login-submit-btn {
  width: 100%;
  height: 62px;

  border: none;
  border-radius: 18px;

  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: #050505;

  font-size: 20px;
  font-weight: 900;

  cursor: pointer;

  margin-top: 8px;

  box-shadow:
    0 10px 24px rgba(255,204,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);

  transition: 0.18s ease;
}

.login-submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.modal-signup-btn {
  width: 100%;
  height: 56px;

  margin-top: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);

  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;

  font-size: 15px;
  font-weight: 900;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.35);
}

.login-subtext {
  margin-bottom: 14px !important;
}

.forgot-password-btn {
  margin-top: 4px;
  padding: 0;

  border: none;
  background: transparent;

  color: rgba(255,255,255,0.86);

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;
  text-align: left;
}

.forgot-password-btn:hover {
  color: white;
  text-decoration: underline;
}

.kc-header-logo {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.dashboard-brand-logo {
  width: 178px;
  height: auto;
  display: block;
}

.dashboard-brand {
  padding-bottom: 30px;
}
