/* CSS stylesheet by P. Rushmer */
/* ---------------------------  */
body {
	background-color: #B8BCAC;
	color: #fff;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
}

header {
	text-align: center;
}

#top-nav {
	margin-bottom: 5px;
}

#top-nav button,
footer button{
	display: inline-block;
}

hr {
	border: 1px solid #fff; 
	margin: 0;
}

.container-fluid {
	text-align: center;
}

.ops {
	border: 1px solid wheat;
	margin: 5px;
	padding: 0;
	list-style: none;
	display: block;
	font-size: 14px;
}	

.ops li {
	list-style: none;
	font-size: inherit;
}
	
#login-form {
	color: black;
	font-size: 12px;
	margin: 10px 0;
	border: 1px solid wheat;
	padding-top: 10px;
	width: 150px;
	text-align: left;
}

#login-form label {
	color: black;
	padding-left: 2px;
	
}

#cmd-panel {
	color: black;
	font-size: 12px;
	border: 1px solid wheat;
	margin: 10px 5px;
	display: none;
	overflow: hidden;
}

#cmd-panel #file {
	color: white;
}

.dest {
	font-size: 18px;
	margin: 5px;
	padding: 0;
	list-style: none;
}

.dest a {
	display: block;
}

#tagDrop{
	cursor: pointer;
	color: black;
	font-size: 0.7em; 
}

select {
	width: 95%;
	padding: 10px;
	border: 0 !important;
	border-radius: 2px;
	background-color: lightblue;
	/* needed */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* SVG background image */
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: calc(100% - 1.3em) center;
	background-repeat: no-repeat;
}
select::-ms-expand {
  display: none;
}

p#info-line {
	display: inline-block;
}
#info-line span{
	background-color: rgb(102, 117, 117);
	font-size: 14px;
	padding: 6px;

}


.match-info{
	color: #fff;
}

ul {
	padding: 0;
}

ul.sharing{
	margin: 20px;
}

p#delalbum,
p#list,
.ops ul,
.caption {
	cursor: pointer;
}

p#delalbum {
	color: yellow;
}

.ops p {
	font-size: 18px;
	background-color: #818181;
}

.ops ul li:hover,
#cmd-panel a:hover {
	background-color: #818181;
}

.dimmer{
	opacity: 0.3;
}

nav p {
	margin: 0;
	padding: 0;
}

.private,
.sidenav .private {
	color: #ffcd6f;
}

nav p {
	font-size: 14px;
}

nav p.public {
	color: #818181;
}

nav p.private {
	padding-bottom: 5px;
}

nav p.exclude,
nav a.exclude {
	color: cadetblue !important;
}

p#rem-ind a:link,
header a:link,
footer a:link {
	text-decoration: none;
}

p#console{
	font-size: 1em;
	text-align: left !important;
	padding: 3px 0 0 20px;
	color: #454545;
}

#infoBsModal {
	color: black;
}

#infoBsModal hr {
	border: 1px solid grey;
}

#infoBsModal p {
	margin: 0;
}

#infoBsModal input {
	font-size: inherit;
	vertical-align: inherit;
}

 
  /* The Modal (background) */
  .modView {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)} 
	to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
	from {transform:scale(0)} 
	to {transform:scale(1)}
  }
  
  /* The Close Button */
  .closer {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
  }
  
  .closer:hover,
  .closer:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
	.modal-content {
	  width: 100%;
	}
  }


span.badge{
	padding: 4px 4px 0 4px;
	font-weight: inherit;
	font-size: 12px;

}

#gallery span.badge{
	background-color:teal;
}

.bs-info {
	color: red;
	font-style: italic;
}

.modal-body {
	overflow-x: auto;
	background-color: gainsboro;
}

.modal-header {
	text-align: center;
}

.modal-body label {
	font-weight: normal;
}

footer {
	display: none;
	text-align: center;
	margin: 10px 0;
	clear: both;
}

.popimg{
	display: none;
}

/* Responsive map iframe  */
.location-map {
    position: relative;
    padding-bottom: 66.66%; /* (400/600 = 0.666 = 66.66%) */ 
    height: 0;
    overflow: hidden;
}
.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


#album-select button{
	width: 80px;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	text-overflow: ellipsis;
	color:#454545 !important;
	background-color: #fff !important;
}

#album-select button:hover{
	color: #fff !important;
	background-color: #818181 !important;
	text-decoration: none !important;

}

#upl_container{
	min-height: 500px;
}

/* Obsolete at the moment. Keep for reference ---
   Hide the popup 'magnify' control on small screens where it's not really useful 
   Now repurposed as a select all/none control so should not be hidden 
@media screen and (max-width: 900px){
	.popimg {
		display: none !important;
	}
}

#preview {
	z-index: 10;
	position: absolute;
	background-color: #fff;
  	background-position: center;
  	background-repeat: no-repeat;
	background-image: url("../img/ajax-loader.gif");
}

#preview img{
	padding: 5px;
}

*/