.donateBtn, .donateBtn * {
    /* Use box sizing for the donate button elements, thank you Paul Irish */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.donateBtn {
    position: relative;
    z-index: 4001;

    display: block;
    overflow: hidden;

    width: 160px;
    height: 35px;
}

.donateBtn:hover, 
.donateBtn.active {
    padding-bottom: 222px;
    margin-bottom: -186px;
}

.donateBtn fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.donateBtn input[type=number]::-webkit-inner-spin-button, 
.donateBtn input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.donateBtn hr {
    margin: 17px 0;
    border: 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #ffffff;
}

.donateBtn p {
    margin:0 0 11.5px;
}

.donateBtn .btn {
    position: relative;
    z-index: 4003;

    width: 100%;
    padding: 5px 18px;
    margin-bottom: 0;

    display: inline-block;
    vertical-align: middle;
    
    color: #ffffff;
    text-align: center;
    
    cursor: pointer;
    border: 0;
}

.donateBtn .close {
    position: absolute;
    z-index: 4005;

    top: 9px;
    right: 8px;

    padding: 5px;
    
    /* Gets overridden by JS */
    display: none;
    
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 8px;

    color: #e51d2e;
    background: #ffffff;
    
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    opacity: 0;
    filter: alpha(opacity=0);

    cursor:pointer;
    
}

.donateBtn .close:hover {
    color: #ffffff;
    background: #333333;
}

.donateBtn .donateMenu, 
.donateBtn .donateOptions {
    position: absolute;
    z-index: 4002;

    top: -182px;
    left: 0;
   
    width: 100%;
    padding: 10px;

    font-family: sans-serif;
    font-size: 12px;
    line-height: 1.2;
    color: #ffffff;
    text-align: left;
    
    background: #D21525;

    -webkit-transform: translate(translate3d,0 0 0);
    -moz-transform: translate(translate3d,0 0 0);
    -ms-transform: translate(translate3d,0 0 0);
    -o-transform: translate(translate3d,0 0 0);
    transform: translate(translate3d,0 0 0);
}

.donateBtn .donateMenu {
    /* Remove this if you want to show the "In Need Of" box on hover. */
    display:none !important;
}

.donateBtn .donateMenu ul li, 
.donateBtn .donateOptions ul li {
    line-height: 1.2;
}

.donateOptions label {
    display: inline-block;
    vertical-align: top;

    width: 82%;
    margin: 0;

    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.no-flexbox.canvas .donateOptions label {
	width:64%;
}

.donateOptions label span {
    /* The labels are in the code as a usability precaution */
    display:none;
}

.donateOptions input {
    display: inline-block;

    width: 100%;
    height: 24px;
    margin: 0;

    border: none !important;
    border-radius: 2px !important;

    line-height: 17px;
}

.donateOptions input[type="submit"], .donateOptions .go_button {
    display: inline-block;
    vertical-align: top;
    /*float:right;*/

    width: 15%;
    height: auto;

    border-radius: 2px;

    font-weight: bold;
    line-height: 2;
    text-align: center;
    text-transform: uppercase;

    color: #e51d2e;
    background: #ffffff;
    
    cursor: pointer;
}