body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-size: 20px;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
  /*scrollbar-width: none;*/
}

/* width */
/*::-webkit-scrollbar {
  display: none; 
}*/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.hr-generic {
	margin: 20px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 5px 0;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.new-btn {
	padding: 3px 30px;
	font-size: .8em;
	background: #fff;
	border: thin solid #ccc;
	color: #4682b4;
	cursor: pointer;
	box-sizing: border-box;
	margin-left: 10px;
}

.new-btn:disabled {
	background: #f5f5f5;
	cursor: default;
}

.new-btn:not(:disabled):hover {
	color: #fff;
	background: #4682b4;
}

.link {
	text-decoration: none;
	color: #4682b4;
}

.link:hover {
	text-decoration: underline;
}

#topMenu {
	width: 100%;
	background-color: #f5f5f5;
	overflow: hidden;
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
	color: #333;
	height: 50px;
	border-bottom: thin solid #ccc;
	box-sizing: border-box;
}

#logo {
	width: 100px;
}

#logo img {
	width: 100%;
	height: auto;
}

#aiNumber {
	font-size: .7em;
}

#accountInfo {
	
}

#userInfo {
	
}

#topMenu div {
	padding: 10px 25px;
}

#topMenu div:not(#logo) {
	border-color: #ccc;
	border-style: solid;
	border-width: 0 1px;
}

.menuLeft {
	
}

.menuRight {
	margin-left: auto;
}

#logoutBtn {
	color: #fff;
	text-decoration: none;
	display: block;
	width: 100%;
}

.cnItem {
	display: none;
}

#campaignsContainer, #contactsContainer, #groupsContainer, #settingsContainer  {
	display: none;
}

.container {
	height: calc(100vh - 50px);
	width: 96%;
	overflow: hidden;
}

#sideMenu {
	float: left;
	font-size: 1.8em;
	height: calc(100vh - 50px);
	background-color: #333;
	text-align: center;
	width: 4%;
}

#chat-btn {
  width: 40px;
  height: 28px;
  background-color: #f5f5f5;
  border-radius: 4px;
  position: relative;
}
#chat-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    right: 10px;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 2px solid transparent;
    border-top: 10px solid #f5f5f5;
}

.smItem {
	padding: 20px 0;
	color: #f5f5f5;
	cursor: pointer;
}

.smItem:hover {
	background-color: #555;
}

.smi-text {
	display: none;
}

.smi-icon {
	
}

#textMenu {
	z-index: 99;
	background-color: #fff;
	border-bottom: thin solid #999;
	display: none;
}

.tfContainer {
	display: inline-block;
	padding: 5px 10px;
}

#conversations {
	float: left;
	height: calc(100% - 45px);
	overflow-y: scroll;
	width: 25%;
	border-right: thin solid #ccc;
	box-sizing: border-box;
}

#convoHead {
	text-align: center;
	overflow: hidden;
	padding: 10px 0;
	border-bottom: thin solid #ccc;
}

.convoFilter {
	width: 50%;
	display: inline-block;
	float: left;
	cursor: pointer;
	box-sizing: border-box;
}

.convoFilter.cur {
	font-weight: bold;
}

.convoFilter:first-child {
	border-right: thin solid #ccc;
}

.convoFilter:hover {
	font-weight: bold;
}

#contactsHead {
	width: 25%;
}

#conversationFilter {
	text-align: left;
	width: 200px;
	padding: 15px;
	background: #fff;
	display: none;
	position: absolute;
	border: thin solid #ccc;
	-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	z-index: 90;
}


#conversationFilter span {
	margin-top: 5px;
	cursor: pointer;
}

#conversationFilter span:hover {
	font-weight: bold;
}

#conversationFilter .cfCurrent {
	font-weight: bold;
}

.conversation {
	color: #333;
	background-color: #fff;
	border-bottom: thin solid #ccc;
	padding: 10px 15px;
	cursor: pointer;
	position: relative;
}

.contact:hover {
	background-color: #ccc;
}

.contact span {
	line-height: 1.1em;
}

.lastMsg {
	font-size: 0.8em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 90%;
	color: #999;
}

#conversationHead {
	height: 45px;
	background: #fff;
	border-bottom: thin solid #ccc;
	overflow: hidden;
}

#conversationHead div {
	float: left;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 1%;
}

#chLeft {
	border-right: thin solid #ccc;
	width: 25%;
	justify-content: center;
}

