@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

.content-block{
    font-size: .8em;
    padding: 0;
    margin: 0;
}
.content-header{
    font-size: 1em;
    padding: 0;
    margin-bottom: 6px;
    margin-top: 6px;

}


/*finnesse the title in the header on the standard template*/
.home-header{
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
/*the block of informational text in the footer*/
.footer-info{
    font-size: 12px; 
    color:#000000; 
    font-family:Lato sans-serif;
}

.contact-input{
    margin-top: 0px;
    padding-top: 0px;

}

/*kill some dead space at the top of the contact page*/
.contact-input p:first-of-type{
    display: hidden;

}

/*the text inputs on the contact us page are not wide enough*/
.contact-input input[type=text]{
    width:300px !important;

}
/*get rid of the useless back link at the top of the contact page*/
.contact-input a{
    display: none;
}

/*a few tweaks on the "location" page*/
.contact-map{
    display: flex;
    flex-direction: row;
    width:100%;
    height: 500px;
}

.contact-map div{
    width:50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
/*
on the event page a "back" link shows up inexplicably. hide it.
*/
#FunctionalBlock1_ctl00_eventPageViewBase_ctl00_ctl00_back
{
    display: none;

}

.donation-form input
{
    width:30.25vw !important;
    /*height: 25px !important;*/
    border-radius:5px;
}

#FunctionalBlock1_ctl00_backToProfileButton{

    display: none;
}
#FunctionalBlock1_ctl00_donation_ctl00_stepTemplate_cancel
{
    width: 200px !important;

}

#FunctionalBlock1_ctl00_donation_ctl00_stepTemplate_next{

    width: 200px !important;
}

.links-row{
    width:80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.links-row :nth-child(1){
    display: inline-block;
    width: 50%;
}
.links-row :nth-child(2){
    display: inline-block;
    width: 50%;

}

.links-row :hover{
    background-color:lightblue;
}
