/* DOING A THING HERE */

.shadow{
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	border-radius: 5px;
	background-color: white;
}

.bShadow {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 18px, rgba(0, 0, 0, 0.23) 0px 0px 18px;
    border-radius: 5px;
    background-color: white;
    animation: glow 1s ease-in-out infinite alternate;
}

/* ROW */
.row{
	display: flex;
	flex-direction: row;
}

.wrapRow{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

/* COLUMNS */

.col{
	display: flex;
	flex-direction: column;
	width: auto;
}
.col5{
	display: flex;
	flex-direction: column;
	width: 5%;
}
.col10{
	display: flex;
	flex-direction: column;
	width: 10%;
}
.col15{
	display: flex;
	flex-direction: column;
	width: 15%;
}
.col20{
	display: flex;
	flex-direction: column;
	width: 20%;
}
.col25{
	display: flex;
	flex-direction: column;
	width: 25%;
}
.col30{
	display: flex;
	flex-direction: column;
	width: 30%;
}
.col33{
	display: flex;
	flex-direction: column;
	width: 33%;
}
.col40{
	display: flex;
	flex-direction: column;
	width: 40%;
}
.col50{
	display: flex;
	flex-direction: column;
	width: 50%;
}
.col60{
	display: flex;
	flex-direction: column;
	width: 60%;
}
.col70{
	display: flex;
	flex-direction: column;
	width: 70%;
}
.col75{
	display: flex;
	flex-direction: column;
	width: 75%;
}
.col80{
	display: flex;
	flex-direction: column;
	width: 80%;
}
.col90{
	display: flex;
	flex-direction: column;
	width: 90%;
}
.col100{
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* MARGINS */
.m5{
	margin: 5px;
}
.m10{
	margin: 10px;
}
.m15{
	margin: 15px;
}
.m20{
	margin: 20px;
}
.ml2{
	margin-left: 2px;
}
.ml5{
	margin-left: 5px;
}
.ml10{
	margin-left: 10px;
}

.ml20{
	margin-left: 20px;
}
.mr2{
	margin-right: 2px;
}
.mr5{
	margin-right: 5px;
}

.mr10{
	margin-right: 10px;
}

.mr20{
	margin-right: 20px;
}

.mr40{
	margin-right: 40px;
}

.mb5{
	margin-bottom: 5px;
}

.mb10{
	margin-bottom: 10px;
}


.mtauto{
	margin-top: auto;
}

.mt5{
	margin-top: 5px;
}

.mt10{
	margin-top: 10px;
}

.mt20{
	margin-top: 20px;
}

.mt40{
	margin-top: 40px;
}

.mt60{
	margin-top: 60px;
}

.mt80{
	margin-top: 80px;
}

.mb20{
	margin-bottom: 20px;
}

.mb40{
	margin-bottom: 40px;
}

.mb60{
	margin-bottom: 60px;
}

/* PADDING */
.p5{
	padding: 5px;
}
.p10{
	padding: 10px;
}
.pl10{
	padding-left: 10px;
}
.pr10{
	padding-right: 10px;
}
.p20{
	padding: 20px;
}
.pl20{
	padding-left: 20px;
}
.pr20{
	padding-right: 20px;
}

/* TEXT */
.tr{
	text-align: right;
}
.tl{
	text-align: left;
}
.tc{
	text-align: center;
}
.tg{
	color: grey;
}
.ti{
	font-style: italic;
}
.w{
	color: white;
}

/* INPUT AND SELECT */

.nInput{
	width: 100%;
	box-sizing:border-box;
	font-family: inherit !important;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px, rgba(0, 0, 0, 0.23) 0px 0px 4px;
	border-radius: 5px;
	background-color: white;
	height: 32px;
	text-align: center;
	padding: 5px;
	border: none;
}

.nInput:focus{
	outline: none;
}

.cInput, .cSelect{
	width: 100%;
	box-sizing:border-box;
	font-family: inherit !important;
}

.cInput, .cSelect{
	border-color: rgba(236, 236, 236, 1);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	border-radius: 5px;
	height: 32px;
	text-align: center;
	padding: 0;
	border: none;
	margin-top: 5px;
}

.cInput:focus, .cSelect:focus{
	outline: none;
}

/* HR DIVIDER */
.grey{
	border: 0;
	height: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin-top: 1px;
}

.white{
	border: 0;
	height: 0;
	border-top: 1px solid rgb(255, 255, 255);
}

/* WIDTHS */
.w100{
	width: 100%;
}
.w95{
	width: 95%;
}
.w90{
	width: 90%;
}
.w80{
	width: 80%;
}
.w75{
	width: 75%;
}
.w70{
	width: 70%;
}
.w60{
	width: 60%;
}
.w50{
	width: 50%;
}
.w40{
	width: 40%;
}
.w30{
	width: 30%;
}
.w20{
	width: 20%;
}
.w10{
	width: 10%;
}
.w5{
	width: 5%;
}

/* HEIGHT */
.h100{
	height: 100%;
}

/* FLEX ALIGNMENT */

.aic{
	align-items: center;
}
.ais{
	align-items: flex-start;
}
.aie{
	align-items: flex-end;
}
.jcc{
	justify-content: center;
}
.jce{
	justify-content: flex-end;
}

.fg{
	flex-grow: 1;
}

.fs{
	flex-shrink: 1;
}

.ofh{
	overflow: hidden;
}

/* FONT SIZE */
.fs6{
	font-size: 6px;
}
.fs8{
	font-size: 8px;
}
.fs10{
	font-size: 10px;
}
.fs12{
	font-size: 12px;
}
.fs14{
	font-size: 14px;
}
.fs16{
	font-size: 16px;
}
.fs18{
	font-size: 18px;
}
.fs20{
	font-size: 20px;
}
.fs22{
	font-size: 22px;
}
.fs24{
	font-size: 24px;
}
.fs26{
	font-size: 26px;
}

.h200{
	height: 200px;
}