#chLeft input {
	width: 95%;
}

#chLeft span {
	width: 5%;
	margin-left: 1%;
	cursor: pointer;
}

#chCenter {
	width: 53%;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

#chMsg {
	position: absolute;
	left: 15px;
}

.msgNav {
	display: none;
	cursor: pointer;
	padding: 0 2px;
}

.msgNav:hover {
	color: #4682b4;
}

#chTo, #chCancel {
	display: none;
}

#chTo {
	margin-right: auto;
}

#chCancel {
	margin-left: auto;
	cursor: pointer;
}

#chCancel:hover {
	text-decoration: underline;
}

#contactsSearch {
	width: 250px;
	position: absolute;
	z-index : 90;
	background: #fff;
	border-width: 0 1px 1px 0;
	border-style: solid;
	border-color: #ccc;
	display: none;
	left:28%;
	-webkit-box-shadow: 4px 4px 4px #333;
	   -moz-box-shadow: 4px 4px 4px #333;
	        box-shadow: 4px 4px 4px #333;
}

#contactsSearch .csItem {
	padding: 10px;
	cursor: pointer;
}

#contactsSearch .csItem:hover {
	background-color: #555;
	color: #f5f5f5;
}

#contactsSearch .csItem:not(:first-child) {
	border-top: thin solid #ccc;
}

#chRight {
	text-align: right;
	width: 22%;
	justify-content: right;
}

#attachmentsBtn {
	cursor: pointer;
}

#attachmentsBtn:hover {
	font-weight: bold;
}

#conversation {
	float: left;
	height: 100%;
	width: 53%;
	box-sizing: border-box;
	border-right: thin solid #ccc;
}

#ft {
	
}

.msgAttType {
	display: none;
}

#msgAttachment {
	display: none;
}

input[type="file"]:not(.showInput) {
	display: none;
}

#msgSub {
	float: right;
}

.custom-file-upload {
	/*border: 1px solid #ccc;*/
    /*display: inline-block;*/
	display: block;
    padding: 6px 12px;
    cursor: pointer;
	/*background-color: #fff;*/
}

.custom-file-upload:hover {
	/*border-color: #9ecaed;
    -moz-box-shadow:    0 0 10px #9ecaed;
    -webkit-box-shadow: 0 0 10px #9ecaed;
    box-shadow: 0 0 10px #9ecaed;*/
	color: #4682b4;
	
}
#conversationContent {
	height: calc(100vh - 260px);
	overflow-y: scroll;
}

.loading {
	text-align: center;
	margin-top: 20px;
	color: #555;
}

#conversationForm {
	height: 165px;
	width: 95%;
	margin: auto;
	padding: 15px 0;
	border-top: thin solid #ccc;
	box-sizing:border-box;
	position: relative;
}

#conversationForm textarea {
	resize: none;
	width: 100%;
	/*margin-bottom: 1%;
	height: 94%;*/
	border-color: #ccc;
	padding: 10px;
	box-sizing: border-box;
}

#conversationForm textarea:focus {
	outline: none;
	border-color: #9ecaed;
    -moz-box-shadow:    0 0 10px #9ecaed;
    -webkit-box-shadow: 0 0 10px #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

.message {
	padding: 0px 15px;
	width: 80%;
	margin: 20px 0;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	transition: margin 150ms;
}

.lmDay {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: .7em;
}

.In {
	background-color: #4682b4;
	color: #f5f5f5;
	float: left;
	margin-left: 1%;
	-webkit-box-shadow: 10px 10px 5px 0px #999;
-moz-box-shadow: 10px 10px 5px 0px #999;
box-shadow: 10px 10px 5px 0px #999;
border: thin solid #333;
}

.Out {
	background-color: #f5f5f5;
	border: thin solid #333;
	color: #333;
	float: right;
	margin-right: 1%;
	-webkit-box-shadow: -10px 10px 5px 0px #999;
-moz-box-shadow: -10px 10px 5px 0px #999;
box-shadow: -10px 10px 5px 0px #999;
}

.curMsg.Out {
	margin-right: 2%;
}

.curMsg.In {
	margin-left:2%;
}

.curMsg mark {
	font-weight: bold;
}

.In mark {
	background-color: #f5f5f5;
	color: #4682b4;
}

.Out mark {
	background-color: #4682b4;
	color: #f5f5f5;
}

