@charset "utf-8";
@import url('../assets/google-fonts.css');
/* CSS Document */
html, body, main, footer {
    font-size: 0.8vw;
	font-family: 'Yantramanav', sans-serif;
}

/* Custom headers*/
h1, h2, h3, h4, h5, h6, label,
.h1, .h2, .h3, .h4, .h5, .h6,
.nav-link {
	font-family: 'Blinker', sans-serif;
}
.nav-item, 
.nav-link {
	font-weight: 400;
}
.nav-link .active {
	font-weight: 500;
}
label {
	font-weight: 500;
}
div, p, span, a {
	
}
input, texarea {
	font-family: 'Roboto', sans-serif;
}

/* CUSTOM colours*/
.gray {
	color: rgba(174,174,174,1.00);
}
.pink {
	color: rgba(233,16,232,1.00);
}
.orange {
	color: rgba(240,83,35,1.0);
}

.footer {
    /*width: 99%;*/
    /*height: 60px; /* Set the fixed height of the footer here */
    /*line-height: 60px; /* Vertically center the text there */
    /*background-color: #e5e5e5;*/
    font-size: smaller;
	margin-left: 1%;
	margin-right: 1%;
}

#pwindicator {
    margin-top: 4px;
    width: 100%;
}

.bar {
    height: 4px;
}

.pw-very-weak .bar {
    background: #d00;
    width: 20%;
}

.pw-very-weak .label {
    color: #d00;
}

.pw-weak .bar {
    background: #d00;
    width: 40%;
}

.pw-weak .label {
    color: #d00;
}

.pw-mediocre .bar {
    background: #9A8F04;
    width: 50%;
}

.pw-mediocre .label {
    color: #9A8F04;
}

.pw-strong .bar {
    background: #f3b31a;
    width: 80%;
}

.pw-strong .label {
    color: #f3b31a;
}

.pw-very-strong .bar {
    background: #0d0;
    width: 100%;
}

.pw-very-strong .label {
    color: #0d0;
}

/* ICONS */
/* Rules for sizing the icon. */

.material-icons.md-18 { font-size: 0.75em; }
.material-icons { font-size: 1em; }
.material-icons.md-36 { font-size: 1.25em; }
.material-icons.md-48 { font-size: 1.5em; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }


/* Multi level drop down menu 2021-03-15 */
@media (min-width: 992px) {
	.dropdown-menu .dropdown-toggle:after {
		border-top: .3em solid transparent;
	    border-right: 0;
	    border-bottom: .3em solid transparent;
	    border-left: .3em solid;
	}
	.dropdown-menu .dropdown-menu {
		margin-left:0; margin-right: 0;
	}
	.dropdown-menu li {
		position: relative;
	}
	.nav-item .submenu { 
		display: none;
		position: absolute;
		left:100%; 
        top:-7px;
	}
	.nav-item .submenu-left { 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover{ 
        background-color: #f1f1f1 
    }
	.dropdown-menu > li:hover > .submenu {
		display: block;
	}
} 

/* Sortable jQuery UI 2021-03-13 */
#sortable { 
	/*list-style-type: none; 
	margin: 0; 
	padding: 0; 
	width: 60%;*/ 
}
#sortable div { 
	/*margin: 0 3px 3px 3px; 
	padding: 0.4em; 
	padding-left: 1.5em; 
	font-size: 1.4em; 
	height: 18px; */
}
#sortable div span { 
	/*position: absolute; 
	margin-left: -1.3em;*/ 
}

@keyframes glow {
	50% {
		opacity: 0;		
	}
}
.glowing {
	animation: glow 1300ms infinite;
}