body {
    background-image: url("images/Brickwall.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: Supersonic Rocketship!important;
    color: white!important;
    font-size: 2em!important;
}

@font-face {
    font-family: 'Supersonic Rocketship';
    src: url('fonts/supersonic_rocketship-webfont.woff2') format('woff2'),
    url('fonts/supersonic_rocketship-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

#scrollDownArrow {
    position: fixed; bottom: 50px; right: 50px; width: 100px;
    display: none;
    z-index: 999;
}

#sectionVotingInactive {
    display: none;
}

#sectionVotingActive {
    display: none;
}


.ccLogoImage {
    max-height: 100%;
    max-width: 100%;
    padding-top: 25vh;
}

.ccLogoContainer {
    height: 50vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.votingNotActiveNotice {
    font-size: 1.4em;
    padding: 40px 10px;
    margin-top: 60px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 20px;
}

.votingEventImage {
    margin: 2vh 0 2vh 0;
    max-height: 400px;
    max-width: 100%;
}

.votingEventDescription {
    font-size: 3rem!important;
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
    padding: 10px 10px;
}

.changeVoteButton {
    margin: 100px 0 0 0;
    font-size: 3rem!important;
    background-color: red;
    border-radius: 20px;
    padding: 40px 0px;
}

#votingContestants .container-fluid {
    margin-top: 50px;
    padding: 0 50px;
}

#activeVote {
    display: none;
}

#votingContestantOptions {
}

.votingContestantImage {
    height: 150px;
    width: 150px;
    display: inline-block;
    background-size: cover;
    background-position: center top;
    border-radius: 100%;
    background-color: #48c197;
    border: 0px solid #ffffff;
}

.votingContestantSelectedImage {
    margin: 100px 0 50px 0;
    height: 300px;
    width: 300px;
    display: inline-block;
    background-size: cover;
    background-position: center top;
    border-radius: 100%;
    background-color: #48c197;
    border: 0px solid #ffffff;
}

.votingContestantImage:before {
    background-color: red;
}

.contestantName {
    font-size: 2.5rem;
    padding-left: 20px;
    display: inline-block;
}

.contestantColumn {
    margin: 20px 0;
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
    padding: 10px;
}

.contestantColumn > * {
    vertical-align: middle;
    line-height: normal;
}

.contestantColumnSelected {
    border: 5px solid white;
    /*background-color: rgba(67,119,96,0.6);*/
}

/*
.modal-content.custom {
    background-color: black;
    font-size: 2.5rem;
}

.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.btn {
    font-size: 2.5rem;
}*/

/* The Modal (background) */
.modal-custom {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content-custom {
    background-color: #000000;
    margin: 50vh auto; /* 15% from the top and centered */
    padding: 40px 30px 20px 30px;
    border: 1px solid #888;
    border-radius: 20px;
    font-size: 2.5rem;
    text-align: center;
    width: 95%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}