.ticket-section {
    width: 100%;
    margin: 0 0 70px;
}

.ticket-nav.nav {
    margin-bottom: 60px;
}

.ticket-nav.nav .nav-item .nav-link {
    width: 140px;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: #777;
    position: relative;
}

.ticket-nav.nav .nav-item .nav-link.active {
    color: #252525;
}

.ticket-nav.nav .nav-item .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 3px;
    background: #7666D2;
    border-radius: 5px;
}

.ticket-content {
    width: 100%;
    height: auto;
    min-height: 460px;
    padding: 20px 15px;
    background: #F7F7FA;
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    transform: scale(0.95);
    position: relative;
}

.ticket-head {
    width: 100%;
    font-weight: 600;
    font-size: 24px;
    line-height: 42px;
    color: #252525;
    text-align: center;
}

.ticket-content ul {
    padding: 25px 10px 0 25px;
    height: 300px;
    overflow: auto;
    border-top: 0.8px solid #7166cd38;
    list-style-image: url(../images/tick.svg);
}
.ticket-content ul {
    scrollbar-color: #7666D2 #80808030;
    scrollbar-width: thin !important;
  }
  
  .ticket-content ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  
  .ticket-content ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #808080;
    border-radius: 10px;
  }
  
  .ticket-content ul::-webkit-scrollbar-thumb {
    background: #7666D2;
    border-radius: 10px;
  }
  
  .ticket-content ul::-webkit-scrollbar-thumb:hover {
    background: #7666D2;
  }
  
  .ticket-content ul::-webkit-scrollbar-button {
    height: auto;
  }
.ticket-content ul li {
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #252525;
}

.ticket-buy-now {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: auto;
}

.ticket-buy-now span {
    font-weight: 500;
    font-size: 24px;
    color: #252525;
}

.ticket-buy {
    width: 60%;
    max-width: 145px;
    height: 45px;
    background: #7166CD;
    border-radius: 50px;
    color: #FFF;
}

.ticket-content-active {
    background: #7166CD;
    transform: scale(1);
}

.ticket-content-active .ticket-head,
.ticket-content-active ul li {
    color: #fff !important;
}

.ticket-content-active ul {
    list-style-image: url(../images/tick-white.svg);
    border-top: 0.8px solid #ffffff52;
}

.ticket-content-active .ticket-buy-now span {
    color: #fff;
}

.ticket-content-active .ticket-buy {
    background: #fff;
    color: #7166CD;
}

.ticket-crown::after {
    content: url(../images/crown.svg);
    position: absolute;
    top: -25px;
    right: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .ticket-content {
        transform: scale(1);
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .ticket-nav.nav {
        margin: 30px 0;
    }

    .ticket-buy-now {
        justify-content: space-evenly;
    }

    .ticket-content {
        min-height: auto;
        transform: scale(1);
        margin-bottom: 50px;
        padding: 30px;
    }

    .ticket-content-active::after {
        top: -25px;
        right: 50%;
        transform: translateX(50%);
    }

}