/*** GALLERY ***/
#degallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 3000;
}
.deg-container {
    width: 80%;
    height: 75%;
    background: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    padding: 10px 30px;
    box-sizing: border-box;
}
.deg-container header {
    position: relative;
}
h2.deg-title {
    display: inline-block;
    margin-top:15px;
}
button#deg-tab-library {
    left: -1px;
}
button.deg-close {
    display: inline-block;
    position: absolute;
    right: -5px;
    border: none;
    background: none;
}
button.deg-tab.active {
    border-bottom: 1px solid white;
}
button.deg-tab:focus {
    outline: none;
}
button.deg-tab {
    background: white;
    border: 1px solid #666;
    position: relative;
    top: 1px;
    min-width: 120px;
}
.deg-tab-bar {
    border-bottom: 1px solid #666;
    margin-top: 5px;
}
#deg-tab-body {
    height: 80%;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 15px;
    overflow-y: scroll;
}
#deg-gallery {
    width: 60%;
    display: inline-block;
    vertical-align: top;
}
#deg-detail-container {
    width: 37%;
    display: inline-block;
    border:1px solid #ccc;
    height: 100%;
    padding: 1%;
}
#deg-detail-container img {
  width: 100%;
  height: auto;
}
#deg-detail-container .deg-img-title {
  text-align: center;
}
#deg-detail-container button.deg-btn-select {
  width: 80%;display: block;margin: 0px auto;float: none;
}
.deg-img-container {
    display: inline-block;
    margin: 7px;
    width: 100px;
    height: 95px;
    position:relative;
    border:3px solid #fff;
}
.deg-img-container:hover {
    cursor: pointer;
    opacity: 0.6;
    border:3px solid #bbb;
}
.deg-img {
    width: 100%;
    height:100%;
    position: relative;
    overflow: hidden;
}

button.deg-btn-remove {
    position: absolute;
    background: none;
    border: none;
    top: -10px;
    right: -10px;
    z-index: 5000;
    color: #e80000;
    padding: 0px;
}
button.deg-btn-remove:hover {
    color: red;
}
button.deg-btn-remove:focus {
    outline: none;
}
.deg-btn-remove i.material-icons {
    background: white;
    border-radius: 15px;
}
.deg-upload-container {
    height: 100%;
    border: dashed 1px #666;
    border-radius: 5px;
    padding: 10px;
}
.deg-upload-container button#deg-file-upload{
  float:none;
}
.deg-pending {
    position: relative;
    display: block;
    min-width: 180px;
    height: 30px;
    margin-bottom: 5px;
}
.deg-pending .deg-btn-remove {
    position: relative;
    top: 5px;
    margin-right: 5px;
}

@media (max-width: 960px) {
    #deg-gallery {
        width: 100%;
    }
    #deg-detail-container {
        width: 100%;
    }
}

/*** DRAG N DROP ***/
.deui-dnd {
	border: dashed #aaa 1px;
	display: inline-block;
	width: 100%;
	min-height: 80px;
	border-radius: 8px;
	position: relative;
}

.deui-dnd-text {
	font-size: 16px;
	display: inline-block;
	width: 100%;
	top: 25px;
	color: #222;
	text-align: center;
	position: relative;
}
.deui-dnd:hover {
	cursor: pointer;
}
.deui-dnd:hover .deui-dnd-text {
	color: #bbb;
}
.deui-dnd-container {
	position: absolute;
	top: 0px;
	width: 100%;
}
/*.deui-dnd-file {
	width: 80px;
    height: 80px;

    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    border: 1px solid #bbb;
    padding: 5px;
}*/
.deui-dnd-file h3 {
	font-size: 14px;
    position: relative;
    display: inline-block;
    margin-top:0px;
    margin-bottom: 0px;
}
.dnd-remove {
    border: solid 1px #bbb;
    background: white;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.dnd-remove::before {
	content: "X";
}
.deui-dnd-upload, .deui-dnd-clear {
	border: solid 1px #bbb;
	background: transparent;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	padding: 5px 10px;
	text-transform: uppercase;
}
.deui-dnd-upload:focus, .deui-dnd-clear:focus {
	outline: none;
}
.deui-dnd-upload:hover, .deui-dnd-clear:hover {
	background: #bbb;
	color: white;
}
/** Tag List**/
.tags {
    display: inline-block;
    background: rgb(0, 97, 161);
    color: white;
    margin: 1px;
    padding: 2px 4px;
    border-radius: 4px;
}
.tags-container {
    border:1px solid #eeeeee;
}
.tag-filter-container {
    display:inline-block;
}
button.tags {
    background:#bbb;
    color:white;
    border:none;
}
button.tags:hover,button.tags.active {
    background:rgb(0, 97, 161);
}
.tags button.tags-delete {
    background: rgba(0, 0, 0, 0.35);
    border: none;
    font-size: 12px;
    height: 14px;
    width: 14px;
    color: white;
    padding: 0px;
    margin: 0px 0px 0px 4px;
    line-height: 12px;
    border-radius: 14px;
}
.tags-input {
    display:inline-block;
}
.tags-input .tag-text{
    display:inline-block;
    border:none;
}
.tags-message {
    font-style: italic;
    color: #ef3f3d;
}