@charset "utf-8";
/* CSS Document */

#stories_category {
	font-style: italic;
	font-size: 12px;
	display: block;
	padding: 5px;
}

.stories_wrap {
	background-color: #F8F8F8;
	border-radius: 20px;
	margin-bottom: 10px;
	width: 100%;
	padding: 10px;
	font-size: 12px;
}

.stories_wrap img {
	width: 20%;
	float: left;
	padding: 10px;
}

#stories_content {
	padding: 10px;
}

#stories_name {
	font-weight: 500;
	padding: 10px;
}

#stories_date_time {
	text-align: left;
	font-size: 10px;
	padding: 10px;
}

#add_location_comment {
	text-align: center;
	margin-bottom: 10px;
}

#add_location_comment a {
	text-decoration: none;	
	color: blue;
}

#add_location_comment a:hover {
	text-decoration: underline;	
}

input[type="text"] {
	width: 98%;
	font-size: 18px;
	padding: 10px;
	border: 1px solid #CCC;
	border-radius: 5px;
	margin-bottom: 10px;
}

textarea {
	height: 100px;
	width: 98%;
	margin-bottom: 5px;
	font-size: 18px;
	padding: 10px;	
	resize: none;
	border: 1px solid #CCC;
	border-radius: 5px;
}

select {
	height: 40px;
	font-size: 18px;
	border: 1px solid #CCC;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 10px
}

input[type="submit"] {
	font-size: 18px;
	height: 44px;
	width: 100%;
	padding: 10px;
	background-color: initial;
  	background-image: linear-gradient(-180deg, #00D775, #00BD68);
  	border-radius: 5px;
  	box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  	color: #FFFFFF;
  	cursor: pointer;
  	outline: 0;
  	pointer-events: auto;
  	text-align: center;
  	touch-action: manipulation;
  	user-select: none;
  	-webkit-user-select: none;
  	white-space: nowrap;
  	border: 0;
	margin-bottom: 10px;
}

input[type=submit]:hover {
  background: #00bd68;
}

input[type="file"] {
	border: 1px solid #CCC;
	width: 100%;
	color: #CCC;
	margin-bottom: 10px;
	border-radius: 5px;
}

input[type="file"]::file-selector-button {
	color: #666;
	border: none;
	background-color: #ccc;
	padding: 10px;
	border-radius: 5px;
}

input[type="file"]::file-selector-button:hover {
		cursor: pointer;
}

.stories-sidebar {
	padding: 10px;
	width: 20%;
	text-align: right;
}

.stories-sidebar a {
	font-size: 14px;
	text-decoration: none;
	display: block;	
}

#filter-heading {
	text-align: right;
	margin-bottom: 2px;
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	
		textarea {
	height: 100px;
	width: 95%;
	margin-bottom: 5px;
	font-size: 18px;
	padding: 10px;	
	resize: none;
	border: 1px solid #CCC;
	border-radius: 5px;
}

input[type="text"] {
	width: 95%;
	font-size: 18px;
	padding: 10px;
	border: 1px solid #CCC;
	border-radius: 5px;
	margin-bottom: 10px;
}
	
}