/* Normal desktop :992px. */
@media (min-width: 992px){
	.colour-switch{
		top: 100px;
	}
	.modal-item{
		width: 769px;
	}
	.modal-container{
		padding-left: 35px;
	}
	.subform input[type=email] {
    	width: 300px;
    }
}

 
/* Tablet desktop :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.colour-switch{
		top: 100px;
	}
	.modal-item{
		width: 100%;
	}
	.modal-container{
		padding-left: 15px;
	}
	.subform input[type=email] {
    	width: 300px;
    }

}
 
/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
	.colour-switch{
		top: 30px;
	}
	.modal-item{
		width: 100%;
	}
	.modal-container{
		padding-left: 15px;
	}
	.subform input[type=email] {
    	width: 300px;
    	margin-bottom: 10px;
    }
}

/* small mobile :320px. */
@media only screen and (max-width: 479px) {
	.colour-switch{
		top: 30px;
	}
	.modal-item{
		width: 100%;
	}
	.modal-container{
		padding-left: 15px;
	}
	.subform input[type=email] {
    	width: 100%;
    	margin-bottom: 10px;
    }
}

