/* Position banner */

#donate-banner {
    position: relative;
    margin: 0 auto;
    max-width: 986px;
    padding: 1em 2em;
    display: block;
    font-family: "Source Sans Pro Regular", sans-serif;
    background-color: white;
}

/* Hide all translations of the banner by default */

body .donate-de,
body .donate-es,
body .donate-fr,
body .donate-it,
body .donate-pt,
body .donate-ru {
    display: none;
}

/* Hide the English banner for all other languages

   This way, the English banner is still displayed when the PO plugin is
   disabled. This is useful for development.
   */

body.de .donate-en,
body.es .donate-en,
body.fr .donate-en,
body.it .donate-en,
body.pt .donate-en,
body.ru .donate-en {
    display: none;
}

/* Show the banner corresponding to the current language */

body.de .donate-de,
body.es .donate-es,
body.fr .donate-fr,
body.it .donate-it,
body.pt .donate-pt,
body.ru .donate-ru {
    display: block !important;
}

/* Style for 2020 */

/* /!\ Always check the style on pages with Bootstrap like /index /!\ */

#donate-banner {
    background-color: #ffd500;
    background-image: url(banner/godzilla.png), url(banner/city.png);
    background-repeat: no-repeat;
    background-size: 450px, 250px;
    background-position: -80px -70px, right bottom;
    padding-left: 200px;
}

#donate-banner:hover {
    text-decoration: none;
}

#donate-banner p {
    margin: 0 !important;
    line-height: 1em;
    font-size: 20px;
    color: black;
}

#donate-banner .first {
    margin-bottom: 0.2em !important;
}

#donate-banner .second {
    font-weight: bold;
}

#donate-banner .second u {
    text-decoration: none;
    border-bottom: 2px solid black;
}

@media (max-width: 986px) {
#donate-banner {
    background-size: 330px, 175px;
    background-position: -60px -40px, right bottom;
    padding-left: 150px;
    padding-bottom: 1.5em;
}
#donate-banner p {
    font-size: 16px;
    line-height: 1.25em;
}
}

@media (max-width: 270px) {
#donate-banner {
    background-size: 210px, 175px;
    background-position: -30px bottom, right bottom;
    padding-left: 100px;
}
}