.dateSection {
	position: relative;
	clear: both;
	text-align: center;
	color: #555;
	overflow: hidden;
	width: 90%;
	margin: auto;
	padding: 0 5px;
	font-weight: bold;
}

.dateSection:before, .dateSection:after {
	position: absolute;
    top: 51%;
    overflow: hidden;
    width: 45%;
    height: 1px;
    content: '\a0';
    background-color: #555;
}

.dateSection:before {
	margin-left: -50%;
    text-align: right;
}

.dateSection:after {
	margin-left: 5%;
	text-align: right;
}

.right {
	float: right;
}

.left {
	float: left;
}

.text-right {
	text-align: right;
}

.sentBy {
	font-size: .7em;
}
.messageGlow {
	border: 3px inset #333;
}
.messageDate {
	font-size: .7em;
	text-align: left;
}

.msgMedia {
	font-size: .6em;
	text-align: right;
}

.msgMedia a {
	text-decoration: none;
}

.msgMedia a:hover {
	font-weight: bold;
}

.Out .msgMedia a {
	color: #4682b4;
}

.In .msgMedia a {
	color: #f5f5f5;
}

.textDetails span {
	display: inline-block;
	width: 50%;
}

#mediaContainer {
	width: 90%;
	height: 90%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	z-index: 99;
	border: thin solid #ccc;
	display: none;
}

.poh {
	height: 28px;
	color: #f5f5f5;
	width: 100%;
	background: #333;
	text-align: right;
	padding:5px;
	box-sizing: border-box;
}

.closeBtn {
	cursor: pointer;
}

.closeBtn:hover {
	color: red;
}

#mediaContainer.attachments {
	display: block;
}


#currentMedia {
	width: 80%;
	border: thin solid #ccc;
	height: 60%;
	margin: 1% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333;
}

#currentMedia img {
	max-height: 100%;
	max-width: 100%;
}

#currentMessage {
	border-bottom: thin solid #999;
	padding: 1%;
	width: 80%;
	margin: 1% auto;
	
}

#thumbnails {
	width: 80%;
	border: thin solid #ccc;
	height: 20%;
	margin: 1% auto;
	overflow-y: scroll;
	text-align: center;
}

.tb {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	margin: 10px;
	border: thin solid #ccc;
	cursor: pointer;
	overflow: hidden;
	padding: 5px;
	background-color: #fff;
}

.tb:hover {
	border-color: #9ecaed;
    -moz-box-shadow:    0 0 10px #9ecaed;
    -webkit-box-shadow: 0 0 10px #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

.tbGlow {
	border-color: #9ecaed;
    -moz-box-shadow:    0 0 10px #9ecaed;
    -webkit-box-shadow: 0 0 10px #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

.tb img {
	position: absolute;
	left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

#cContact {
	float: right;
	width: 22%;
	height: 100%;
	background-color: #fff;
}

.ccDiv {
	display: none;
}

.pom {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: #fff;
	z-index: 99;
	display: none;
	border: thin solid #ccc;
	border-radius: 5px;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#cmEdit {
	width: 400px;
	height: 600px;
}

#cnEdit {
	width: 300px;
	height: 375px;
}

#cnEdit textarea {
	width: 100%;
}

#gEdit {
	width: 35%;
	height: 50%;
	overflow: hidden;
}

#edit-user-pom {
	width: 300px;
	height: 350px;
	text-align: center;
}

#edit-user-pom .i, #edit-user-pom .new-btn {
	width: 80%;
}

.pomInput {
	width: 100%;
	padding: 10px;
}

.pomSection {
	margin: 10px auto;
	width: 90%;
}

.groupContact {
	padding: 5px;
	border-bottom: thin solid #ccc;
}

.gehLabel {
	width: 100%;
	border-bottom: thin solid #ccc;
}

.gec {
	width: 35%;
	height: calc(100% - 70px);
	float: left;
	margin: auto;
	box-sizing:border-box;
	border-left: thin solid #ccc;
	overflow-y: scroll;
}

#group-menu {
	float: left;
	width: 30%;
	box-sizing: border-box;
}

.group-menu-item {
	width: 100%;
	padding: 20px 0;
	text-align: center;
	border-bottom: thin solid #ccc;
}

.group-menu-item input {
	margin: auto;
	width: 80%;
}

#gel {
	overflow: hidden;
	border-bottom: thin solid #ccc;
	width: 70%;
}

