﻿html {
}

body {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, .0)), url(https://images.ctfassets.net/wvozpes63uc8/3r2HxoLc7yulCiFl5ugjRg/0d4c05c22e877bca637aa735ea8bdb32/charity-water-social-preview.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    /*background: url(https://images.ctfassets.net/wvozpes63uc8/3r2HxoLc7yulCiFl5ugjRg/0d4c05c22e877bca637aa735ea8bdb32/charity-water-social-preview.jpeg) no-repeat center center fixed;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%
}

body, html {
    height: 100%;
}

.jumbotron {
    background-color: #FFF;
}

.form-container {
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 6px 6px 8px 0px;
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
}

.form-header {
    background-color: #000;
    color: #FFF;
    padding: 18px;
    padding-left: 23px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.form-body {
    padding: 22px;
    position: relative;
}

.input {
    /*appearance: none;*/
    width: 100%;
    min-width: 40px;
    height: 46px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 18px;
    padding-left: 13px;
    border: 1px solid rgb(196, 196, 196);
    margin-bottom: 15px;
}


.input[type=checkbox] {
    height: 20px;
    width: 20px;
}

.textbox {
    /*appearance: none;*/
    width: 100%;
    height: 46px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 18px;
    padding-left: 13px;
    border: 1px solid rgb(196, 196, 196);
    margin-bottom: 15px;
}

.field-validation-error {
    color: #dc3545;
    font-size: 15px;
    margin-top: -15px;
    padding-bottom: 10px;
    display: block;
}

.colored-btn {
    width: 100%;
    min-width: 40px;
    border-radius: 4px;
    padding: 10px;
    font-size: 18px;
    border: 1px solid rgb(196, 196, 196);
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    cursor: pointer;
    background-color: #FFF;
    color: #000;
    /*box-shadow: 0 1px 0 0 rgb(196, 196, 196);*/
    overflow: clip;
}

.colored-btn:hover, .colored-btn-select:hover {
    border: 2px solid #199A57;
    padding: 9px;
}


/* --- Other amount ---- */

.other-amount-container {
    width: 100%;
    min-width: 40px;
    border-radius: 4px;
    padding: 1px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #199A57;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    background-color: #FFF;
    color: #000;
    overflow: clip;
    display: none;
}

.other-amount-container .prefix, .other-amount-container input {
    font-size: 18px;
    font-weight: bold;
    color: #29A163;
}

.other-amount-container input {
    flex-grow: 1;
    background: #fff;
    border: none;
    outline: none;
    padding: 0.5rem;
}


.colored-btn-select {
    color: #29A163;
    border: 2px solid #199A57;
    padding: 9px;
    background-color: #F3FAF6;
}

.sub-title {
    font-size: 75%;
    color: #999999;
    margin: 0;
    margin-bottom: 3px;
}

#logo-container {
    position: fixed;
    left: 30px;
    top: 30px;
}

.loading-overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    /*dim the background*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1.5s linear infinite; /* Safari */
    animation: spin 1.5s linear infinite;
}

.highlighted-text {
    color: #FFF;
    font-size: 26px;
    background-color: #000;
    display: inline;
    padding: 3px;
    line-height: 46px;
}


/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
