/**
 * Donate buttons
 */
.donate-wrapper {
    display: inline-block;
    position: relative;
}
.button.donate {
    background-color: #ff7e14;
    border-color: #fa7100;
    transition: all 0.2s ease;
    z-index: 99;
    position: relative;
}
a.donate-option {
    /*display: none;*/
    background-color: #FF7E14;
    color: #fff;
    text-align: center;
    margin-top: 4px;
    padding: 12px 13px;
    position: absolute;
    width: 183px;
    top: -8px;
    left: 0px;
    z-index: 1;
    transition: all 0.4s ease;
    text-decoration: none;
    border-top: 10px solid #1B0E0B;
}
.donate-option:hover {
    background-color: #0D7966;
    color: #fff;
}
.donate-wrapper:hover a:nth-child(2) {
    display: block;
    top: 40px;
}
.donate-wrapper:hover a:nth-child(3) {
    display: block;
    top: 88px;
}

.container .button.donate i {
    position: relative;
    left: -8px;
}
.container .button.donate {
    width: 200px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .donate-wrapper a.donate-option {
        display: none;
    }
    .donate-wrapper:hover a:nth-child(2) {
        display: none;
    }
    .donate-wrapper:hover a:nth-child(3) {
        display: none;
    }
    .searchbox {
        height: 41px;
    }
    .searchbox-submit {
        height: 41px;
    }
    input[type="search"] {
        height: 41px;
    }
    .fa-search {
        top: 10px;
    }
}