.act {
	border-bottom: thin solid #ccc;
	position: relative;
	padding: 5px;
	box-sizing: border-box;
	padding: 10px;
}

.act:hover {
	cursor: pointer;
	background: #555;
	color: #f5f5f5;
}

.gelItem {
	width:50%;
	float:right;
	text-align:left;
	padding: 10px 0 10px 30px;
	box-sizing: border-box;
	border-left: thin solid #ccc;
}

.gec:first-child {
	border-right: thin solid #ccc;
}

.cmHead {
	width: 95%;
	margin: 2% auto;
	overflow: hidden;
	border-bottom: thin solid #ccc;
	padding-bottom: 10px;
}

.cmHead table {
	width: 95%;
	margin: auto;
	
}

.cmPhoto {
	width: 60px;
	height: 60px;
	font-size: 50px;
	text-align: center;
	border-radius: 50%;
	border: thin solid #ccc;
	line-height: 60px;
}

.cmNameContainer {
	padding-bottom:10px;
	padding-left: 10px;
	width: 90%;
	
}

#cContact .cmNameContainer {
	font-size: 1.3em;
}

#cContact .cmDetail {
	
	border-bottom: thin solid #ccc;
}

.cmPhoto label {
	padding: 10px;
}

.cmDetail {
	width: 90%;
	margin: auto;
	padding-bottom: 5px;
}

.cmDetail h3 {
	margin-bottom: 5px;
	
}

.cmDetail span {
	color: #555;
}

.cmDetail label {
	font-size: 1.5em;
	color: #333;
}

.cmDetail input, .cmDetail textarea {
	outline: 0;
	border-color: #333;
	font-size: 1.1em;
	width: 100%;
}

.cmNameContainer input {
	outline: 0;
	border-color: #333;
	font-size: 1.1em;
	width: 90%;
}

.cmDetail input:disabled {
	background-color: #fff;
}

.cmDetail input {
	border-width: 0 0 2px;
}

.cmDetail textarea {
	resize:none;
	border-width: 2px;
}

.va-btm {
	vertical-align: bottom;
}

.cmButtons {
	text-align: center;
}

.cmBtn {
	background-color: #4682b4;
	color: #f5f5f5;
	width: 75%;
	padding: 10px;
	margin: auto;
	cursor: pointer;
}

.cmBtn:hover {
	-webkit-box-shadow: inset 0px 0px 5px #000;
     -moz-box-shadow: inset 0px 0px 5px #000;
          box-shadow: inset 0px 0px 5px #000;
   outline: none;
}

.hide {
	display: none;
}

#mask {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #ccc;
	opacity:0.3;
	display: none;
	z-index: 98;
}

#loginMenu {
	width: 400px;
	min-height: 300px;
	margin: 200px auto 0;
	background-color: #fff;
	border: thin solid #ccc;
	padding: 20px 10px;
}

#loginMenu h2 {
	font-weight: lighter;
	text-align: center;
}

#loginMenu input {
	padding: 10px;
	font-size: 1.2em;
	outline: 0;
	border-radius: 5px;
	border: thin solid #999;
}

#loginMenu p {
	width: 100%;
	text-align: center;
}

.rel {
	position: relative;
}

.togglePass {
	position: absolute;
	top: 15px;
	right: 18px;
	cursor: pointer;
}

#loginBtn {
	padding: 10px;
	background-color: #4682b4;
	width: 100%;
	color: #f5f5f5;
}

#loginMenu input:focus {
	border-color: #9ecaed;
    -moz-box-shadow:    0 0 10px #9ecaed;
    -webkit-box-shadow: 0 0 10px #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
}

.lm-cont {
	width: 80%;
	margin: auto;
}

.blueText {
	color: #4682b4;
}

.pointer:not(:disabled) {
	cursor: pointer;
}

#forgotLogin {
	cursor: pointer;
	color: #4682b4;
}

#forgotLogin span {
	
}

.numUnread {
	display: block;
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-size: .7em;
	background-color: #4682b4;
	border-radius: 50%;
	color: #f5f5f5;
	padding: 5px 10px;
}

