/* ============================================
   VOTE PAGE STYLING FOR SPAROX THEME
   ============================================ */

.vote-page {
    width: 100% !important;
}

.vote-content {
    padding: 0 !important;
}

.JC-VoteContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
    max-width: 1300px;
    padding: 0 20px;
}

.JC-VoteLeft {
    flex: 1;
    min-width: 300px;
}

.JC-VoteRight {
    flex: 1;
    min-width: 300px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 20px 20px;
}

.JC-VoteLeft-content {
    position: relative;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 20px 20px;
    background: var(--secondBG);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 40px 40px 40px;
}

.JC-VoteLeft-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #78D7E7;
    z-index: 2;
}

.JC-VoteRight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #E599F4;
    z-index: 2;
}

.JC-VoteText {
    width: 100%;
}

.JC-VoteTitle {
    color: #78D7E7;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 20px 0;
    width: 100%;
}

.JC-VoteSlogan {
    color: #9a9a9a;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.JC-VoteReward {
    color: #E599F4;
    padding-top: 30px;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

/* VOTE BUTTONS */

.JC-VoteTabs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 50px 40px;
    position: relative;
}

.tablink {
    font-weight: 600;
    color: #6D4C7D;
    transition: all 0.3s ease;
    background: #E599F4;
    font-size: 16px;
    padding: 24px 32px;
    text-transform: uppercase;
    line-height: 19px;
    box-shadow: 5px 5px 10px #6D4C7D;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.tablink:hover {
    color: #fff !important;
    background: #d97be3;
    transform: translateY(-2px);
    box-shadow: 5px 8px 15px rgba(229, 153, 244, 0.4);
}

.tablink:active {
    transform: translateY(0);
}

/* RESPONSIVE */

@media only screen and (max-width: 1279px) {
    .JC-VoteLeft {
        width: 100% !important;
    }

    .JC-VoteRight {
        width: 100% !important;
    }
}

@media only screen and (max-width: 960px) {
    .JC-VoteContainer {
        gap: 20px;
        margin: 20px auto;
    }

    .JC-VoteLeft-content,
    .JC-VoteTabs {
        padding: 40px 20px !important;
    }

    .JC-VoteTitle {
        font-size: 20px;
    }

    .JC-VoteSlogan,
    .JC-VoteReward {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .JC-VoteContainer {
        flex-direction: column;
        gap: 20px;
    }

    .JC-VoteTabs {
        gap: 12px;
        padding: 30px 15px;
    }

    .tablink {
        padding: 18px 24px;
        font-size: 14px;
    }

    .JC-VoteLeft-content {
        padding: 30px 15px 25px 15px;
    }

    .JC-VoteTitle {
        font-size: 18px;
    }

    .JC-VoteSlogan,
    .JC-VoteReward {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .JC-VoteContainer {
        padding: 0 10px;
    }

    .JC-VoteTabs {
        padding: 20px 10px;
    }

    .tablink {
        padding: 16px 20px;
        font-size: 13px;
    }
}
