@import "variables";
@import "functions";
@import "mixins";

a:link,a:active,a:hover,a:visited {
	text-decoration: none !important;
	outline: none !important;
}

.bg-blue {
	background-color: #4A4DA2 !important;
}

.bg-light-gray {
	background-color: #F5F5F5 !important;
}
.margin-0-auto {
	margin: 0 auto;
}
/******************* notification css *******************/

.pw-notification {
    background-color: rgb(49,55,61);
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    z-index: 1000;
    transition: 0.4s;
    width: 112px;
    height: 64px;

    &.pw-err {
	    background-color: @theme-color !important;
		
		.pw-notification-icon {
		    background-color: #ee8787 !important;
		}
	}
	.pw-notification-icon {
	    background-color: rgb(39,44,48);
	    bottom: 0;
	    display: inline-block;
	    height: 64px;
	    left: 0;
	    position: fixed;
	    width: 64px;
	    padding: 16px;
	}
	.pw-notification-text {
	    font-family: @font-pt;
	    color: #F3F3F3;
	    height: 64px;
	    left: 64px;
	    line-height: 32px;
	    padding: 15px;
	    position: relative;
	    display: inline-block;
	    font-size: 15px;

	    .sub-text {
		    text-shadow: 0 0 4px #FFF;
		    color: #444444;
		    font-size: 12px;
		}
	}
	.pw-icon-cross {
	    font-family: @font-pt;
	    color: #FFFFFF;
	    cursor: pointer;
	    position: absolute;
	    right: 15px;
	    text-align: right;
	    top: 15px;
	    font-size: 25px;
	    line-height: 32px;

		&:hover {
		    color: #555555;
		}
	}
}
/******************* end notification css *******************/

.heading {
	.font(@font-pt, 400, 36px, #2A3562);
	line-height: 36px;
}
.sub-heading {
	margin-top:16px;
	.font(@font-pt, 400, 20px, #2A3562);
}
.pa-mark {
	background-color: #D9D721;
	padding: 4px 8px;
	border-radius: 3px;
	color: #FFFFFF;
}
.pad-tb-128 {
	padding-top:128px;
	padding-bottom: 128px;
}

.pad-tb-80 {
	padding-top:80px;
	padding-bottom: 80px;
}

.margin-btm-15 {
	margin-bottom: 15px;
}
.margin-top-36 {
	margin-top: 36px;
}
.margin-top-120 {
	margin-top: 120px;
}
.vertical-middle {
	vertical-align: middle;
}

input, textarea {
	box-shadow: none !important;
	border-radius: 0 !important;
	border-color: #555555 !important;
	color: #BBBBBB !important;

	&:focus {
		border-color: #424594 !important;
	}
}

button {
	box-shadow: none !important;
	border-radius: 0 !important;
	outline: none !important;
}

.no-left-pad {
	padding-left: 0 !important;
}

.btn-yellow {
	font-family: @font-pt;
	font-size: 20px !important;
	color: #2A3562;
	background-color: #FFCC00 !important;
	width: 130px;
	height: 45px;
}
.btn-green {
	background-color: #73C759 !important;
	font-family: @font-pt;
	font-size: 20px !important;
	color: #FFFFFF;
	width: 132px;
}

header {
	position: fixed;
	z-index: 1000;
	top:0;
	padding-top: 20px;
	padding-bottom:20px;
	border-bottom: 1px solid #424594;
	.menu {
		a {
			padding:0 15px !important;
			border-left: 2px solid transparent;
			border-right: 2px solid transparent;
			.font(@font-pt, 400, 18px, #FFFFFF);

			&:hover {
				color: #FFCC00;
				background-color: transparent !important;
			}
			&:visited {
				background-color: transparent !important;
			}
			&:focus {				
				background-color: transparent !important;
			}
		}

		li.active > a {
			background: transparent !important;
			color: #FFCC00;
			border-left: 2px solid #FFF;
			border-right: 2px solid #FFF;
		}
	}

	&.box-shadow {
		//.box-shadow(0px, 0px, 5px, 0px, #888888);
	}
}

#home {
	padding-top: 88px;
	.heading {
		.font(@font-pt, 400, 40px, #0FFFF7);
	}

	form {
		margin-top: 42px;
	}
}

::-moz-placeholder{
	font-family : @font-pt;
	font-weight : 400 !important ;
	font-size : 20px !important ;
	color : #BBBBBB !important;
}
::-ms-placeholder {
	font-family : @font-pt;
	font-weight : 400 !important ;
	font-size : 20px !important ;
	color : #BBBBBB !important;
}
::-webkit-placeholder {
	font-family : @font-pt;
	font-weight : 400 !important ;
	font-size : 20px !important ;
	color : #BBBBBB !important;
}


footer {
	background-color: #333333;
	padding-top: 16px;
	padding-bottom: 16px;
	.font(@font-pt, 400, 16px, #FFFFFF);
	
	a:hover	{
		color:#FFCC00;
	}
}

.color-white {
	color: white;
}

textarea {
	font-size: 18px !important;
}

@media (max-width: 768px) {
	.navbar-toggle {
		margin: 0px !important;
	}
	.menu {
		#navbar {
			margin-top: 15px;			
		}		
		&.pull-right{
			float: unset !important;
		}
		a {
			border: none !important;
			margin-top: 5px;
			margin-bottom: 5px;
		}
	}
}