.contHead {
	width: 100%;
	border-bottom: thin solid #ccc;
	text-align: center;
	box-sizing: border-box;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cgList {
	width: 100%;
	height: calc(100% - 45px);
	overflow-y: scroll;
}

.cgList table {
	width:70%;
	min-width: 1200px;
	background-color: #fff;
	border-radius: 5%;
	margin: 20px auto;
	text-align: left;
	border-collapse: collapse;
}

.users-list table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.cgList tr, .users-list tr {
	border-bottom: thin solid #ccc;
	
}

.cgList th, .users-list th {
	color: #999;
}

.cgList td, .cgList th, .users-list td, .users-list th {
	padding: 15px 10px;
	border:none;
}

.cgList tr, .users-list tr {
	cursor: default;
}

/*.cgList tbody tr:nth-child(even) {
	background-color: #e8e8e8;
}*/

.cgList i, .users-list i {
	color: #888888;
	cursor: pointer;
	margin-left: 5px;
}

.cgList i:hover, .users-list i:hover {
	color: #4682b4;
}

.currentContainer {
	background-color: #555;
}

#cmtContent .contactSearch {
	width: 400px;
	padding:10px;
}

.i {
	-webkit-transition: all 0.05s ease-in-out;
	-moz-transition: all 0.05s ease-in-out;
	-ms-transition: all 0.05s ease-in-out;
	-o-transition: all 0.05s ease-in-out;
	outline: none;
	border: 1px solid #ccc;
	padding: 5px;
}

#cmtContent {
	width: 50%;
	text-align: center;
	margin: auto;
	display: flex;
	justify-content: center;
	height: 100%;
}

/*.contactSearch, #msgSearch {
	-webkit-transition: all 0.05s ease-in-out;
	-moz-transition: all 0.05s ease-in-out;
	-ms-transition: all 0.05s ease-in-out;
	-o-transition: all 0.05s ease-in-out;
	outline: none;
	border: 1px solid #ccc;
	padding: 10px;
}*/

.contactSearch {
	width: 20%;
}

.i:focus {
	box-shadow: 0 0 5px #4682b4;
	
	border: 1px solid #4682b4;
}

/*.cgAdd {
	background-color: #4682b4;
	color: #f5f5f5;
	padding: 10px;
	margin: auto;
	cursor: pointer;
}

.cgAdd:hover {
	-webkit-box-shadow: inset 0px 0px 5px #000;
     -moz-box-shadow: inset 0px 0px 5px #000;
          box-shadow: inset 0px 0px 5px #000;
   outline: none;
}*/

.btn {
	 width:100px;
    text-align:center;    
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #ffffff;
	padding: 10px;
	cursor: pointer;
	background: -moz-linear-gradient(
		top,
		#4682b4 0%,
		#407aab 50%,
		#3b72a3 92%,
		#356b9a);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#4682b4),
		color-stop(0.50, #407aab),
		color-stop(0.92, #3b72a3),
		to(#356b9a));
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #965F06;
	-moz-box-shadow:
		0px 1px 1px rgba(000,000,000,0.5),
		inset 1px 2px 0px rgba(255,255,255,0.4);
	-webkit-box-shadow:
		0px 1px 1px rgba(000,000,000,0.5),
		inset 1px 2px 0px rgba(255,255,255,0.4);
	box-shadow:
		0px 1px 1px rgba(000,000,000,0.5),
		inset 1px 2px 0px rgba(255,255,255,0.4);
	text-shadow:
		1px 1px 2px rgba(000,000,000,0.7),
		0px 1px 0px rgba(255,255,255,0.4);
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float:none;
	text-align: center;
}

#settingsContainer ul {
	list-style: none;
	padding-left: 0;
	width: 1100px;
	margin: auto;
}

.settingsTab {
	float: left;
	cursor: pointer;
	margin-right: 30px;
}

.settingsTab:hover, .settingsTab.cur {
	color: #4682b4;
}

.settings-top {
	background-color: #fff;
}

#settings-content {
	background-color: #e8e8e8;
	height: 100%;
	padding-top: 1%;
}

.settings-section {
	width: 1100px;
	height: 86%;
	background-color: #fff;
	margin: auto;
	overflow-y: auto;
	padding: 1% 2%;
	border: 2px solid #999;
	box-sizing:border-box;
}

.settings-section:not(.cur) {
	display: none;
}
/*.ss-row {
	background-color: #fff;
}*/

.ss-head {
	position: relative;
	width: 100%;
	height: 10%;
}

#profile-photo {
	font-size: 1.7em;
	position: absolute;
	left: 0;
}

#profile-name {
	font-size: 1.2em;
	position: absolute;
	left: 10%;
}

#profile-edit {
	position: absolute;
	right: 2%;
}

