﻿
.mailAtaImg, .mailAtaFile, .mailAtaText {
	/*
    font-weight: bold;
    */
	display: inline-block;
	text-decoration: none;
	margin: 0;
	padding: 3px;
	padding-left: 8px;
	padding-right: 8px;
	color: #000;
	border: 1px solid #000;
	border-radius: 15px;
	transition: all 0.3s;
	box-sizing: border-box;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.1), inset 0 0 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 150px;
}

.mailAtaImg:hover, .mailAtaFile:hover, .mailAtaText:hover {
	box-shadow: 0 0 1em rgba(0, 0, 0, 0.1), inset 0 0 1em rgba(0, 0, 0, 0.1);
}

.mailAtaImg::before {
	content: "📷";
	color: red;
	display: inline-block;
	margin-right: 6px;
}

.mailAtaFile::before {
	content: "📁";
	color: #000;
	display: inline-block;
	margin-right: 6px;
}

.mailAtaText::before {
	content: "🔠";
	color: #000;
	display: inline-block;
	margin-right: 6px;
}

/*
body {
	overflow: hidden; 
}
*/

div.scroll {
	background-color: #fff;
	width: 90%;
	/*
	height: calc(100% - 300px);
	*/
	height: 300px;
	overflow: auto;
	text-align: justify;
	padding: 20px;
}

div.scrollH {
	width: 200px;
	height: 90%;
	margin: 0 auto;
	overflow: hidden;
}

div.scrollH:hover {
	overflow-y: scroll;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
	/*
height: 300px;
*/
	height: calc(100% - 20px);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

#compose {
	display:none;
	width: 80%;
	z-index: 1;
	position:absolute;
}


