/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .button.vote_me.disabled {
    cursor: not-allowed;
    background-color: gray;
}

.ivapp_post_contest_container{
	display: flex;
    flex: 1 0 100%;
    flex-wrap: wrap;
}

.ivapp_post_contest_entry{
	flex: 0 0 33%;
    max-width: 33%;
    padding: 10px;
    margin: 10px 0;
}
.ivapp_post_contest_entry img{
	width: 100%;
	height: 300px !important;
	object-fit: cover;
	max-width: 300px;

}

.button.vote_me {
    font-family: "Avenir Next", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    fill: #ffffff;
    color: #ffffff;
    background-color: #f17eb1;
    border-radius: 28px 28px 28px 28px;
    box-shadow: none;
    padding: 6px 50px 6px 50px;
    border: none;
    margin-bottom: 10px;
}
@media screen and (max-width: 1080px) {
	.ivapp_post_contest_entry{
	flex: 0 0 50%;
    max-width: 50%;
    
}
}

@media screen and (max-width: 667px) {
	.ivapp_post_contest_entry{
	flex: 0 0 100%;
    max-width: 100%;
    
}
}