#profile-info table {
	width: 100%;
}

#profile-info td {
	padding: 15px 0;
	font-size: 1.2em;
}

.ptd-1 {
	width: 40%;
}

.ptd-2 {
	width: 60%;
}

#profile-info label {
	font-weight: bold;
}

.profile-input, #cb-signature {
	border: none;
	background-color: #fff;
	color: #999;
	outline: none;
	padding: 5px 0;
}

.profile-input:not([disabled]) {
	border-bottom: thin solid #333;
	color: #333;
}

.cb-label {
	font-weight: bold;
}

.cb-desc {
	color: #555;
}

.ssc-item {
	margin-top: 3%;
	margin-bottom: 5%;
	font-size: .8em;
}

.ssc-item ~ .ssc-item {
	margin-top: 0;
}

.pe-controls {
	display: block;
	margin-left: 5px;
}

.pe-controls ~ .pe-controls {
	display: none;
}

.pe-controls:hover {
	text-decoration: underline;
}

#password-change {
	width: 450px;
	height: 320px;
	text-align: center;
}

#password-change input {
	margin: auto;
	width: 80%;
	outline: none;
}

#pw1, #pw2 {
	padding: 10px;
}

#cb-signature {
	padding: 5px 0;
	width: 200px;
	margin-bottom: 5px;
}

#cb-signature:not([disabled]) {
	border: 1px solid #333;
	color: #333;
	padding-left: 5px;
}

#cb-signature:focus {
	box-shadow: 0 0 5px #4682b4;
	border: 1px solid #4682b4;
}

.cb-signature-edit {
	margin-right: 15px;
	display: inline-block;
}

.cb-signature-edit ~ .cb-signature-edit {
	display: none;
}

.ss-label {
	font-weight: bold;
}

#responder-hours-table {
	width: 80%;
	margin: auto;
	border-collapse: collapse;
}

#responder-hours-table th {
	border-bottom: thin solid #ccc;
}

#responder-hours-table th {
	text-align: left;
}

#responder-hours-table th, #responder-hours-table td {
	padding: 10px 0;
}

#responder-hours-table .timepicker {
	width: 80%;
}

.rh-cb {
	width: 4%;
}


.rh-day {
	width: 36%
}

.rh-time {
	width: 25%;
}

.rh-time-err {
	width: 10%;
	font-size: .8em;
	color: red;
	white-space: nowrap;
}

.cb-container {
	overflow: hidden;
}

.cb-container .switch {
	float: left;
}

.cb-status {
	float: left;
	line-height:40px;
	margin-left: 10px;
}

.ar-message {
	width: 100%;
	height: 70px;
	resize: none;
	padding: 5px;
	margin-top: 10px;
}

.ta-options {
	text-align: right;
}

.ta-options i:hover {
	color: #4682b4;
}

.ar-cancel {
	margin-right: 10px;
}

.ar-save, .ar-cancel {
	display: none;
}

.rh-save-hours {
	display: none;
}

.rh-save-hours:hover {
	text-decoration: underline;
}

.inactive {
	color: red;
	font-size: 12px;
	text-align: center;
}

label.error {
    color: red;
    font-size: 1rem;
    display: block;
    margin-top: 5px;
}

label.error.fail-alert {
    border: 2px solid red;
    border-radius: 4px;
    line-height: 1;
    padding: 2px 0 6px 6px;
    background: #ffe6eb;
}

input.valid.success-alert {
    border: 2px solid #4CAF50;
    color: green;
}

input.error, textarea.error {
    border: 1px dashed red;
    font-weight: 300;
    color: red;
}

#contacts-import {
	width: 600px;
	height: 335px;
}

#contacts-import-head {
	padding: 10px 5px;
	font-size: 1.5em;
}

.import-contacts-row {
	margin: 10px auto;
	width: 90%;
}

.file {
	text-align: center;
	width: 100%;
	display: block;
	border: thin solid #ccc;
	padding: 55px 0;
	box-sizing: border-box;
	cursor: pointer;
}

.ta-right {
	text-align: right;
}

.file-custom-held {
	display: none;
}

.tox-toolbar__group:last-child { margin-left: auto!important; }

#text-characters {
	top: 17px;
    position: absolute;
    right: 20px;
    font-size: .6em;
    color: #999;
}

.mct-item {
	float: left;
	margin: 0;
}

.emoji-selector {
	padding-left: 0;
}

