.newPost {
	padding: 10px;
}
/* The checkbox-container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 12px;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #ECECEC;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #ECECEC;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.checkbox-container .checkmark:after {
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2CDD6B;
}

.newPost .avatar {
	display: inline-block;
	width: 37px;
	height: 37px;
	background-size: 37px 37px;
    border-radius: 50%;
    margin-top: 7px
}

.newPost .postingMessage {
    position: absolute;
   	display: inline-block;
    margin: 13px 0 9px 10px;
}

.newPost .messageSection {
	background-color: #f0f0f0;
	padding: 5px;
	margin: 10px 0 0 0;
}

.newPost .message {
	width: 100%;
	height: 200px;
	border: none;
	border-radius: 10px;
	padding: 10px;
}

.newPost .message.prompt {
	color: #d0d0d0;
}

.newPost .bottom {
	margin: 10px 0 0 0;
}

.newPost .buttons {
	width: 250px;
	margin: 0 auto;
    padding: 5px 0;
    text-align: center;
}

.newPost .cancelButton {
	display: inline-block;
	width: 55px;
	height: 55px;
	background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/cancel2_s_v1.png);
	background-size: 55px 55px;
}

.newPost .tagButton {
	float: left;
	width: 55px;
	height: 55px;
	background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/tags_s_v1.png);
	background-size: 55px 55px;
    margin: 0 0 0 10px;
}

.newPost .imageButton {
	float: left;
	width: 55px;
	height: 55px;
	background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/camera_s_v1.png);
	background-size: 55px 55px;
    margin: 0 0 0 10px;
}

.newPost .sendButton {
    display: inline-block;
    width: 55px;
    height: 55px;
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/send_s_v1.png);
    background-size: 55px 55px;
    margin: 0 0 0 10px;
}

.newPost .saveButton {
	float: left;
	width: 55px;
	height: 55px;
	background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/confirm2_s_v1.png);
	background-size: 55px 55px;
    margin: 0 0 0 10px;
}

.newPost .uploadForm {
    display: none;
}

.newPost .image {
    float: left;
    margin: 5px 0 0 5px;
}

.newPost .tag {
    display: inline-block;
    color: white;
    background-color: #9BD95C;
    border: 1px solid #9BD95C;
    padding: 0 10px;
    margin: 5px 5px 0 0;
    line-height: 30px;
    border-radius: 10px;
}

.newPost .imageContainer {
    border-top: 1px solid #f0f0f0;
    margin: 10px 0 0 0;
    padding: 5px 0 0 0;
}

.newPost .tagContainer {
    border-top: 1px solid #f0f0f0;
    margin: 10px 0 0 0;
    padding: 5px 0 0 0;
}


.newPost .extrasContainer {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
	overflow: auto;
}

.newPost .triangle-down {
	display: inline-block;
	margin: 13px 6px 0 0;
	float: right;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 7.5px 0 7.5px;
	border-color: #0eb3fc transparent transparent transparent;
}

.postingMessageContainer {
	display: block;
	margin-bottom: 0;
}

.postingMessageDropdownContainer {
	display: block;
	cursor: pointer;
	padding: 5px 0;
}

.postingMessageContainer.hide {
	display: none;
}

.dropdown {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
    position: relative;
    background-color: white;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 44px;
    padding: 0 10px;
    left: -50%;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.post-as-title {
	padding: 10px 5px;
    font-size: 20px;
    font-weight: bold;
    border-top: 1px solid #f1f1f1;
}
