/* Universal Classes */

	/* Add to Element to Hide */
	.hidden {
		display: none;
	}

	/* This prevents Table Column that are used to sort the table do not have an underline below them */
    .sortbyme {
        text-decoration: none;
    }

	/* Applied to any p element and makes it small */
    .fineprint {
        font-size: 0.5em;
    }
	
	/* Apply to Open Iconic Icons to Reduce Size */
    .oi-small {
        font-size: 0.7em;
    }

	/* Used in Page Footer to make Copyright Statement Small */
	.copyright {
		font-size: 0.6rem;	
	}

/* End Universal Classes */

/* Boostrap Class Overrides */

	/* Override Navbar Brand Text */
	.navbar-brand {
		font-family: milkshake;
	}

	/* This section allows centering the Modals in the exact center of the windows */
	.modal-center {
	  text-align: center;
	  padding: 0!important;
	}

	.modal-center:before {
	  content: '';
	  display: inline-block;
	  height: 100%;
	  vertical-align: middle;
	  margin-right: -4px;
	}

	.modal-dialog-center {
	  display: inline-block;
	  text-align: left;
	  vertical-align: middle;
	}
	/* End This section allow centering the Modals in the exact center of the windows */

	/* Center the Div in the middle of the viewport (Used to Center Login Prompts) */
	.center-screen {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
	  min-height: 100vh;
	}
	/* End Center the Div in the middle of the viewport (Used to Center Login Prompts) */
	
	/* Used to apply a drop shadow, Used on Login Box */
	.ui-dropshadow {
		box-shadow: 0px 0px 20px #545b62;
	}

/* End Boostrap Class Overrides */