*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.transition {
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

@font-face {
  font-family: 'Roboto-Thin';
  src: 	url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),  
  	url('../fonts/Roboto-Thin.woff') format('woff'), 
  	url('../fonts/Roboto-Thin.ttf')  format('truetype'), 
  	url('../fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
  font-weight: normal;
  font-style: normal;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	/*background: url(../images/body.jpg) repeat-x left top;*/
	background-color: #512D77;
	color: #FFF;
}

.wrapper {
	display: flex;
	align-items: center;
	min-height: 100vH;
	flex: 0 0 auto; /* Added rule */
	justify-content: center;
	padding: 10px;
}

.wrapper h1 {
	margin: 0
}

.list-countries {
	/*width: 147px;*/
	margin: 0 0 0 90px;
}

.list-countries li {
	margin: 0 0 2px;
}

.list-countries a {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding: 15px;
	background-color: #59387D;
	text-decoration: none;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;	
}

.list-countries a:hover {
	background-color: #8E76A6;
}

.list-countries a span {
	line-height: 1em;
	display: inline-block;
	margin: 0 0 0 12px;
}

