
/*** FRONT-END CSS ***/

.gowv-position{
    margin-bottom:60px;
}

.candidate-wrapper{
    display:grid;
    gap:40px;
    font-size:1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    font-weight:600; 
    margin-bottom:40px;
}

.candidate-wrapper label{
    cursor:pointer;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 0px #b2b2b2;

}

.candidate-wrapper .voter-subcategory{
    font-weight: 400;
    font-size: .9rem;
    font-style: italic;
    margin-top:10px;
}

.voter-subcategory span{
    font-weight:600;
}

.voter-subcategory span.write-in-candidate{
    color: #930202;
    width: 100%;
    display: block;
    text-transform: uppercase;
}


.candidate-wrapper input[type="checkbox"]{
    margin:10px;
    
}

.gowv-custom-candidate{
    
    display:inline-flex;
    cursor:pointer;
}

.gowv-custom-candidate label{
    font-weight:500;
}

.gowv-custom-candidate input{
   min-width:300px;
    cursor:pointer;
}

.write-in-text{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px !important;
}

.gowv-custom-candidate button, button[name="submit_vote"], .bio-btn{
   min-width:60px;
   border: none;
   font-weight:500;
   background: #3e7eae;
   border-radius: 5px;
   color:#fff;
   margin: auto;
    padding: 10px;
    cursor:pointer;
}


.gowv-custom-candidate button:hover, button[name="submit_vote"]:hover, .bio-btn:hover{
   background: #3e7299;
   color:#fff;
  
}


.voter-write-in, .voter-write-in span{
    font-size:1.1rem;
}

.voter-write-in span{
   font-weight:600;
   margin-right:8px;
}

.voter-write-in{
    margin-bottom: 40px;
    background: #dedede;
    padding: 10px 15px;
    width: 100%;
    display: block;
    text-align: center;
}

.voter-instructions{
    margin-bottom:30px;
}

.vote-seats{
    margin-bottom:30px;
    font-weight:600;
    font-style:italic;
    background:#930202;
    color:#fff;
    text-align:center;
    padding:10px 5px;
    font-size:medium;
    box-shadow: 0px 0px 5px #c2c2c2;
}

.vote-seats span{
    margin-left: 8px;
    font-size: 1.25rem;
}

.vote-position{
    text-align:center;
    fotn-weight:700;
}

.vote-confirmation{
    font-size:1.2rem;
}

.company-votes-wrapper span{
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 3px;
    border: 2px solid;
    padding: 4px;
}

/*** MEDIA QUERIES ***/

@media only screen and (max-width: 480px) and (orientation: portrait) {
  .gowv-custom-candidate {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
 }

 .gowv-custom-candidate button{
    width:100%;
 }
}