:root {
    --primary-color: #002620!important;
    --primary-light-color: #003a31!important;
    --secondary-color: #b5212f!important;
}


body {
    font-family: "TikTok Sans", sans-serif!important;
    background-color: #F6F6F9;
    color: #2F2158;
}

p {
    color: #000000;
}

a {
    text-decoration: none!important;
}

.navbar {
    font-family: "Chakra Petch", sans-serif;
    padding-top: 5px!important;
    padding-bottom: 5px!important;
    font-size: 14px!important;
    font-weight: 500!important;
    background-color: var(--primary-color)!important;
}

.navbar-nav {
    gap: 10px;
}

.hero-section {
    /*min-height: 400px;*/
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.nav-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.nav-social a{
    color: gray;
}

.nav-social a:hover{
    color: var(--primary-color);
}

.hero-content h1 {
    font-family: "Chakra Petch", sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 110%;
    color: #FFF6E9;
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content h3 {
    font-family: "Chakra Petch", sans-serif;
    font-size: 30px;
}

footer  {
    font-family: "Chakra Petch", sans-serif;
}

footer h4 {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

footer h4 div {
    border-bottom: 1px dotted var(--primary-light-color);
    flex-grow: 2;
}

footer a {
    color: whitesmoke;
    margin-left: 5px;
    font-size: 14px;
}

footer a:hover {
    color: var(--secondary-color);
}

.hero-content h3 span {
    color: var(--secondary-color);
}

.btn-primary {
    background: var(--secondary-color)!important;
    border-color: var(--secondary-color)!important;
    color: #fff!important;
}

.btn-outline-primary {
    background: transparent!important;
    border-color: var(--secondary-color)!important;
    color: #fff!important;
}

.btn-dark{
    background: #2F2158;
    border-color: #2F2158;
}

.header h1{
    font-weight: 600!important;
    font-size: 40px;
    line-height: 110%;
    color: #FFF6E9;
}

.header p{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #DCD8E6;
}


.tip-card {
    background: #FFFFFF;
    /*border-radius: 0px 12px;*/
    margin-bottom: 20px!important;
    padding-top: 20px;
    border: 1px solid var(--primary-light-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tip-card .border-top {
    background-color: rgba(0,38,32,.2);
}

.tip-card:hover {
    box-shadow: 0px 6px 11px rgba(18, 67, 105, 0.03);
    cursor: pointer;
    background-color: whitesmoke;
}

.tip-card .team p {
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: #2F2158;
    margin-bottom: 0px;
}

.tip-card .team h5 {
    color: #ef5350;
}

.tip-card .team span {
    font-size: 11px;
    margin-top: -5px!important;
}

.tip-card .team img {
    width: 20px;
    height: 20px;
}

.tip-card .league p {
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
}

.team-form {
    display: flex;
    justify-content: center;
    gap: 3px;
    align-items: center;
    margin-top: 8px;
}

.team-form div {
    font-size: 11px;
    background-color: gray;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
    padding-top: 1px;
}

.team-form div.w { background-color: darkgreen; color: white; }
.team-form div.d { background-color: gray; color: white; }
.team-form div.l { background-color: darkred; color: white; }

.investment-timeline p { margin-bottom: 0px; font-size: 12px; }

.store-card {
    background: var(--primary-color);
    border-radius: 20px 0px;
    margin-bottom: 20px;
    padding: 15px 20px 0px 20px;
    border: 1px solid lightgray;
    position: relative;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.store-card:hover {
    box-shadow: 0px 6px 11px rgba(18, 67, 105, 0.03);
    background-color: var(--primary-light-color);
}

.store-card p {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    /*background-color: #ef5350;*/
    padding: 2px 8px;
    border-radius: 50px;
    color: white;
}

.store-card h3 {
    color: white;
    margin-bottom: 0px;
    font-weight: 600;
}

.store-card span {
    font-size: 11px;
    color: lightgray;
}

.top-scorers {
    display: flex;
    /*justify-content: space-between;*/
    gap: 5px;
}

.league-tables {
    background-color: #000;
    flex-grow: 1;
    border-left: 2px solid white;
    border-right: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 15.0533px;
    line-height: 36px;
    color: white;
    cursor: pointer;
}

.league-tables:hover {
    background: var(--primary-color);
}

.league-tables.active {
    background: var(--primary-color);
}

.top-tables {
    background-color: #000;
    flex-grow: 1;
    border-left: 2px solid white;
    border-right: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 400;
    font-size: 15.0533px;
    line-height: 36px;
    color: white;
    cursor: pointer;
}

.top-tables:hover {
    background: var(--primary-color);
}

.top-tables.active {
    background: var(--primary-color);
}

.top-league-tabs {
    display: none;
}

.top-league-tabs.active {
    display: block;
}

.league-tabs {
    display: none;
}

.league-tabs.active {
    display: block;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.price-card {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid #E1E6EF;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 6px 11px rgba(18, 67, 105, 0.03);
    margin-bottom: 20px;
}

.price-card:hover {
    background-color: var(--primary-light-color);
}

.price-card h1 {
    font-weight: 500;
    font-size: 35px;
}

.price-card span {
    font-size: 14px;
    color: #ef5350;
}

.price-card h4 {
    font-weight: 500;
    margin-bottom: 15px;
}

.price-card p {
    font-size: 13px;
    color: whitesmoke;
    margin-bottom: 10px;
    /*margin-bottom: 20px;*/
}























@keyframes zoomin {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.gallery-item {
    display: block;
}

.gallery-item img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}

.gallery-item:hover img {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
    background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    z-index: 10;
    filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
    display: flex;
    align-items: center;
    padding: 0;
}

.lightbox-modal .lightbox-content {
    width: 100%;
}

.lightbox-modal .carousel-indicators {
    margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
    background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
    width: 75%;
}

.lightbox-modal .carousel-inner img {
    animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    padding-bottom: 2rem;
    background-color: var(--lightbox);
    color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
    width: auto;
}

.lightbox-modal .carousel-control-prev {
    left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
    right: 1.25rem;
}

@media (min-width: 1400px) {
    .lightbox-modal .carousel-inner {
        max-width: 60%;
    }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
    position: absolute;
    top: 1.25rem;
    right: 3.5rem;
    z-index: 10;
    border: 0;
    background: transparent;
    opacity: .6;
    font-size: 1.25rem;
}

.bi {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.035em;
    fill: currentcolor;
}


.section-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title p {
    font-weight: 700!important;
    font-size: 20px!important;
    line-height: 120%;
    color: #2F2158!important;
    margin-bottom: 0px;
}

.date-item.active{
    font-weight: 700;
    color: #2F2158;
    border-bottom: 2px solid #67E09C;
}


.tip-header span{
    color: rgba(47, 33, 88, 0.6);
    font-weight: 600;
    font-size: 11px;
}

.tip-item{
    background-color: #F6F6F9;
    border-radius: 6px;
    font-size: 13px;
    color: #2F2158;
    font-weight: 500;
}

.tip-time{
    padding: 4px 7px;
    background: #E5E1F2;
    border-radius: 100px;
    font-weight: 600;
    font-size: 10px;
    color: #81789B;
}

.become-predictor h2{
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #FFFFFF;
}

.svg-pane {
    background: linear-gradient(153.68deg, #67E09C 13.56%, #20BC64 85.48%); width: 74.46px; height: 74.46px; border-radius: 100%;
}

.become-predictor p{
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #DCD8E5;
}

.more-tips{
    border: 3px solid #F6F6F9;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    color: #2F2158;
    cursor: pointer;
}

.bet{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    background: #67E09C;
    border-radius: 4px 0px 0px 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    color: #2F2158;
}

.bet-platform {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    background: #2F2158;
    border-radius: 0px 4px 4px 0px;
}

.auth-aside h1{
    font-weight: 600;
    font-size: 51px;
    line-height: 55px;
    color: #FFFFFF;
}

.auth-aside h1 > span{
    color: #67E09C;
}

.auth-form p{
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #2F2158;
}

.auth-form span{
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #81789B;
}

.auth-form a{
    font-weight: 700!important;
    font-size: 16px!important;
    line-height: 19px!important;
    text-decoration: none!important;
    color: #2F2158!important;
}

.predictor-card{
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 20px;
}

.expert-name-alt{
    text-align: center;
}

.text-right{
    text-align: right;
}

.predictor-card img{
    width: 72px;
    height: 72px;
    border-radius: 100%;
}

.predictor-card .expert-name{
    text-align: center;
}

.predictor-card span{
    font-weight: 600;
    font-size: 16px;
    color: #2F2158;
}

.online{
    position: absolute;
    width: 16px;
    height: 16px;
    right: 6px;
    bottom: -24px;
    background: #16B368;
    border: 2px solid #FFFFFF;
    border-radius: 100%;
}

.predictor-card p{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #2F2158;
}

.vip-card {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 20px;
}

.vip-card-header img{
    border-radius: 8px 8px 0px 0px;
    margin-bottom: 10px;
    width: 100%;
}

.vip-card-body{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.vip-card-body img{
    width: 38px;
    height: 38px;
    border-radius: 100%;
    margin-right: 11px;
}


.vip-card-body span{
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #2F2158;
}

.vip-card-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #F6F6F9;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #2F2158;
}

.vip-card-footer strong{
    font-weight: 700;
    font-size: 16px;
}

.accordion-item {
    margin-bottom: 8px!important;
}

.accordion-header{
    border-radius: 8px!important;
}

.key {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #74767E;
}

.value {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #2F2158;
}

.view-store-container p{
    color: #2F2158!important;
}

.points-to-note li{
    margin-bottom: 8px!important;
}

.dashboard-label{
    padding: 12px 8px 12px 12px;
    background: #EDEBF5;
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    color: #2F2158;
}

.dashboard-value{
    padding: 12px 8px 12px 12px;
    background: #F6F6F9;
    font-weight: 600;
    font-size: 12px;
    line-height: 120%;
    color: #2F2158;
}

.vip-input-list{
    border: 1px solid #DCD8E5;
    border-radius: 8px;
    padding: 10px 0px;
    margin-bottom: 20px;
}

.vip-input-list span{
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #DCD8E5;
    padding: 10px 20px;
    background: #2F2158;
    border-radius: 8px 0px 8px 0px;
}

.text-warning{
    color: #D3A604!important;
}

.tip-page-nav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.tip-page-item{
    margin-right: 10px;
    padding: 10px 20px;
    color: #81789B;
    font-size: 14px;
}

.tip-page-item:hover{
    background: #2F2158;
    border-radius: 100px;
    color: #fff!important;
}

.tip-page-item.active{
    background: #2F2158;
    border-radius: 100px;
    color: #fff!important;
}

.tip-page-item.active svg path{
    fill: #fff!important;
}

.tip-empty-state p{
    font-weight: 700!important;
    font-size: 20px!important;
    line-height: 120%!important;
    color: #2F2158!important;
    margin-top: 10px;
}

.tip-empty-state span{
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #81789B;
}

.about-us p{
    color: #2F2158;
    text-align: justify;
}

.noty-badge{
    position: absolute;
    width: 24px;
    height: 24px;
    right: -16px;
    top: -8px;
    background: #D55151;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    color: #DCD8E5;
}

.noty-dropdown{

}

.noty-dropdown p{
    margin-bottom: 0px;
}

.noty-dropdown span{
    font-size: 11px;
}

.messages-container {
    max-height: 75vh!important;
}

.menu-dp{
    height: 40px;
    width: 40px;
    border-radius: 100%;
}


.right-sticky {
    position: fixed;
    width: 14.0%;
    top: 70px;
    z-index: 0;
}






























label {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #81789B;
}


.form-select{
    border: 1px solid #E1E6EF!important;
    border-radius: 4px!important;
    /*background: #FFFFFF!important;*/
    padding: 8px 14px!important;
    height: 40px;
}

.form-group{
    margin-bottom: 15px!important;
}

.btn-primary{
    background-color: var(--primary-color);
}

.btn-md {
    padding: 14px 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 14px;
}

.btn-success {
    padding: 14px 20px;
    border-radius: 6px;
}

.btn-default{
    background: #FFFFFF;
    border: 1px solid #F1EDFA;
    border-radius: 6px;
}

.btn-default:hover{
    background: #67E09C!important;
}

.btn-block {
    width: 100%;
}

.card{
    border: 1px solid #E1E6EF!important;
    border-radius: 12px!important;
}

.filter-toggle{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    width: 129px;
}

.filter-toggle:hover{
    background-color: #1F51E5;
}

.filter-toggle.clear{
    background-color: #ef5350;
}

.filter-toggle.clear:hover{
    background-color: #ed3c39;
}

.flex-start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.error-display{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    background: #FEF1F2;
    border-radius: 4px;
    color: #1D2433;
    padding: 8px;
    display: flex;
    justify-content: flex-start;
}

.badge {
    font-weight: 400!important;
    font-size: 12px!important;
    line-height: 14px!important;
    border-radius: 100px!important;
    padding: 5px 12px!important;
}

.badge-active{
    color: #08875D!important;
    background: #EDFDF8;
}

.badge-pending{
    color: #B35E09!important;
    background: #FFF8EB;
}

.badge-inactive{
    color: #ef5350!important;
    background: #FEF1F2;
}

.modal-header > button{
    border: 1px solid #E1E6EF;
    border-radius: 8px;
    padding: 14px!important;
    font-size: 12px!important;
}

.modal-header > h5{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.profilePhoto{
    height: 35px;
    width: 35px;
    border-radius: 50px;
    margin-right: 8px;
}

.tab-card{
    background: #FFFFFF;
    border-radius: 8px;
}

.tab-nav-wrap{
    border-bottom: 2px solid #F6F6F9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    cursor: pointer;
}

.tab-nav-wrap a{
    text-wrap: none!important;
    white-space: nowrap!important;
}

.tab-nav {
    padding: 15px 18px;
    color: rgba(29, 36, 51, 0.8);
    text-decoration: none!important;
}

.tab-nav.active {
    background: #F6FBF8;
    color: #2F2158;
    border-bottom: 2px solid #67E09C;
}

.tab-body{
    padding: 10px;
    display: none;
}

.tab-body.active{
    display: block;
}

.sub-card h4{
    font-weight: 700;
    font-size: 19px;
    line-height: 24px;
    color: #2F2158;
}


.sub-card p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2F2158;
}

.sub-card span{
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #2F2158;
}

.footer-div a{
    color: #67E09C!important;
    text-decoration: none!important;
    font-size: 14px!important;
    font-weight: 500!important;
}

.social-icon{
    height: 40px;
    width: 40px;
    padding: 12px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    text-decoration: none!important;
    font-size: 24px;
    margin-right: 8px;
}

.twitter {
    background-color: #55acee!important;
}

.facebook {
    background-color: #3b5998!important;
}

.linkedin {
    background-color: #0077b5!important;
}

.instagram {
    background-color: #3f729b!important;
}

.pinterest {
    background-color: #bd081c!important;
}



/* File Upload CSS */
.file-area {
    width: 100%;
    position: relative;
    font-size: 14px;
}
.file-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.file-area .file-dummy {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed #c8d2df;
    border-radius: 5px;
    /* text-align: center; */
    transition: background 0.3s ease-in-out;
}

.file-area .file-dummy .success {
    display: none;
}

.file-area:hover .file-dummy {
    background: rgba(255, 255, 255, 0.1);
}

.file-area input[type="file"]:focus + .file-dummy {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type="file"]:valid + .file-dummy {
    border-color: #6eb4e0;
    background-color: #ebf8fe;
}

.file-area input[type="file"]:valid + .file-dummy .success {
    display: inline-block;
}

.file-area input[type="file"]:valid + .file-dummy .default {
    display: none;
}

.market {
    background: white;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 10px;
    border: 1px solid #2F2158;
    cursor: pointer;
    margin-bottom: 10px;
}

.market:hover {
    background: #2F2158;
    color: white;
}

.market.active {
    background: #2F2158;
    color: white;
}

.flag {
    height: 15px;
    width: 15px;
}

.no-wrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.popular-predictors {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.popular-predictors .single {

}

.popular-predictors .single img {
    height: 60px;
    width: 60px;
    border-radius: 50px;
}

.popular-predictors .single h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    margin-top: 5px;
    color: #2F2158;
}

.popular-predictors .single p {
    font-size: 12px;
    color: grey;
}






/*working only in ipad portrait device*/
@media only screen and (width: 768px) and (height: 1024px) and (orientation:portrait) {

    .category-pane{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 12px;
        overflow: auto;
        padding: 0px 10px!important;
    }
}




@media only screen and (max-width: 568px) {

    .hero-content h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 110%;
        color: #FFF6E9;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .step-wrapper{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .step-item{
        margin-bottom: 8px;
    }

    .step-line{
        display: none;
    }

    .date-item{
        font-size: 11px!important;
        padding: 6px 9px!important;
    }

    .date-item.active{
        background-color: #67E09C;
        border-radius: 15px;
        font-size: 12px;
        padding: 6px 9px;
    }

    .expert-name{
        flex-grow: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .category-pane{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: 12px;
        overflow: auto;
        padding: 0px 10px!important;
    }


    .category-item:hover{
        border-right: none!important;
    }

    .category-item.active{
        background: #F6FBF8;
        border: none;
        border-bottom: 3px solid #67E09C;
        color: #2F2158!important;
    }

    .category-item {
        padding: 7px!important;
    }

    .category-item span{
        font-size: 12px!important;
    }

    .no-padding-sm{
        padding: 0px!important;
    }

    .header {
        margin-top: 40px;
    }

    .header h1{
        font-weight: 600!important;
        font-size: 27px;
        line-height: 110%;
        color: #FFF6E9;
    }

    .header p{
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        color: #DCD8E6;
    }

    .category-pane {
        padding: 0px!important;
    }

    .become-predictor{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .svg-pane{
        height: 37px;
        width: 48px;
        margin-right: 8px!important;
    }

    .become-predictor svg{
        height: 16px;
    }

    .become-predictor h2{
        font-weight: 600;
        font-size: 14px!important;
        line-height: 18px!important;
        color: #FFFFFF;
        margin-bottom: 6px!important;
    }

    .become-predictor p{
        font-weight: 400;
        font-size: 10px;
        line-height: 14px!important;
        color: #DCD8E5;
    }

    .become-predictor a{
        font-size: 11px!important;
        white-space: nowrap;
        width: 30%!important;
    }

    .predictor-card-inner{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .expert-name-alt{
        text-align: left!important;
        margin-left: 12px!important;
    }

    .expert-name-alt p{
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;
        color: #2F2158;
    }

    .vip-name{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-link.active{
        color: #67E09C!important;
        border-bottom: none!important;
        padding-bottom: 10px!important;
    }

    /*nav.navbar .btn{*/
        /*width: 100%!important;*/
    /*}*/

    nav .navbar-collapse {
        padding: 15px 15px 40px 15px!important;
    }

    /*nav.navbar li {*/
    /*    padding-bottom: 10px!important;*/
    /*    padding-top: 10px!important;*/
    /*}*/

    .post-btn{
        /*margin-bottom: 10px!important;*/
        font-size: 12px!important;
    }

    .header-btn-container{
        margin-right: -30px;
    }


    .header-btn-container a.btn{
        font-size: 12px!important;
    }

    .menu-dp{
        height: 30px;
        width: 30px;
        border-radius: 100%;
    }

    .predictor-card img{
        width: 50px;
        height: 50px;
        border-radius: 100%;
    }

    .auth-card{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tip-page-item{
        margin-right: 5px;
        padding: 7px 10px;
        color: #81789B;
        font-size: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tip-page-item span{
        margin-left: 5px!important;
    }

    .tip-item{
        font-size: 11px!important;
    }

    .about-us p{
        color: #2F2158;
    }

    .messages-container {
        max-height: 75vh!important;
    }
    /*.category-item span{*/
        /*font-size: 11px!important;*/
        /*font-weight: 600;*/
        /*color: #81789B;*/
    /*}*/
}



.select2-selection {
    height: 44px !important;
    line-height: 44px;
    font-size: 13px;
    font-family: 'TikTok Sans', sans-serif;
    border-radius: 0 !important;
    border: solid 1px #c4c4c4 !important;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px!important;
}

.select2-selection--multiple {
    height: auto !important;
    width: 100% !important;
}

.select2-selection__choice {
    height: 44px;
    line-height: 44px;
    padding-right: 16px !important;
    padding-left: 16px !important;
    background-color: #CAF1FF !important;
    color: #333 !important;
    border: none !important;
    border-radius: 3px !important;
}

.select2-selection__choice__remove {
    float: right;
    margin-right: 0;
    margin-left: 10px;
}
.select2-search--inline .select2-search__field {
    line-height: 40px;
    color: #333;
    width: 100%!important;
}

.select2-container:hover,
.select2-container:focus,
.select2-container:active,
.select2-selection:hover,
.select2-selection:focus,
.select2-selection:active {
    outline-color: transparent;
    outline-style: none;
}

.select2-results__options li {
    display: block;
}

.select2-selection__rendered {
    transform: translateY(2px);
}

.select2-selection__arrow {
    /*display: none;*/
    padding-left: 20px!important;
    padding-right: 10px!important;
}

.select2-results__option--highlighted {
    background-color: #CAF1FF !important;
    color: #333 !important;
}

.select2-dropdown {
    border-radius: 0 !important;
    box-shadow: 0px 3px 6px 0 rgba(0,0,0,0.15) !important;
    border: none !important;
    margin-top: 4px !important;
    /*width: 366px !important;*/
}

.select2-results__option {
    font-family: 'TikTok Sans', sans-serif;
    font-size: 13px;
    line-height: 24px !important;
    vertical-align: middle !important;
    padding-left: 8px !important;
}

.select2-results__option[aria-selected="true"] {
    background-color: #eee !important;
}

.select2-search__field {
    font-family: 'TikTok Sans', sans-serif;
    color: #333;
    font-size: 13px;
    padding-left: 8px !important;
    border-color: #c4c4c4 !important;
}

.select2-selection__placeholder {
    color: #c4c4c4 !important;
}

.pwa-install-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2F2158 0%, #1a1038 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 9999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
}

.pwa-install-banner.show {
    transform: translateY(0);
    opacity: 1;
    bottom: 0;
}

.pwa-install-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pwa-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pwa-icon i {
    font-size: 24px;
    color: #fff;
}

.pwa-text {
    flex: 1;
}

.close-pwa-banner {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-pwa-banner:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pwa-install-banner h5 {
    margin: 0 0 5px 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.pwa-install-banner p {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.install-pwa-btn-float {
    background: #00E676;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 230, 118, 0.3);
}

.install-pwa-btn-float:hover {
    background: #00C853;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.4);
}

@media (max-width: 575px) {
    .pwa-install-banner {
        border-radius: 0;
        max-width: 100%;
        padding: 15px 15px 20px;
    }

    .pwa-install-content {
        gap: 12px;
    }

    .pwa-icon {
        width: 40px;
        height: 40px;
    }

    .pwa-icon i {
        font-size: 20px;
    }

    .pwa-install-banner h5 {
        font-size: 1rem;
    }

    .pwa-install-banner p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .install-pwa-btn-float {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
}
