/*

	CSS for KCS Portal
	Copyright 2021
	Robbie Rae Solis Dela Cruz

*/

/*~Page Header Main Style~*/

	.page-header{ /*page header frame/holder*/
		top: 0px;
		left: 0;
		padding: 0;
		color: #06417b;
		position: fixed;
		width: 100%;
		height: auto;
	}
	
	.page-header-top{ /*page header white portion*/
		height: 130px;
		font-size: 9px;
		background-color: #FFFFFF;
		border-bottom-color: #BBBBBB;
		border-bottom-style: solid;
		border-bottom-width: 2px;
	}
	
	.page-header-bottom{ /*page header blue portion*/
		height: 60px;
		font-size: 14px;
		color: #FFFFFF;
		background-color: #06417b;
		border-top-color: #fb0301;
		border-top-style: solid;
		border-top-width: 10px;
	}
	
	.page-header-logo-frame{ /*page header logo frame*/
		background: #fb0301;
		width: 85px;
		height: 85px;
		-moz-border-radius: 50%;
		border-radius: 50%;
		position: absolute;
		cursor: pointer;
	}
	
	.page-header-logo{ /*page header logo image*/
		-moz-border-radius: 50%;
		border-radius: 50%;
		position: absolute;
		cursor: pointer;
		padding: 5px;
		padding-top: 5px;
	}
	
	.page-header-top-content{ /*page header menu - white portion*/
		height: 30px;
	}
	
	.page-header-top-menu{ /*page header menu - white portion*/
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.page-header-top-menu:hover{ /*page header menu - white portion*/
		cursor: pointer;
		background-color: #EFEFEF;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
	
	.page-header-bottom-content{ /*page header menu - blue portion*/
		height: 50px;
	}
	
	.page-header-menu{ /*page header menu - blue portion*/
		padding: 5px;
		cursor: pointer;
	}
	
	.page-header-menu:hover{ /*page header menu - blue portion*/
		background-color: #29537c;
		-moz-border-radius: 50%;
		border-radius: 50%;
		cursor: pointer;
	}
	
	.page-header-bottom-menu{ /*page header menu - blue portion*/
		padding-top: 7px;
		padding-bottom: 7px;
		padding-left: 20px;
		padding-right: 20px;
		position: relative;
		font-size: 15px;
	}
	
	.page-header-bottom-menu:hover{ /*page header menu - blue portion*/
		cursor: pointer;
		background-color: #20507f;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	
	.page-header-bottom-submenu-holder{ /*page header menu - blue portion*/
		position: absolute;
		display: none;
		margin-left: -20px;
		margin-top: -7px;
	}
	
	.page-header-bottom-submenu-tail{ /*page header menu - blue portion*/
		width: 0px;
		height: 0px;
		position: absolute;
		margin-left: 10px;
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		border-bottom: 20px solid #20507f;
	}
	
	.page-header-bottom-submenu-body{ /*page header menu - blue portion*/
		background-color: #20507f;
		width: 150px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		font-size: 13px;
	}
	
	.page-header-bottom-submenu{ /*page header menu - blue portion*/
		padding-top: 7px;
		padding-bottom: 7px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.page-header-bottom-submenu:hover{ /*page header menu - blue portion*/
		cursor: pointer;
		background-color: #406990;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	
	.page-header-content-desktop{ /*desktop header frame*/
		display: block;
	}
	
	.page-desktop-close{ /*close button*/
		display: none;
	}
	
	.page-header-content-tablet{ /*tablet header frame*/
		display: none;
	}
	
	.page-tablet-close{ /*close button*/
		display: none;
	}
	
	.page-header-content-mobile{ /*mobile header frame*/
		display: none;
	}
	
	.page-mobile-close{ /*close button*/
		display: none;
	}
	
	.page-header-search{ /*header search field*/
		display: none;
		width: 30%;
		height: 30px;
		color: #333333;
		background-color: #FFFFFF;
		box-sizing: border-box;
		border: 0px;
		border-color: #06417b;
		border-style: solid;
		border-width: 0px;
		background-image: url('../image/icon-blue/search-blue.png');
		background-size: 19px 19px;
	    background-position: 5px 5px;
	    background-repeat: no-repeat;
	    padding-left: 30px;
		font-size: 13px;
		
		-moz-border-radius: 7px;
		border-radius: 7px;
	}
	
	.page-header-padding{
		padding: 5px;
	}
	
	.page-padding-top{
		height: 125px;
	}
	
	.page-padding-top{
		height: 115px;
	}
	
/*~Page Header Media Response~*/

	@media all and (min-width: 1321px) { /*for desktop response*/
		.page-header-content-desktop{
			display: block;
		}
		
		.page-header-content-tablet{
			display: none;
		}
	
		.page-header-content-mobile{
			display: none;
		}
		
		.page-header-search{
			display: none;
			width: 100%;
		}
		
		.page-header-bottom{ /*page header blue portion*/
    		font-size: 14px;
    	}
    	
    	.page-header-bottom-menu{ /*page header menu - blue portion*/
    		font-size: 14px;
    	}
    	
    	.page-header-bottom-submenu-body{ /*page header menu - blue portion*/
    		font-size: 13px;
    	}
	}
	
	@media all and (min-width: 1221px) and (max-width: 1320px) { /*for laptop response*/
		.page-header-content-desktop{
			display: block;
		}
		
		.page-header-content-tablet{
			display: none;
		}
	
		.page-header-content-mobile{
			display: none;
		}
		
		.page-header-search{
			display: none;
			width: 100%;
		}
		
		.page-header-bottom{ /*page header blue portion*/
    		font-size: 12px;
    	}
    	
    	.page-header-bottom-menu{ /*page header menu - blue portion*/
    		font-size: 12px;
    	}
    	
    	.page-header-bottom-submenu-body{ /*page header menu - blue portion*/
    		font-size: 11px;
    	}
	}
	
	@media all and (min-width: 541px) and (max-width: 1220px) { /*for tablet response*/
		.page-header-content-desktop{
			display: none;
		}
		
		.page-header-content-tablet{
			display: block;
		}
	
		.page-header-content-mobile{
			display: none;
		}
		
		.page-header-search{
			display: block;
			width: 40%;
		}
		
		.page-header-bottom{ /*page header blue portion*/
    		font-size: 10px;
    	}
    	
    	.page-header-bottom-menu{ /*page header menu - blue portion*/
    		font-size: 10px;
    	}
    	
    	.page-header-bottom-submenu-body{ /*page header menu - blue portion*/
    		font-size: 10px;
    	}
	}
	
	@media all and (max-width: 540px) { /*for mobile response*/
		.page-header-content-desktop{
			display: none;
		}
		
		.page-header-content-tablet{
			display: none;
		}
	
		.page-header-content-mobile{
			display: block;
		}
		
		.page-header-search{
			display: block;
			width: 50%;
		}
		
		.page-header-bottom{ /*page header blue portion*/
    		font-size: 10px;
    	}
    	
    	.page-header-bottom-menu{ /*page header menu - blue portion*/
    		font-size: 10px;
    	}
    	
    	.page-header-bottom-submenu-body{ /*page header menu - blue portion*/
    		font-size: 10px;
    	}
	}