/* Admin Page Style Sheet */

@import url('https://fonts.googleapis.com/css?family=Kalam');


.visited-countries-list {
	columns: 3;
	-webkit-columns: 3;
	-moz-columns: 3;
}

.visited-countries-list label {
	margin-top: 10px;
}

.form-container {
	
}

code.wander-example{
	padding: 10px;
	white-space: pre-wrap;
}

.example-ul {
	list-style-position: inside;
	list-style-type: disc;
    margin-left: 1.5em; /* which should give space for the disc to show */
}

.cv-header {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #f8f8f8;
	position: relative;
	margin-bottom: 25px;
}

.cv-header-inner {
	text-align: center;
	position: absolute;
	padding: 5%;
	padding-top: 3%;
	padding-bottom: 2%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0,0,0,0.7);
	color: #fff;
}

.cv-header-inner h1 {
	font-family: 'Kalam', cursive;
	font-size: 36px;
	padding: 0;
	margin: 0;
	color: #fff;
}

#autocomplete {
  width: 100%;
  float: left;
  font-size: 16px;
  padding: 12px 20px 12px 20px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#currentLocationView {
}



/* Table Properties */

table.countries-list {
	width: 100%;
}

table.countries-list td {
	padding-top: 10px;
	padding-bottom: 10px;
}

table.countries-list th {
	background-color: #222;
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}

td.country-name {
	text-align: center;
}


table.countries-list tr:nth-child(odd) td{
	background-color: #f8f8f8;
}
table.countries-list tr:nth-child(even) td{
	background-color: #fff;
}

#countrySearch {
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 20px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#countrySearch:before {
	content: "\f179";
}