/*
	file: wrapper.css
	author: Philip Munce
	last-mod: 29-12-2015
	comments: css styles for wrapping elements
*/	
.wrapper {
	width: 70%;
	margin: 10px 0 0 0;		
	text-align: center;
}	
.support-videos {
    width: 100%;
}
.flex-container {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-item {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}
.alert-user {
    top: 0px;
    width: 100%;
    position: absolute;
}
.alert-error {
    display: block;
    color: #FFF;
    text-shadow: initial;
    background-color: #E81100;
    border: 1px solid #E81100;
}
.alert-normal {
    display: block;
    color: #FFF;
    text-shadow: initial;
    background-color: #000;
    border: 1px solid #0066ff;
}