body {
    background-color: #fff;
}
a {
    color: inherit;
}
.col {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
small, .small {
    font-size: 85%;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    border: 0px;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    min-width: 350px;
    min-height: 64px;
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    background-color: #ffe512;
    color : #000;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
.btn:hover {
    background-color: #000;
    color : #ffe512;
}
.btn.black {
    background-color: #000;
    color : #ffe512;
}
.btn.black:hover {
    background-color: #ffe512;
    color : #000;
}
.btn.black-icon {
    background-color: #000;
    color : #fff;
    padding: 0px;
    justify-content: left;
}
.btn.black-icon .icon {
    color: #ffe512;
    font-size: 280%;
    font-weight: 400;
    line-height: 100%;
    margin-left: 15px;
    margin-right: 15px;
    vertical-align: middle;
}
.btn.black-icon:hover {
    background-color: #f2f2f2;
    color: inherit;
}
button[type=submit] {
    font-size: 28px;
}
.trad {
    width: 100%;
    text-align: right;
    padding-right: 5%;
    font-size: 11px;
    opacity: 0.8;
}
h1 {
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
}
img.win {
    width: 24.72vw;
    height: auto;
    min-width: 250px;
}
.form-group {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.form-control {
    max-width: 700px;
    margin: auto;
    font-family: 'Overpass';
    font-size: 20px;
    font-weight: 700;
    color: #000;
    border-width: 2px;
    border-color: #f2f2f2;
    background-color: #f2f2f2;
}
.form-control::placeholder {
    color: #000;
}
.form-control:focus {
    color: #495057;
    background-color: #f2f2f2;
    border-color: #ffe512;
    outline: 0;
    box-shadow: none;
}
.form-group.checkbox {
    display: flex;
    flex-direction: row;
}
input[type=checkbox] {
    display: inline-flex;
    width: auto;
    height: auto;
    margin: 5px 10px 0px 0px;
    outline: 1px solid #000;
}
.form-group.checkbox label {
    text-align: left;
}
button[type=submit].pending {
    cursor: wait;
    pointer-events: none;
    opacity: 0.5;
}
#app header img,
#app footer img {
    width: 100%;
    height: auto;
}
#app main {
    font-family: 'Overpass';
    font-size: 16px;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
}
#app #contribution .content.success {
    display: none;
}
#app #contribution.success .content {
    display: none;
}
#app #contribution.success .content.success {
    display: block;
}
form #contribution-file {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
form #contribution-file .custom-file-input {
    height: 200%;
    top: -100%;
    cursor: pointer;
    z-index: 1;
}
form #contribution-file .label,
form #contribution-file .cancel,
form #contribution-file .progressbar {
    position: absolute;
    top: 0px;
}
form #contribution-file .label,
form #contribution-file .cancel {
    height: 100%;
}
form #contribution-file .label {
    display: flex;
    z-index: 2;
    pointer-events: none;
}
form #contribution-file .progressbar {
    display: none;
    width: 0px;
    height: 100%;
    background-color: #ffe512;
    z-index: 3;
    pointer-events: none;
}
form #contribution-file .cancel {
    display: none;
    z-index: 4;
}
form #contribution-file .icon {
    display: inline-flex;
    height: 100%;
    width: auto;
    align-items: center;
}
form #contribution-file .icon img {
    height: 40%;
    width: auto;
}
form #contribution-file .text {
    display: inline-flex;
    align-items: center;
    padding-top: 5px;
}
form #contribution-file .cancel .text {
    color: #000;
}
footer {
    display: flex;
}

@media(max-width: 400px) {
    .btn {
        min-width: 100%;
    }
}