/* Copyright (C) nebla Ltd. 2017 */

#header {
    position: absolute;
    margin: 0 auto;
    margin-left: -15px;
    max-width: 1750px;
    width: 100%;
    height: 45px;
    margin-top: 55px;
    padding-left: 6px;
    padding-right: 6px;
}

#logo {
    float: left;
    margin-top: 12px;
    margin-left: 30px;
    width: 135px;
    height: 45px;
    background: url("../resources/vectors/logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

#navigation {
    position: absolute;
    right: 20px;
    height: 45px;
    bottom: 0;
    margin-top: -10px;
    font-size: 16px;
}

#mobile-navigation {
    display: none;
}

#mobile-navigation i {
    margin-top: 15px;
    color: #FFFFFF;
    font-size: 32px;
}

#navigation h1 {
    float: left;
    margin-top: 20px;
    margin-right: 34px;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
}

#login-button {
    float: left;
    margin-top: -20px;
    margin-left: -15px;
    width: 155px;
    height: 95px;
    background: url("../resources/vectors/login-button.svg");
    background-repeat: no-repeat;
    background-size: 180px;
    background-position: top;
}

#login-button-hitbox {
    margin-left: 17px;
    margin-top: 30px;
    width: 120px;
    height: 45px;
    cursor: pointer;
}

/*------- Small Height -------*/

@media only screen and (min-width : 1200px) and (max-height : 975px) {
    #header {
        margin-top: 15px;
    }
}

/*---------- Mobile ----------*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    
    #header {
        margin-top: 0px;
    }
    
    #logo {
        margin-left: 10px;
        width: 115px;
        height: 35px;
    }
    
    #navigation h1 {
        font-size: 14px;
    }
    
    #login-button {
        margin-top: -9px;
        margin-left: -20px;
        margin-right: -20px;
        width: 122px;
        height: 85px;
        background-size: 135px;
    }

    #login-button-hitbox {
        margin-left: 15px;
        margin-top: 21px;
        width: 95px;
        height: 35px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

    #desktop-navigation {
        display: none;
    }
    
    #mobile-navigation {
        display: block;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}

/* Copyright (C) nebla Ltd. 2017 */