/*
Project: Jquery Plugin to select multiple media files (i.e. images and videos). v.1.0.0.1
Project Description: using jquery and bootstrap by this you can create multiple file selector,preview
on boostrap modal,also able to delete file.
Author: Abhishek Mishra
*/

.mediaList li img {
	max-width: 96px;
	max-height: 96px;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
}

.mediaList li {
    height: 1112px
}

.mediaList li video {
        max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

div#hint_brand .modal-dialog {
    top: 110px;
    width: 567px;
    max-width: 100%
}

li.myupload span {
    position: relative;
    width: 96px;
    height: 96px;
    display: block;
    background: #fff
}

li.myupload span input {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	width: 100%;
	cursor: pointer;
}

li.myupload span i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
    font-size: 54px
}

.mediaList li {
    float: left;
    border: 3px dashed #ccc;
    position: relative;
    margin: 0 15px 15px 0 !important;
    width: 112px;
	height: 112px;
	padding: 5px;
	border-radius: 10px;
}

.mediaList li:last-child {
    margin-right: 0
}

.post-thumb {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
	opacity:0;
	visibility: hidden;
	border-radius: 10px;
	transition: all 0.3s ease-in;
}

.mediaList li:hover .post-thumb {
   opacity: 1;
   visibility: visible;
}

a.remove-pic {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 12px;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    height: 24px;
    width: 24px;
	line-height: 22px;
    text-align: center;
    padding: 0;
	background: #c0392b;
}
a.remove-pic i
{
	font-size: 14px;
	font-weight: bold;
}

.inner-post-thumb {
    position: relative
}

.user-post-text-wrap {
    position: relative
}

.user-pic-post {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0
}

.user-pic-post img {
    width: 100%
}

.user-txt-post {
    padding: 0 0 0 65px
}

textarea.form-control.upostTextarea {
    border: 0;
    box-shadow: none;
    height: 85px;
    resize: none
}

.user-post-text-wrap {
    border-bottom: 1px solid #ccc;
    margin: 0 0 15px
}

.user-post-btn-wrap {
    margin: 25px 0 0
}

ul.btn-nav {
    list-style: none;
    padding: 0;
    margin: 0
}

ul.btn-nav li {
    position: relative;
    float: left;
    margin: 0 10px 0 0
}

ul.btn-nav li span input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    filter: alpha(opacity=100)
}

ul.mediaList {
    list-style: none;
    padding: 0;
    margin: 0
}

.tab_left > .nav-tabs > li.img-uploaded .veh-car:after
{
	content:"\e625";
	font-family: 'Material-Design-Icons';
	position: absolute;
	background: #16a085;
	width: 24px;
	height: 24px;
	bottom: 5px;
	left: 5px;
	color:#fff;
	border-radius: 50%;
	text-align:center;
	transition: all 0.3s ease-in;
	border: solid 1px #fff;
}

.tab_left > .nav-tabs > li.active > a::after {
    content: "\e6bb";
    position: absolute;
    font-family: Material-Design-Icons;
    right: -10px;
    top: 50%;
    bottom: 50%;
    font-size: 28px;
    margin-top: -17px;
	transform:scaleX(-1);
}
