/**
 * Created by PhpStorm.
 * User: larsdepauw
 * Date: 05/12/2019
 * Description: CSS stylesheet of header, must be included in every displayed file
 */

/* header css */

.header {
    background-color: #00407A;
    width: 100%;
    height: 70px;
    position: relative;
    top: 0px;
	border-bottom-width: 3px;
	border-bottom-color: #52BDEC;
	border-bottom-style: solid;
}

.headerlogo {
    overflow: hidden;
    background-color: #00407A;
    margin-left: 10%;
    z-index: 5;
	position: absolute;
}

.header img {
    max-height: 50px;
    z-index: 5;
	margin-top: 10px;
}

.headertitle {
    color: white;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 27px;
    z-index: 3;
}

.headertitle h1 {
    margin: 0 auto;
    font-size: 130%;
}

.account_info {
    display: block;
    float: right;
    margin: 0;
    margin-right: 10%;
}

.account_info button {
    background-color: #00407A;
    padding: 0px;
    margin: 0px;
    border: none;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
	height: 70px;
	position: relative;
}

.account_info .dropdown .dropdown-content {
    background-color: #00407A;
    overflow: visible;
    z-index: 40;
    padding: 0px;
    margin: 0px;
    height: auto;
    border-radius: 2px;
}

.header .account_info .dropdown button a {
    position: relative;
    top: -20px;
    padding: 10px;
    color: white;
}

.account_info .dropdown-content button {
    margin: 0px;
    padding: 5px;
    color: black;
    background-color: white;
    display: block;
	height: 40px;
}

.account_info a {
    display: inline-block;
}



@media screen and (max-width: 600px) {

	.header {
		height: 50px;
	}
	

    
	.headerlogo {
		overflow: hidden;
		background-color: #00407A;
		margin-left: 10px;
		z-index: 5;
		position: absolute;
		width: 100px;
	}

	.header img {		
		z-index: 5;
		margin-top: 5px;
		width: 100px;
	}
	
    #account_info_header {
        display: none;
    }

    .header .account_info .dropdown #account_dropbtn {
        position: relative;
        top: 0;
    }
    
	.headertitle {
		color: white;
		margin-left: auto;
		margin-right: auto;
		position: absolute;
		width: 100%;
		text-align: center;
		top: 15px;
		z-index: 3;
	}

	.headertitle h1 {
		margin: 0 auto;
		font-size: 130%;
	}

}

