.section-title {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 42px !important;
}

.section-title h2 {
  color: #FFFFFF !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
}

.section-subtitle {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.section-subtitle p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
}
.vendor-section{
    margin-top:40px;
}

.vendor-table{
    width:100%;
    min-width:600px; /* change this number */
    border-collapse:separate;
    border-spacing:0;

    background:transparent;

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
}

.vendor-table thead{
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(8px);
}
.vendor-table th{
    text-align:left;
    padding:14px 16px;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#7f7f8f;
    font-weight:600;
}

.vendor-table td{
    padding:14px 16px;
    border-top:1px solid rgba(255,255,255,.05);
    color:#f3f3f3;
    font-size:14px;
}
.vendor-table tbody tr{
    background:transparent;
}

.vendor-table tr:hover{
    background:rgba(255,255,255,.03);
}

.vendor-table a{
    color:#ff0000;
    text-decoration:none;
    font-weight:600;
}

.vendor-table a:hover{
    color:#484849cb;
}

.free-badge{
    margin-left:8px;
    color:#44ff7a;
    font-size:12px;
    font-weight:700;
}

.locked-row{
    opacity:.45;
}

.locked-row td{
    color:#888;
}

.vendor-header{
    text-align: center;
    font-size: 39px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin: 90px 0 18px;
}

.unlock-box{
    margin-top:28px;
    background:transparent;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    padding:32px;
    text-align:center;
}

.unlock-box h2{
    color:#fff;
    margin:10px 0;
    font-size:32px;
}

.unlock-box p{
    color:#999;
    margin-bottom:24px;
}

.unlock-btn{
    display:inline-block;
    padding:12px 24px;
    background:#000000;
    color:#fff !important;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.unlock-btn:hover{
    background:#000000;
}
.vendor-table-wrapper{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
}

.vendor-table{
    min-width:900px;
}
.scroll-reveal {
  opacity: 0;
}

.scroll-reveal.revealed {
  animation: popDownContent 1.2s cubic-bezier(0.23, 0.86, 0.39, 0.96) forwards;
}

@keyframes popDownContent {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.vendor-table-wrapper::after{
    content:"Swipe →";
    display:none;
}

@media (max-width:768px){

    .vendor-table-wrapper::after{
        display:block;
        text-align:center;
        margin-top:6px;
        font-size:12px;
        color:rgba(255,255,255,0.45);
        animation: swipeHint 1.5s infinite;
    }

}

@keyframes swipeHint{
    0%,100%{
        transform:translateX(0);
        opacity:.4;
    }

    50%{
        transform:translateX(6px);
        opacity:1;
    }
}