@charset "UTF-8";
/* CSS Document */
	#fade {
		height: 480px;
		display: flex;
		justify-content: space-between;
	}
	
	#fade .clicked-image {
		display: block;
		width: 620px;
		height: 480px;
		background-repeat: no-repeat;
    background-position: center 50%;
    background-color: #999;
	}
	.content {
		padding: 15px;
		width: 340px;
	}
	.exp-header {
		margin-top: 20px;
		display: flex;
		justify-content: space-between;
	}
	.exp-header .header {
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
		font-size: 14px;
		color: #CCC;
		width: 170px;
	}
	.exp-header .header .map {
		width: 18px;
		height: 18px;
		background-image: url('mapit.svg');
        background-size: contain;
        background-repeat: no-repeat;
		float: right;
		margin-right: 25px;
	}
	.exp-header .header .map:hover {
		cursor:pointer;
	}
	.photo-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.exp-photos {
		width: 170px;
		margin-top: 20px;
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
		max-height: 330px;
	    overflow: scroll
	}
	
	.exp-photos div {
		width: 60px;
		height: 60px;
		border: 1px #CCC solid;
		margin: 5px;
		background-size: cover;
	}
	.trip-photos {
		width: 170px;
		margin-top: 20px;
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
		max-height: 330px;
        overflow: scroll;
	}
		
	.trip-photos div {
		width: 60px;
		height: 60px;
		border: 1px #CCC solid;
		margin: 5px;
		background-size: cover;
	}
	.content .title {
		font-family:'Indie Flower', cursive;
		font-size: 24px;
		color: #ffffff;
	}
	.content .title .close {
		height: 35px;
		width: 35px;
		float: right;
		background-image: url("close.jpg")	
	}
    .content .details {
		display: flex;
		justify-content: space-between;
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
		font-size: 12px;
		color: #ffffff;
	}
	.content .details div {
		padding: 0 10px 0 0;
	}
	.content .details div span {
		color: #ccc;
	}
	.content .description {
		font-family:'Indie Flower', cursive;
		font-size: 14px;
		color: #ffffff;
	}
