/* VOTE */

.vote-container {
    width: 100%;
    position: relative;
}

.vote-colour {
    position: absolute;


    width: 100%;
    height: 100%;

    left: 0;
    top: 0;
}


.vote-wrapper {
    padding: 50px 20% 0 20%;
    
    width: 60%;
    height: 500px;

    display: flex;
    flex-direction: row;
    /*flex-wrap: wrap; ADD ONLY ON MOBIL PLS */
    align-items: center;
    justify-content: center;

    gap: 20px;

    vertical-align: middle;

    position: relative;

    z-index: 10;
}

.vote-items-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.vote-image {
    height: 100%;
}

.vote-title {
    color: var(--text-colour);

    font-size: 40px;
    width: fit-content;

    margin-bottom: 25px;

    text-align: center;
}

.vote-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-width: 400px;
}

.vote-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.vote-button {
    padding: 15px 20px;

    border-radius: 10px;
    border: 2px solid var(--secondary-accent-colour);
    
    background: var(--primary-accent-colour);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    color: var(--text-colour);
    
    text-decoration: none;
    text-align: center;

    font-weight: 500;

    position: relative;
    z-index: 2;

    transition: all .2s ease;
}

.vote-button p {
    margin: 0;
}

.vote-button span {
    font-weight: 350 !important;
    font-size: 20px;
}

.vote-button:hover {

    background: #00ba3638;

    border: 2px solid #00ba3638;
}

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

    .vote-container {
        padding: 50px 10px 0 10px;
        width: calc(100% - 20px);
    }

    .vote-wrapper {
        padding: unset;
        width: 100%;
    }

    .vote-items-wrapper {
        display: none;
    }

    .vote-items {
        width: 100%;
        min-width: unset;
    }

    .vote-buttons {
        gap: 2px;
    }

    .vote-title {
        width: 100%;
        min-height: fit-content;
        font-size: 30px;
    }

}

@media screen and (max-width: 1050px) {
    
    .vote-image {
        height: 80%;
    }

}

.bold-and-green {
    font-weight: 700;
    color: var(--primary-accent-colour);
}