/* ==============================================

Template: 404 Rabbit
Version: 1.0
Author:	Ukieweb

 - General setting
 - Button
 - Wrapper
 - Rabbit
 - Info
 - Animationload
 - Animated setting

================================================ */


/* ------------------
    General setting
-------------------- */
*{
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    font-weight: 300;
}
html{
    height: 100%;
}
body{
    position: relative;
    height: 100%;
    background-color: #7487cf;
}

h1, h2, h3, h4, h5, h6{
    color: #ffffff;
}

p{
    font-weight: 300;
}

img{
    background-size: auto;
}

.error{
    border-color: red !important;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #ffffff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #ffffff;
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #ffffff;
    opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #ffffff;
}

.container{
    position: relative;
}

/* ------------------
    Button
-------------------- */
.btn{
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border: 0px solid;
    border-bottom: 2px solid;
    border-color: #0099d2;
    padding: 10px 41px;
    border-radius: 5px;
    background: none;
    text-transform: uppercase;
    display: inline-block;
    margin: 10px 20px 10px 0;
    background-color: #00b6f9;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}
.btn:hover{
    background: #0099d2;
    color: #ffffff;
    text-decoration: none;
}
.btn-brown{
    border-color: #4b0ea8;
    background-color: #5e13d2;
}
.btn-brown:hover{
    background: #4b0ea8;
}

/* ------------------
    Wrapper
-------------------- */
#wrapper{
    min-height: 100%;
    height: 100%;
    width: 100%;
}

/* ------------------
    Info
--------------------*/
.info{
    position: relative;
    z-index: 999;
    margin-bottom: 60px;
}

.info h1{
    font-size: 102px;
    font-weight: 700;
    line-height: 105px;
    color: #fdfd73;
    text-transform: uppercase;
}

.info h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 48px;
    color: #ffffff;
    text-transform: uppercase;
}

.info p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #ffffff;
    margin: 15px 0;
}

/* ------------------
    Rabbit
--------------------*/
.rabbit{
    background-image: url("../img/rabbit.png");
    background-repeat: no-repeat;
    width: 608px;
    height: 668px;
    margin: 212px auto 0;
    position: relative;
}
.carrot{
    background-image: url("../img/carrot.png");
    background-repeat: no-repeat;
    width: 533px;
    height: 499px;
    position: absolute;
    top: -168px;
    left: 45px;
    -moz-animation: 1s ease 0s linear none infinite carrot;
    -moz-transform-origin: 50% 50%;
    -webkit-animation:carrot 2s infinite linear;
    -webkit-transform-origin: 50% 50%;
    -o-animation: 1s ease 0s linear none infinite carrot;
    -o-animation:carrot 1s infinite linear;
    -o-transform-origin: 50% 50%;
    -ms-animation: 1s ease 0s linear none infinite carrot;
    -ms-animation:carrot 1s infinite linear;
    -ms-transform-origin: 50% 50%;
    animation: 1s ease 0s linear none infinite carrot;
    animation:carrot 1s infinite linear;
    transform-origin: 50% 50%;
}
@-moz-keyframes carrot {
    0%{-moz-transform:rotate(0deg)}
    50%{-moz-transform:rotate(180deg)}
    100%{-moz-transform:rotate(360deg)}
}
@-webkit-keyframes carrot {
    0%{-webkit-transform:rotate(0deg)}
    50%{-webkit-transform:rotate(180deg)}
    100%{-webkit-transform:rotate(360deg)}
}
@-o-keyframes carrot {
    0%{-o-transform:rotate(0deg)}
    50%{-o-transform:rotate(180deg)}
    100%{-o-transform:rotate(360deg)}
}
@-ms-keyframes carrot {
    0%{-ms-transform:rotate(0deg)}
    50%{-ms-transform:rotate(180deg)}
    100%{-ms-transform:rotate(360deg)}
}
@keyframes carrot {
    0%{transform:rotate(0deg)}
    50%{transform:rotate(180deg)}
    100%{transform:rotate(360deg)}
}

/* ------------------
    Animationload
--------------------*/
.animationload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999999;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    width: 200px;
    height: 200px;
    background-image: url("../img/ajax-loader.gif");
    background-position: center;
    background-repeat: no-repeat;
}
