/**************************************************

    Black color scheme

**************************************************/

/*
    Body
==============================*/

body {
    color: #fff;

    background-color: #2c2c2c;
    background-image: url(../img/background-black.png);
}


/*
    Text selection
==============================*/

::selection {
    background: #fff;
    color: #000;
}

::-moz-selection {
    background: #fff;
    color: #000;
}


/*
    Subscription form
==============================*/

.subscribe-email:focus {
    -webkit-box-shadow: 0 0 8px #fff;
    -moz-box-shadow: 0 0 8px #fff;
    box-shadow: 0 0 8px #fff;
}

.subscribe-email::-webkit-input-placeholder  { color: #151515 }
.subscribe-email:-moz-placeholder { color: #151515 }
.subscribe-email::placeholder { color: #151515 }

.subscribe-submit {
    background: #151515;
    color: #fff;
}

.subscribe-submit:hover {
    background: #000;
}

.subscribe-submit:active {
    -webkit-box-shadow: 0 0 8px #000;
    -moz-box-shadow: 0 0 8px #000;
    box-shadow: 0 0 8px #000;
}

.subscribe-tooltip.success {
    background: #0a0;
}

.subscribe-tooltip.error {
    background: #a00;
}


/*
    Countdown
==============================*/

.countdown-number {
    background: #fff;
    color: #000;
}