/* 
	Uploader: 
	- These styles are the ones used on the examples. No needed to use it by any means.
	- It disables user selection to avoid some weird visuals in some browsers
	- It masks/hides the the file input behind a button
 */

.dm-uploader {
	cursor: default;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dm-uploader .btn {
	position: relative;
	overflow: hidden;
}

.dm-uploader .btn input[type="file"] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: solid transparent;
	width: 100%;
	opacity: .0;
	filter: alpha(opacity= 0);
	cursor: pointer;
}

/* 
	A couple styles to make the demo page look good
 */
body {
	padding-bottom: 2rem;
	padding-top: 4rem;
}
.row {
	margin-bottom: 1rem;
}
[class*="col-"] {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
#files {
    overflow-y: scroll !important;
    min-height: 320px;
}
@media (min-width: 768px) {
	#files {
		min-height: 0;
	}
}
#debug {
	overflow-y: scroll !important;
	height: 180px;	
}

.dm-uploader {
	border: 0.25rem dashed #A5A5C7;
	text-align: center;
}
.dm-uploader.active {
	border-color: red;

	border-style: solid;
}
/* Social Icons */
.follow-button {
  color: #fff;
  background: #1e96c8;
  padding: 3px 7px;
  float: right;
  font-weight: 500;
  font-size: 18px;
  border-radius: 4px;
  vertical-align: middle;
  text-align: center;
}
.follow-button:hover {
  background: #167ba5;
  color: #fff;
}
.follow-button img {
  width: 20px;
  vertical-align: middle;
}

.follow-button.pinterest {
  background: #ff506a;
}
.follow-button.pinterest:hover {
  background: #BD081C;
}

.follow-button.facebook {
  background: #4267B2;
}
.follow-button.facebook:hover {
  background: #3b5998;
}

.follow-button.twitter {
  background: #00acee;
}
.follow-button.twitter:hover {
  background: #1DA1F2;
}

.list-social li {
  height: 40px;
}
.list-social li a {
  float: left;
}
