:root{
--vcet-primary-color: #1d4ed8;
--vcet-error-color: #ff524d;
--vcet-success-color: #15803d;
--vcet-border-color: #e2e8f0;
--vcet-background: #f8fafc;
--vcet-text-color: #1e293b;
--vcet-form-bg: #ffffff;
--vcet-input-bg: #f8fafc;
--vcet-input-border: #e2e8f0;
--vcet-input-focus: #3b82f6;
}
*{
box-sizing: border-box;
max-width: 100%;
font-family: "Open Sans", sans-serif;
}
html, body{
margin: 0;
padding: 0;
}
.everything{
width: 622px;
margin: 0 auto 32px auto;
}
.page-title{
text-align: center;
font-size: 32px;
font-weight: 700;
margin: 30px 0;
color: #1e293b;
}
header{
margin: auto;
text-align: center;
}
p{
font-size: 1rem;
line-height: 2rem;
margin: 0;
}
.goto-form{
display: block;
width: 100%;
margin: 0 auto;
padding: 1.25rem;
background-color: var(--vcet-error-color);
color: #000;
text-align: center;
text-decoration: none;
font-weight: bold;
margin: 0 auto;
font-size: 30px;
font-weight: 400;
cursor: pointer;
border: 0;
}
.counties{
display: flex;
justify-content: space-between;
flex-direction: row;
width: 444px;
margin: 40px auto;
align-items: flex-start;
}
.county{
display: flex;
flex-direction: column;
align-items: center;
width: 33.33%;
}
.counties a{
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
cursor: pointer;
}
.counties img{
height: 110px;
width: 110px;
object-fit: contain;
}
.counties a:hover img{
filter: brightness(0.9);
}
.counties a:hover p{
text-decoration: underline;
text-decoration-thickness: 1.4px;
}
.county p{
margin-top: 5px;
font-size: 14px;
font-weight: bold;
color: #333;
}
.expandable-text{
position: relative;
height: 4rem;
overflow: hidden;
transition: height 0.3s ease-out;
line-height: 2rem;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
}
.expandable-text.expanded{
height: auto;
display: block;
-webkit-line-clamp: initial;
}
.expand-button{
display: block;
width: 100%;
text-align: center;
margin-top: 10px;
color: #1d4ed8;
cursor: pointer;
text-decoration: underline;
}
.text-container{
margin-bottom: 30px;
border-top: 9px double #333;
border-bottom: 9px double #333;
padding: 2rem 0;
}
.logo{
width: 300px;
margin: 40px 0;
}
.vcet-modal-content p{
text-align: left;
}