body{
    color: #58595b;
    padding: 0;
    margin: 0;
    font-family: Lato,"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 150%;
    position: relative;
    cursor: default;
}
body.bg-main {
    background: rgb(23, 22, 22);
    background-image: url(../img/page-bg.png);
}
h1 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: Liberal,Lato,"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #d71920;
    text-rendering: optimizeLegibility;
}
label {
    color: #4d4d4d;
    cursor: pointer;
    display: block;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}
#trac-donate-main {
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}
.bg-white {
    background-color: #ffffff;
}
.card :last-child {
    margin-bottom: 0;
}
.donate-nav {
    margin-bottom: 16px;
}
.donate-nav>li>a {
    color: #58595b;
}
.donate-nav>li.active>a, .donate-nav>li.active>a:hover {
    color: #d71920;
}
.donate-progress {
    width: 75%;
    margin: 0.5em auto 1.5em;
    text-align: center;
    border-top: 1px solid #f1f2f2;
    border-bottom: 1px solid #f1f2f2;
    padding-top: 0.5em;
    padding-bottom: 2em;
}
.donate-progress:after {
    content: "";
    display: block;
    width: 65%;
    margin: -2.5em auto 0;
    border-bottom: 2px solid #d1d3d4;
    padding-top: 0.5em;
}
.donate-progress ul {
    padding: 0;
}
.donate-progress li {
    display: inline-block;
    width: 32%;
    /*font-size: 0.8em;*/
}
.donate-progress li.active {
    font-weight: bold;
    color: #d71920;
}
.donate-progress li.active:after {
    background-color: #d71920;
    color: #fff;
}
.donate-progress li.progress-1:after {
    content: "1";
}
.donate-progress li.progress-2:after {
    content: "2";
}
.donate-progress li.progress-3:after {
    content: "3";
}
.donate-progress li:after {
    content: "";
    display: block;
    background-color: #d1d3d4;
    width: 2em;
    margin: 0 auto;
    line-height: 2em;
    border-radius: 2em;
    color: #58595c;
}
.breadcrumb .active {
    font-weight: bold;
    color: #d71920;
}
.general-error {
    border: 1px solid #d71920;
    text-align: center;
    padding: 0.2em;
    margin-bottom: 0.8em;
    position: relative;
    display: none;
}
span.required {
    color: red;
}
#donate-prev {
    margin-top: 0.5em;
}
ul.forms {
    list-style-type: none;
}
.form-pagination {
    margin-top: 16px;
    margin-bottom: 16px;
}
.donate-checkbox {
    width: 16px;
    height: 16px;
    margin: 4px auto 0 ! important;
}
.btn-amount, .btn-amount:visited, .btn-amount-riding, .btn-amount-riding:visited {
    width: 100%;
    margin-bottom: 8px;
    /*
    background-color: #d71920;
    color: #ffffff !important;
    */
    padding: 10px 12px;
}
.btn-amount:hover, .btn-amount:active, .btn-amount-active, .btn-amount-riding:hover, .btn-amount-riding:active {
    /*
    background-color: #b11116 ! important;
    color: #ffffff ! important;
    */
}
.btn-red, .btn-red:visited {
    background-color: #d71920;
    color: #ffffff !important;
}
.btn-red:hover, .btn-red:active {
    background-color: #b11116;
    color: #ffffff;
}

.amount-other-container {
    margin-bottom: 8px;
}
.amount-other {
    background-color: rgba(0,0,0,0.05);
    height: 41px;
    padding: 9px 20px 0 40px;
    border-radius: 4px;
}
.amount-other input[type="text"] {
    width: 100%;
}
.amount input[type="radio"] {
    /*display: none;*/
    width: 100%;
}
.amount-other-victory-fund {
    padding: 8px 15px 0 15px;
}

li.other_amount_label {
    padding: 0.4em 0;
    background-color: rgba(0,0,0,0.05);
    width: 47%;
    margin: 0 0.3em 0.3em 0.4em;
    position: relative;
    top: -0.1em;
}
li.other_amount_label:before {
    content: '$';
    padding-right: 0.3em;
    font-weight: bold;
    color: #a7a9ac;
}
.other_label {
    display: none;
}
.one_time_donation_party_contrib .other_amount_label input {
    width: 80%;
    display: inline-block;
}
.error-other {
    margin-top: 6px;
}
.red-text, .error {
    color: #d71920;
}
.right {
    float: right !important;
}
.hidden {
    display: none;
}

.panel-campaign-selector {
    margin-bottom: 16px;
}

#spinner-overlay {
    display: none;
    z-index: 1001;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #333;
    opacity: 0.4;
}
#spinner{
    display: none;
    z-index: 1002;
    width: 32px;
    font-size: 32px;
    /*margin: 35% auto 0 auto;*/
    text-align: center;
    color: #eee;
    opacity: 0.7;
    position: fixed;
    top: 35%;
    left: 0px;
}
.glyphicon-spin {
    -webkit-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

#find-riding-search-results {
    margin-top: 20px; 
    overflow: auto; 
    max-height: 170px;
    border:1px solid #e5e5e5;
    padding: 4px 10px;
    display: none;
}

.paypal-container {
    position: relative;
    padding-bottom: 115%;
    height: 0;
    overflow: hidden;
}

.paypal-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.red {
    color: #d71920;
}
.grey {
    color: #d1d3d4;
}

.check-icon {
    margin-left: 5px;
}