/*
--------------------------------------------------------------------------------------

	Wins
	wins.css

--------------------------------------------------------------------------------------
*/



/*
-------------------------------------------
	Utilities
-------------------------------------------
*/

.hidden {display:none;}


/* margins */

.mt-0 {margin-top:0;}
.mt-5 {margin-top: 5px;}
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}

.mb-0 {margin-bottom:0;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}

.ml-20 {margin-left: 20px;}

.mr-20 {margin-right: 20px;}

/* padding */

.pt-20 {padding-top: 20px;}

.pr-50 {padding-right: 50px;}


/* widths */

.w-10 {width:10% !important;}
.w-15 {width:15% !important;}
.w-20 {width:20% !important;}
.w-25 {width:25% !important;}
.w-30 {width:30% !important;}
.w-40 {width:40% !important;}
.w-50 {width:50% !important;}
.w-60 {width:60% !important;}
.w-70 {width:70% !important;}
.w-80 {width:80% !important;}
.w-90 {width:90% !important;}
.w-100 {width:100% !important;}


/* text */

.ta-l {text-align: left;}
.ta-c {text-align: center;}
.ta-r {text-align: right;}

.text-small {font-size: .9em;}
.text-normal {font-size: 1em;}
.text-large {font-size: 1.3em;}



/*
-------------------------------------------
	Colours
-------------------------------------------
*/

/* text */

.text-colour-white {
	color:#fff;
	background-color: transparent;
}

.text-colour-black {
	color:#000;
	background-color: transparent;
}

.text-colour-grey {
	color:#777;
	background-color: transparent;
}

.text-colour-red {
	color:#E3294A;
	background-color: transparent;
}


/* bg */

.bg-colour-blue {
	background-color: #133f6b; 
	color: #fff;
}

.bg-colour-red {
	background-color: #E3294A; 
	color: #fff;
}

.bg-colour-grey {
	background-color: #eeeeee; 
	color: #000;
}

.bg-colour-purple {
	background-color: #5E4C8E; 
	color: #000;
}


