@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);

* {
	border: 0;
	padding: 0;
	margin: 0;
	font-family: Source Sans Pro;
}

html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 50px;
	background: #0B1B51;
	z-index: 1000;
}

header img.logo {
	display: inline-block;
	margin: 12px 2px 0 15px;
}

header h1 {
	display: inline-block;
	font-size: 18px;
	color: #FFF;
	font-weight: 400;
	font-style: italic;
}

header div.right {
	position: absolute;
	top: 10px;
	right: 15px;
	height: 30px;
	line-height: 30px;
}

header div.right h3 {
	display: inline-block;
	font-size: 14px;
	color: #FFF;
	text-align: right;
	font-weight: 400;
	vertical-align: text-bottom;
}

header div.right .icon {
	display: inline-block;
	width: 26px;
	height: 30px;
	padding: 0 10px;
	vertical-align: text-bottom;
	cursor: pointer;
}

header div.right #logout.icon {
	background: url(../images/icons/logout.svg) no-repeat top left;
	background-size: 18px;
	background-position: 20px 6px;
}

header div.right #activity_toggle.icon {
	background: url(../images/icons/activity_light.svg) no-repeat top left;
	background-size: 22px;
	background-position: 15px 1px;
}

header #error {
	display: none;
	position: absolute;
	width: 450px;
	line-height: 26px;
	background: #FFFBC8;
	border: 1px solid #FFF999;
	left: 50%;
	top: 11px;
	margin-left: -235px;
	padding: 0 10px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

div#loader {
	display: none;
	position: absolute;
	width: 450px;
	left: 50%;
	top: 10px;
	margin-left: -235px;
	padding: 0 10px;
	line-height: 28px;
	text-align: center;
}

div#loader h3 {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: #FFF;
	vertical-align: text-bottom;
	padding-left: 14px;
}

div#loader.iconless {
	padding: 0;
}

div#loader div#load_icon {
	display: inline-block;
	position: relative;
	font-size: 10px;
	margin: 0 auto;
	text-indent: -9999em;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #ffffff;
	background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	position: relative;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	z-index: 1010;
	vertical-align: text-bottom;
}

div#loader div#load_icon:before {
	width: 50%;
	height: 50%;
	background: #ffffff;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}

div#loader div#load_icon:after {
	background: #0B1B51;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

@-webkit-keyframes load3 {
0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
}
@keyframes load3 {
0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
}

form#login {
	position: relative;
	width: 450px;
	height: 175px;
	background: #EEE;
	border: 1px solid #CCC;
	border-radius: 1px;
	margin: 100px auto 0 auto;
	padding: 30px 0 0 0;
	text-align: center;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
}

form#login label {
	float: left;
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	width: 160px;
	text-align: right;
	padding: 0 14px 0 0;
	margin-bottom: 12px;
	font-weight: 600;
}

form#login input {
	float: left;
	outline: 0;
	height: 24px;
	line-height: 24px;
	width: 175px;
	font-size: 12px;
	padding: 0 5px 0 5px;
	border: 1px solid #AAA;
	border-bottom: 1px solid #CCC;
	background-color: #FFF;
	vertical-align: text-bottom;
	margin-bottom: 12px;
	border-radius: 1px;
	-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
}

form#login select {
	float: left;
	outline: 0;
	height: 24px;
	line-height: 24px;
	width: 175px;
	font-size: 12px;
	padding: 0 5px 0 5px;
	border: 1px solid #AAA;
	border-bottom: 1px solid #CCC;
	background-color: #FFF;
	vertical-align: text-bottom;
	margin-bottom: 12px;
	border-radius: 1px;
	-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
}

form#login input[type=submit] {
	float: none;
	height: 28px;
	line-height: 28px;
	width: auto;
	font-size: 12px;
	font-weight: 600;
	padding: 0 10px;
	border: 1px solid #AAA;
	background-color: #DDD;
	border-radius: 1px;
	margin: 10px auto 0 auto;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

form#login input[type=submit]:hover {
	background-color: #CCC;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------MAIN LAYOUT----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

ul#mainwrap {
	display: flex;
	list-style: none;
	width: 100%;
	height: calc(100% - 50px);
	font-size: 0;
	margin-top: 50px;
}

ul#mainwrap li {
	position: relative;
	flex-direction: row;
	list-style: none;
	height: calc(100% - 50px);
}

ul#mainwrap li#nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 250px;
	background: #DDD;
	margin: 50px 0 0 0;
	padding: 0;
	border-right: 1px solid #CCC;
	-webkit-box-shadow: inset -6px -1px 5px -8px rgba(0,0,0,0.75);
	-moz-box-shadow: inset -6px -1px 5px -8px rgba(0,0,0,0.75);
	box-shadow: inset -6px -1px 5px -8px rgba(0,0,0,0.75);
	z-index: 999;
}

ul#mainwrap li#main {
	flex-grow: 2;
	margin: 0;
	padding: 15px 250px 15px 250px;
	box-sizing: border-box;
	overflow-y: visible;
}

ul#mainwrap li#activity {
	position: absolute;
	top: 0;
	right: 0;
	width: 250px;
	border-left: 1px solid #CCC;
	background: #FFF;
	margin: 50px 0 0 0;
	-webkit-box-shadow: inset 6px 0px 0px -5px #AAA;
	-moz-box-shadow: inset 6px 0px 0px -5px #AAA;
	box-shadow: inset 6px 0px 0px -5px #AAA;
	z-index: 999;
	text-align: center;
	font-size: 0;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------NAVIGATION----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

#nav #menu {
	width: 100%;
	color: #222;
}

#nav #menu li {
	list-style: none;
	cursor: pointer;
	color: #000;
	background-color: #DDD;
	height: auto;
}

#nav #menu li h3 {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 42px;
	padding-left: 50px;
	box-sizing: border-box;
}

#nav #menu li a {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	color: #000;
}

#nav #menu li h3.icon-dashboard {
	background: url(../images/icons/dashboard.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 11px;
}

#nav #menu li h3.icon-manager {
	background: url(../images/icons/manager.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 10px;
}

#nav #menu li h3.icon-toolbox {
	background: url(../images/icons/toolbox.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 8px;
}

#nav #menu li h3.icon-services {
	background: url(../images/icons/services.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 8px;
}

#nav #menu li h3.icon-activity {
	background: url(../images/icons/activity_dark.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 8px;
}


#nav #menu li h3.icon-settings {
	background: url(../images/icons/settings.svg) no-repeat top left;
	background-size: 20px;
	background-position: 14px 9px;
}

#nav #menu li h3:hover {
	background-color: #C6C6C6;
}

#nav #menu ul ul {
	display: none;
}

#nav #menu ul ul li h3 {
	display: block;
	color: #222;
	font-weight: 600;
	text-decoration: none;
	font-size: 12px;
	line-height: 27px;
	padding: 0 60px;
	background-image: url(../images/icons/listbullet.svg);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 30px 8px;
	transition: all 0.10s;
}

#nav #menu ul ul li.set h3 {
	background-image: url(../images/icons/toolset.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: 29px 7px;
}

#nav #menu ul ul li:not(.set) h3:hover {
	background-position: 33px 8px;
}

#nav #menu ul ul ul li h3 {
	padding: 0 0 0 75px;
	background-image: url(../images/icons/action.svg);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 45px 8px;
	transition: all 0.1s;
}

#nav #menu ul ul li.set ul li h3 {
	background-image: url(../images/icons/tool.svg);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 45px 8px;
}

#nav #menu ul ul ul li h3:hover {
	background-position: 45px 8px !important;
}

#nav #menu li.active ul {
	display: block;
}

#nav #menu li.active ul ul {
	display: none;
}

#nav #categories {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	border-top: 1px solid #CCC;
	background: #DDD;
	-webkit-box-shadow: inset 0px 6px 0px -5px  #CCC;
	-moz-box-shadow: inset 0px 6px 0px -5px  #CCC;
	box-shadow: inset 0px 6px 0px -5px  #CCC;
	box-sizing: border-box;
	padding: 20px 10px 10px 10px;
	font-size: 14px;
}

#nav #categories li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
}

#nav #categories li:before {
	width: 16px;
	height: 16px;
	background: #111;
	border-radius: 100%;
	border: 1px solid #333;
	position: absolute;
	top: 0px;
	left: 2px;
	content: '';
}

#nav #categories li.cat1:before {
	background-color: #6EE978;
}

#nav #categories li.cat2:before {
	background-color: #FBE978;
}

#nav #categories li.cat3:before {
	background-color: #F9C248;
}

#nav #categories li.cat4:before {
	background-color: #F78E2F;
}

#nav #categories li.cat5:before {
	background-color: #F65B65;
}

#nav #categories li.cat0:before {
	background-color: #CCC;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------ACTIVITY-----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

#activity h2 {
	font-size: 14px;
	color: #222;
	padding: 10px 0 5px 0;
	text-align: center;
}

#activity #activity_view {
	font-size: 0;
	width: auto;
	margin: 5px auto;
	text-align: center;
}

#activity ul {
	list-style: none;
	margin-top: 10px;
}

#activity div.loader {
	position: absolute;
	top: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 28px;
	background-image: url('../images/spinner.gif');
	background-size: 28px 28px;
	background-position: center center;
	background-repeat: no-repeat;
}

#activity #activity_status {
	margin: 10px 0 0 0;
	padding: 0px 15px;
	height: calc(100% - 150px);
	overflow: hidden;
	border: 1px solid #
}

#activity #activity_status ul {
	margin: 0;
	padding: 0;
}

#activity #activity_status ul li {
	height: auto;
	padding-bottom: 10px;
	margin-top: 10px;
	border-bottom: 1px solid #DDD;
	text-align: left;
	color: #333;
	font-size: 13px;
	font-weight: 400;
}

#activity #activity_status ul li span {
	display: block;
	text-align: right;
	width: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #999;
}

#activity #activity_comments {
	margin: 10px 0 0 0;
	height: calc(100% - 280px);
}

#activity #activity_comments div.comment-stream {
	position: relative;
	width: 224px;
	height: calc(100%);
	margin: 0 auto;
	list-style: none;
	overflow: hidden;
}

#activity #activity_comments div.comment-stream div.fade {
	position: absolute;
	top: 0;
	width: 224px;
	height: 10px; /* FF3.6-15 */
	background: -moz-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
	background: -o-linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
	z-index: 1010;
}

#activity #activity_comments div.comment-stream ul
#activity #activity_communication ul {
	margin: 0;
	padding: 0;
}

#activity #activity_communication {
	margin: 10px 0 0 0;
	padding: 0px 15px;
	height: calc(100% - 150px);
	overflow: hidden;
}

#activity #activity_comments div.comment-stream ul li,
#activity #activity_communication ul li {
	height: auto;
	padding: 0 0 14px 0;
	width: 100%;
	box-sizing: border-box;
}

#activity #activity_communication ul li.empty {
	text-align: center;
	font-size: 13px;
	color: #000;
	padding-top: 20px;
}

#activity #activity_comments div.comment-stream ul li div.msg,
#activity #activity_communication ul li div.msg {
	padding: 6px 8px;
	font-size: 13px;
	text-align: left;
	background: #CDDEEA;
	border: 1px solid #596A90;
	border-radius: 2px;
	width: 100%;
	word-wrap: break-word;
	box-sizing: border-box;
}

#activity #activity_comments div.comment-stream ul li div.info,
#activity #activity_communication ul li div.info {
	display: block;
	width: 100%;
	padding: 5px 0 0 0;
	font-size: 12px;
	text-align: right;
	color: #555;
}

#activity #activity_communication ul li div.info {
	text-align: left;
	padding: 5px 0 0 2px;
}

#activity #activity_communication ul li div.msg {
	background: #E8E8E8;
	border: 1px solid #777;
	margin: 0 4px 0 0;
}

#activity #activity_comments div.comment-new {
	position: absolute;
	bottom: 65px;
	left: 50%;
	width: 225px;
	height: 121px;
	margin: 0 0 0 -112px;
	text-align: right;
}

#activity #activity_comments div.comment-new textarea {
	padding: 6px 8px;
	width: 225px;
	height: 90px;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 2px;
	font-size: 13px !important;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

#activity #activity_comments button {
	padding: 2px 4px;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 2px;
	font-size: 13px;
	margin: 14px 0 0 0;
	background: #DDD;
	transition: all 0.1s;
}

#activity #activity_comments button:hover {
	background: #CCC;
	cursor: pointer;
}

#activity #activity_comments div.comment-new textarea.empty {
	color: #999;
	font-style: italic;
}

#activity ul#activity_footer {
	display: flex;
	flex-direction: row;
	position: absolute;
	width: 100%;
	height: 48px;
	bottom: 0;
	right: 0;
	list-style: none;
	border-top: 1px solid #BBB;
	box-sizing: border-box;
	padding: 0;
	font-size: 14px;
}

#activity ul#activity_footer li {
	position: relative;
	flex-grow: 1;
	height: 100%;
	border-left: 1px solid #D6D6D6;
    background-color: #EEE;
	text-align: center;
	-webkit-box-shadow: inset 0px 6px 0px -5px  #CCC;
	-moz-box-shadow: inset 0px 6px 0px -5px  #CCC;
	box-shadow: inset 0px 6px 0px -5px  #CCC;
	cursor: pointer;
	transition: all 0.1s;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
}

#activity ul#activity_footer li.selected {
    background-color: #DDD;
}


#activity ul#activity_footer li#activity_btn_status {
	background-image: url('../images/icons/status.svg');
}

#activity ul#activity_footer li#activity_btn_comments {
	background-image: url('../images/icons/comments.svg');
}

#activity ul#activity_footer li#activity_btn_communication {
	background-image: url('../images/icons/communication.svg');
}

#activity ul#activity_footer li#activity_btn_communication.unread {
	background-image: url('../images/icons/communication_red.svg');
}

#activity ul#activity_footer li:first-child {
	border-left: 1px solid #BBB;
}

#activity ul#activity_footer li:hover {
    background-color: #DDD;
}

/*---------------------------------------------------------------------------------------------------*/
/*-------------------------------------------DATA CONTROLLER-----------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/

div#data_controller {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin: 50px 0;
	padding: 10px 265px 0 265px;
	font-size: 0;
	background: rgba(255,255,255,0.8);
	box-sizing: border-box;
	z-index: 998;
}

div#data_controller.disabled > div.disabled {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	opacity: 0.35;
	z-index: 1500;
}

div#data_controller h3 {
	font-size: 12px;
	font-weight: 400;
	padding: 0 0 8px 0;
	box-sizing: border-box;
}

div#data_controller h3.meter {
	padding-left: 50px;
	background: #000;
	font-size: 20px;
}

div#data_controller h3.meter.heat {
	background: url(../images/icons/heat.svg) no-repeat top left;
	background-size: 24px;
	background-position: 2px 2px;
}

div#data_controller h3 span.levelup {
	font-weight: 600;
	padding: 0 5px 0 20px;
	box-sizing: border-box;
	background: url(../images/icons/levelup.svg) no-repeat top left;
	background-size: 11px;
	background-position: 2px 2px;
	cursor: pointer;
}

div#data_controller h3 span.stepout {
	padding: 0 0 0 20px;
	margin-left: 5px;
	box-sizing: border-box;
	background: url(../images/icons/stepout.svg) no-repeat top left;
	background-size: 11px;
	background-position: 2px 2px;
	cursor: pointer;
}

div#data_controller h3 span.stepout.disabled {
	opacity: 0.5;
}

div#data_controller h3 span.trail:hover {
	text-decoration: underline;
	cursor: pointer;
}

div#data_controller h3 span.trail:not(.customer):not(.empty) {
	padding-left: 20px;
	background: url(../images/icons/levelin.svg) no-repeat top left;
	background-size: 12px;
	background-position: 2px 2px;
}

div#data_controller div.container {
	position: relative;
	width: 100%;
	display: -webkit-flex;
	display: flex;
}

#data_controller input[type=text].search {
	outline: 0;
	-moz-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	height: 28px;
	font-size: 12px;
	padding: 0 30px 0 6px;
	border: 1px solid #CCC;
	border-left: 1px solid #E4E4E4;
	background-color: #EEE;
	background: url(../images/icons/search.svg) no-repeat top right;
	background-size: 18px;
	background-position: right 7px top 5px;
	vertical-align: text-bottom;
}

#data_controller input[type=text].search::-ms-clear {
    display: none;
}

#data_controller input[type=text].search:focus {
	border: 1px solid #5897fb;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

button.radio,
input[type=button].radio {
	outline: 0;
	-webkit-appearance: none;
    display:inline-block;
    margin-left: -1px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    cursor: pointer;
	border-radius: 0;
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
    background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
    background-image: -o-linear-gradient(top,#fff,#e6e6e6);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #CCC;
    border-bottom-color: #BBB;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
	vertical-align: text-bottom;
}

button.radio img {
	width: 14px;
	height: 14px;
	vertical-align: text-bottom;
}

button.radio:hover,
input[type=button].radio:hover {
	background-image: none;
	outline: 0;
	background-color:#DDDDDD;
}

input[type=button].radio.selected {
	background: #DDD;
}

#main ul input[type=text] {
	line-height: 20px;
	border: 1px solid #999;
	padding: 0 5px;
	font-weight: bold;
}

textarea {
	border: 1px solid #999;
	width: 70%;
	height: 50px;
	padding: 5px;
	font-size: 12px !important;
}

select {
	outline: 0;
	height: 24px;
	line-height: 24px;
	width: 175px;
	font-size: 12px !important;
	padding: 0 5px 0 5px;
	border: 1px solid #AAA;
	border-bottom: 1px solid #CCC;
	background-color: #FFF;
	border-radius: 1px;
	-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
}

#main ul input[type=button] {
	outline: 0;
	-webkit-appearance: none;
    display:inline-block;
    margin-left: -1px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    cursor: pointer;
	border-radius: 0;
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
    background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
    background-image: -o-linear-gradient(top,#fff,#e6e6e6);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #CCC;
    border-bottom-color: #BBB;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
	transition: background-color 0.15s ease;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------DASHBOARD-----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

#main.dashboard ul.row {
	width: 100%;
	list-style: none;
	font-size: 0;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}

#main.dashboard ul.row.single li {
	display: inline-block;
	width: 99%;
	height: 175px;
	padding: 0 10px;
	box-sizing: border-box;
	vertical-align: text-bottom;
}

#main.dashboard ul.row.single ul.data-collection li {
	display: inline-block;
	width: 33%;
	height: 110px;
}

#main.dashboard ul.row.triple li {
	display: inline-block;
	width: 33%;
	height: 175px;
	padding: 0 10px;
	box-sizing: border-box;
	vertical-align: text-bottom;
}

#main.dashboard ul.row li div.box {
	display: block;
	height: 100%;
	width: 100%;
	border:1px solid #CCC;
	box-sizing: border-box;
	background: linear-gradient(135deg, #F4F4F4 0%,#E8E8E8 45%,#E9E9E9 65%,#EEEEEE 100%);
	box-shadow: 0px 0px 4px 0px #DDD;
	border-radius: 1px;
	transition: all 0.2s;
}

#main.dashboard ul.row li:hover div.box {
	box-shadow: 0px 0px 4px 0px #BBB;
}

#main.dashboard ul.row li h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 16px 0 0 0;
}

#main.dashboard ul.row li h4 {
	font-size: 14px;
	line-height: 23px;
	height: 23px;
	font-weight: 400;
	margin: 16px 0 0 0;
}

#main.dashboard ul.row li h5 {
	font-size: 14px;
	font-weight: 400;
	margin: 14px 0 0 0;
	color: #666;
}

#main.dashboard ul.row li h6 {
	font-size: 14px;
	font-weight: 300;
	margin: 2px 0 0 0;
	color: #222;
}

#main.dashboard ul.row li div.status {
	width: 50px;
	height: 50px;
	border: 2px solid #FFF;
	border-radius: 100%;
	background: url(../images/icons/ellipsis.svg) no-repeat top right;
	background-size: 30px;
	background-position: 10px 10px;
	background-color: #E4B842;
	box-shadow: 0px 0px 8px 0px #CCC;
	margin: 10px auto 10px auto;
}

#main.dashboard ul.row li div.success div.status {
	background: url(../images/icons/tick.svg) no-repeat top right;
	background-size: 30px;
	background-position: 10px 10px;
	background-color: #73A908;
}

#main.dashboard ul.row li div.running div.status {
	background: url(../images/icons/running.svg) no-repeat top right;
	background-size: 30px;
	background-position: 10px 10px;
	background-color: #73A908;
}

#main.dashboard ul.row li div.fail {
	border: 1px solid #DD0808;
}

#main.dashboard ul.row li div.fail div.status {
	background: url(../images/icons/error.svg) no-repeat top right;
	background-size: 26px;
	background-position: 12px 12px;
	background-color: #DD0808;
}

#main.dashboard ul.row li div table.stat {
	width: auto;
	font-size: 14px;
	margin: 0 auto;
}

#main.dashboard ul.row li div table.stat tr td {
	font-weight: 300;
	color: #222222;
	text-align: left;
	padding: 0 7px;
	white-space: nowrap;
}

#main.dashboard ul.row li div table.stat tr td:first-child {
	font-weight: 400;
	color: #555555;
	text-align: right;
}


#main.dashboard ul.row li div.count {
	width: auto;
	height: 50px;
	font-size: 38px;
	color: #222;
	text-shadow: 0 0 4px #EEE;
	margin: 24px auto 0 auto;
}

#main.dashboard ul.row li div.count.percentup span.percentdir {
	background: url(../images/icons/percentup.svg) no-repeat top right;
	background-size: 26px;
	background-position: 0 7px;
	padding-left: 34px;
	font-size: 32px;
	font-weight: 300;
	color: #004A11;
}

#main.dashboard ul.row li div.count.percentequal span.percentdir {
	background: url(../images/icons/percentequal.svg) no-repeat top right;
	background-size: 26px;
	background-position: 0 7px;
	padding-left: 34px;
	font-size: 32px;
	font-weight: 300;
	color: #A16B00;
}

#main.dashboard ul.row li div.count.percentdown span.percentdir {
	background: url(../images/icons/percentdown.svg) no-repeat top right;
	background-size: 26px;
	background-position: 0 7px;
	padding-left: 34px;
	font-size: 32px;
	font-weight: 300;
	color: #A70003;
}

#main.dashboard ul.row.single li div.count {
	margin: 6px auto 0 auto;
}

div.percent-bar {
	width: 90%;
	height: 25px;
	border: 1px solid #AAA;
	background: #CCC;
	margin: 0 auto;
	text-align: left;
	box-shadow: 0px 0px 5px 0px #CCC;
	white-space: nowrap;
	overflow: hidden;
}

div.percent-bar div.filler {
	display: inline-block;
	height: 100%;
}

div.percent-bar div.filler.cat1 {
	background: linear-gradient(180deg, #6EE978 0%,#67DB6F 100%);
}

div.percent-bar div.filler.cat2 {
	background: linear-gradient(180deg, #FBE978 0%,#ECDD71 100%);
}

div.percent-bar div.filler.cat3 {
	background: linear-gradient(180deg, #F9C248 0%,#F0BE45 100%);
}

div.percent-bar div.filler.cat4 {
	background: linear-gradient(180deg, #F78E2F 0%,#EB872D 100%);
}

div.percent-bar div.filler.cat5 {
	background: linear-gradient(180deg, #F65B65 0%,#E7565E 100%);
}

div.percent-bar div.filler.cat0 {
	background: linear-gradient(180deg, #CCC 0%,#C0C0C0 100%);
}

div.percent-bar div.dashboard-filler {
	display: inline-block;
	height: 100%;
}

div.percent-bar div.dashboard-filler.cat1 {
	background: linear-gradient(180deg, #6EE978 0%,#67DB6F 100%);
}

div.percent-bar div.dashboard-filler.cat2 {
	background: linear-gradient(180deg, #FBE978 0%,#ECDD71 100%);
}

div.percent-bar div.dashboard-filler.cat3 {
	background: linear-gradient(180deg, #F9C248 0%,#F0BE45 100%);
}

div.percent-bar div.dashboard-filler.cat4 {
	background: linear-gradient(180deg, #F78E2F 0%,#EB872D 100%);
}

div.percent-bar div.dashboard-filler.cat5 {
	background: linear-gradient(180deg, #F65B65 0%,#E7565E 100%);
}

div.percent-bar div.dashboard-filler.cat0 {
	background: linear-gradient(180deg, #CCC 0%,#C0C0C0 100%);
}

#main.dashboard div#historic_graph {
	position: absolute;
	height: 135px !important;
	width: 100%;
}

#main table.csv-preview {
	font-size: 12px;
	width: 100%;
	text-align: left;
	padding: 8px;
}

#main table.csv-preview td {
	padding: 4px 2px;
	border-top: 1px solid #BBB;
}

#main table.csv-preview tr.error td {
	color: #F00;
}

#main table.csv-preview tr:first-child td {
	font-weight: bold;
	border-top: 0;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------DATA VIEWER----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

ul#data_viewer {
	width: auto;
	height: calc(100% - 78px);
	padding: 0 0 0 0;
	list-style: none;
	margin: 78px 15px 0 15px;
	box-sizing: border-box;
}

ul#data_viewer li {
	position: relative;
	border: 1px solid #CCC;
	border-bottom: 0;
	height: 45px;
	overflow: visible;
}

ul#data_viewer li.header {
	border-bottom: 1px solid #DDD;
	height: 40px;
	line-height: 40px;
	cursor: auto;
}

ul#data_viewer li.footer {
	position: relative;
	border: 0;
	border-top: 2px solid #DDD;
	height: 50px;
	line-height: 30px;
	text-align: center;
	cursor: auto;
}

ul#data_viewer li.footer span {
	padding: 0 10px;
	height: 50px;
	line-height: 50px;
	color: #888;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

ul#data_viewer li.footer span.more:after {
	content: "Load More...";
}

ul#data_viewer li.footer span.loading:after {
	display: inline-block;
	content: "Retrieving Hierarchy...";
	background-image: url('/public/images/spinner.gif');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 32px;
	padding-top: 30px;
	margin-top: 35px;
	color: #0B1B51;
	font-weight: normal;
}

ul#data_viewer li div.checked {
	display: inline-block;
	width: 45px;
	height: 45px;
	border-right: 1px solid #CCC;
	text-align: center;
	vertical-align: text-bottom;
	cursor: pointer;
}

ul#data_viewer li.header div.checked {
	height: 40px;
}

ul#data_viewer li div.checked input[type=checkbox] {
	margin-top: 16px;
}

ul#data_viewer li.header div.checked input[type=checkbox] {
	margin-top: 12px;
}

ul#data_viewer li h3 {
	display: inline-block;
	vertical-align: text-bottom;
	line-height: 45px;
	font-size: 14px;
	font-weight: 600;
	padding: 0 0 0 10px;
	width: 80%;
	cursor: pointer;
}

ul#data_viewer li h3.meter {
	padding-left: 34px;
}

ul#data_viewer li h3.meter.heat {
	background: url(../images/icons/heat.svg) no-repeat top left;
	background-size: 18px;
	background-position: 8px 15px;
}

ul#data_viewer li h3.meter.electric {
	background: url(../images/icons/electric.svg) no-repeat top left;
	background-size: 18px;
	background-position: 10px 13px;
}

ul#data_viewer li h3.meter.gas {
	background: url(../images/icons/gas.svg) no-repeat top left;
	background-size: 18px;
	background-position: 9px 12px;
}

ul#data_viewer li h3.meter.water {
	background: url(../images/icons/water.svg) no-repeat top left;
	background-size: 18px;
	background-position: 10px 13px;
}

ul#data_viewer li h3.meter.humidity {
	background: url(../images/icons/humidity.svg) no-repeat top left;
	background-size: 18px;
	background-position: 10px 13px;
}

ul#data_viewer li h3.meter.cooling {
	background: url(../images/icons/cooling.svg) no-repeat top left;
	background-size: 18px;
	background-position: 9px 13px;
}

ul#data_viewer li h3.meter.fault {
	background: url(../images/icons/fault.svg) no-repeat top left;
	background-size: 18px;
	background-position: 9px 13px;
}

ul#data_viewer ul.status {
	position: absolute;
	top: 0;
	right: 0;
	height: 45px;
	font-size: 0;
	margin-right: 4px;
	background-color: rgba(255,255,255,0.75);
}

ul#data_viewer li.header ul.status {
	height: 40px;
}

ul#data_viewer ul.status li {
	display: inline-block;
	width: 30px;
	padding: 2px 7px;
	margin: 3px 2px;
	font-size: 14px;
	line-height: 35px;
	height: 35px;
	font-weight: 400;
	border: 0;
	text-align: center;
	vertical-align: text-bottom;
}

ul#data_viewer ul.status li.count {
	font-weight: 600;
}

ul#data_viewer ul.status li.cat1 {
	background-color: #6EE978;
	color: #222;
}

ul#data_viewer ul.status li.cat2 {
	background-color: #FBE978;
	color: #222;
}

ul#data_viewer ul.status li.cat3 {
	background-color: #F9C248;
	color: #222;
}

ul#data_viewer ul.status li.cat4 {
	background-color: #F78E2F;
	color: #222;
}

ul#data_viewer ul.status li.cat5 {
	background-color: #F65B65;
	color: #222;
}

ul#data_viewer ul.status li.cat0 {
	background-color: #CCC;
	color: #222;
}

ul#data_viewer ul.status li.meter {
	font-weight: 600;
	border-radius: 30px;
	width: 35px;
	padding: 0;
	margin: 4px 7px;
	color: #FFF;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
	box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.2);
	border: 1px solid #777;
}

ul#data_viewer ul.status li.minuteview {
	position: relative;
	background: url(../images/icons/minuteview.svg) no-repeat top left;
	background-size: 54px;
	background-position: -11px 2px;
	width: 34px;
	padding-left: 0;
	opacity: 0.6;
	transition: all 0.1s;
	overflow: hidden;
	padding: 0;
}

ul#data_viewer ul.status li.minuteview a {
	display: block;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

ul#data_viewer ul.status li.minuteview:hover {
	opacity: 1;
	cursor: pointer;
}

ul#data_viewer ul.status li.comment {
	width: auto;
	color: #666;
}

ul#data_viewer li.header ul.status li {
	background-color: #FFF;
	line-height: 30px;
	height: 20px;
	font-weight: 600;
}

.dialog {
	display: none;
	height: auto;
	text-align: center;
}

.dialog ul.two-column {
	display: block;
	list-style: none;
	width: 100%;
	font-size: 0;
	margin: 0;
	padding: 15px 0 0 0;
}

.dialog ul.two-column li {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 4px 12px;
	vertical-align: text-top;
	height: 100%;
	overflow: hidden;
}

.dialog div.step {
	display: none;
	width: 100%;
	text-align: center;
}

.dialog h1 {
	font-size: 14px;
	border: 1px solid #AAA;
	border-radius: 2px;
	background: #DDD;
	padding: 8px 10px;
	margin: 0 -8px;
	color: #222;
	font-weight: 600;
	background-image: url('../images/icons/tool.svg');
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: center right 8px;
	box-shadow: 0px 0px 4px 0px #DDD;
	text-align: left;
}

.dialog h2 {
	font-size: 14px;
	font-weight: bold;
	padding: 10px 0;
	width: 100%;
	text-align: left;
}

.dialog h3 {
	font-size: 14px;
	font-weight: normal;
	padding: 0 0 10px 0;
	width: 100%;
	text-align: left;
}

.dialog h5 {
	font-size: 14px;
	font-weight: 600;
	padding: 6px 8px;
	width: 90%;
	text-align: left;
	border: 1px solid #555;
	margin: 20px auto 5px auto;
	text-align: center;
	background: #FFF2CE;
	color: #555;
}

.dialog label {
	display: inline-block;
	font-weight: bold;
	padding: 3px 5px;
	vertical-align: text-top;
}

.dialog input {
	display: inline-block;
	vertical-align: text-top;
}

.dialog input.empty {
	color: #999;
	font-size: 11px;
}

.dialog button {
	padding: 4px 6px;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 2px;
	font-size: 13px;
	margin: 10px 0 0 0;
	background: #DDD;
	transition: all 0.1s;
}

.dialog button:hover {
	background: #CCC;
	cursor: pointer;
}

.dialog .tablewrapper {
	padding: 0;
	margin: 0;
	width: auto;
	max-height: 300px;
	overflow-y: scroll;
}

.dialog table.data {
	display: table;
	margin: 6px auto;
}

.dialog table.data thead td {
	background: #DDD;
	border-bottom: 0;
}

.dialog table.data tr.title td {
	background: #DDD;
	font-weight: bold;
}

.dialog table.data tr td {
	border: 1px solid #999;
	border-right: 0;
	border-bottom: 0;
	text-align: left;
	padding: 6px 4px;
}

.dialog table.data.alt tbody tr:nth-child(even) td {
	background-color: #EEE;
}

.dialog table.data tbody td.map {
	border-left: 0;
	width: 20px;
	background-image: url('../images/icons/map.svg');
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}

.dialog table.data tbody tr.mapshow td {
	height: 0;
	padding: 0;
	margin: 0;
	font-size: 0 !important;
}

.dialog table.data tr:last-child td {
	border-bottom: 1px solid #999;
}

.dialog table.data tr td:last-child {
	border-right: 1px solid #999;
}

.dialog div.loader {
	margin: 20px auto 0 auto;
	text-align: center;
	width: 100%;
}

.dialog div.loader h3 {
	display: inline-block;
	font-size: 15px;
	line-height: 12px;
	margin-left: 10px;
	width: auto;
	text-align: left;
	vertical-align: text-bottom;
}

.dialog div.load_icon {
	display: inline-block;
	position: relative;
	font-size: 10px;
	margin: 0 auto 0 auto;
	text-indent: -9999em;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #0B1B51;
	background: -moz-linear-gradient(left, #0B1B51 10%, rgba(11, 27, 81, 0) 42%);
	background: -webkit-linear-gradient(left, #0B1B51 10%, rgba(11, 27, 81, 0) 42%);
	background: -o-linear-gradient(left, #0B1B51 10%, rgba(11, 27, 81, 0) 42%);
	background: -ms-linear-gradient(left, #0B1B51 10%, rgba(11, 27, 81, 0) 42%);
	background: linear-gradient(to right, #0B1B51 10%, rgba(11, 27, 81, 0) 42%);
	position: relative;
	-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	z-index: 1010;
	vertical-align: text-bottom;
}

.dialog div.load_icon:before {
	width: 50%;
	height: 50%;
	background: #0B1B51;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}

.dialog div.load_icon:after {
	background: #FFFFFF;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.dialog table.standard {
	display: none;
	font-size: 14px;
	width: 100%;
	text-align: left;
}

.dialog table.standard tr td {
	padding: 5px 0;
}

.dialog table.standard tr td:first-child {
	font-weight: 600;
}

.dialog table.standard tr.section-start td {
	padding-top: 10px;
}

.dialog table.standard tr.sub td {
	padding-left: 20px;
	color: #777;
	font-weight: normal;
}

.dialog table.standard tr.section-end td {
	border-bottom: 1px solid #CCC;
	padding-bottom: 10px;
}

.dialog input {
	outline: 0;
	height: 24px;
	line-height: 24px;
	width: 175px;
	font-size: 12px;
	padding: 0 5px 0 5px;
	border: 1px solid #AAA;
	border-bottom: 1px solid #CCC;
	background-color: #FFF;
	vertical-align: text-top;
	border-radius: 1px;
	-webkit-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
	box-shadow: inset 0px 0px 2px 0px rgba(0,0,0,0.2);
}

.dialog input::-ms-clear {
    display: none;
}

.dialog .feedback {
	display: none;
	font-size: 14px;
	text-align: center;
	padding-top: 25px;
}

.dialog .feedback.error {
	color: #C00;
}

.dialog .feedback.success {
	color: #090;
}

.dialog .warning {
	width: 100%;
	background: #FFFBC8;
	border: 1px solid #D7A635;
	color: #333;
	text-align: center;
	padding: 6px 6px;
	margin: 10px auto 0 auto;
	font-size: 14px;
	border-radius: 2px;
	box-sizing: border-box;
}

/*---------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------TOOLBOX------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------*/

ul#newbudget li input[type=text] {
	background-color: #fff;
	border: 1px solid #bbb;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	display: inline-block;
	padding: 2px 0 !important;
	margin: -5px 0 12px 0 !important;
	color: #555;
	border-radius: 2px;
	cursor: text;
	font-size: 12px;
	text-align: left;
	width: 70px;
	text-align: center;
}

ul#newbudget {
	list-style: none;
}

ul#newbudget li {
	display: inline-block;
	width: 33%;
	box-sizing: border-box;
	text-align: center;
}

ul#newbudget li h2 {
	display: inline-block;
	margin-right: 10px;
	width: 30px;
	text-align: right;
}

<!------------------------------------------------SMS-------------------------------------------->

ul#send_sms_inbox {
	list-style: none;
	font-size: 0;
	width: 100%;
	padding: 0;
	margin: 0;
}

ul#send_sms_inbox li {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 0 5px 0;
	text-align: left;
}

ul#send_sms_inbox li.load {
	text-align: center;
	margin-top: 100px;
	height: 50px;
	padding: 10px;
	font-size: 14px;
}

ul#send_sms_inbox li.more {
	text-align: center;
	cursor: pointer;
	font-size: 13px;
	color: #777;
	text-decoration: underline;
	cursor: pointer;
}

ul#send_sms_inbox li.sent {
	position: relative;
	text-align: right !important;
}

ul#send_sms_inbox li span.resend {
	opacity: 0;
	position: absolute;
	top: 7px;
	left: 14px;
	width: 15px;
	height: 15px;
	background-image: url('../images/icons/resend.svg');
	background-repeat: no-repeat;
	background-size: 15px;
	background-size: contain;
	transition: all 0.25s;
	cursor: pointer;
}

ul#send_sms_inbox li:hover span.resend {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: rotate(21deg); /* Chrome, Safari, Opera */
    transform: rotate(21deg);
}

ul#send_sms_inbox li div.msg {
	position: relative;
	display: inline-block;
	width: 84%;
	padding: 4px 6px;
	border: 1px solid #000;
	font-size: 13px;
	text-align: left;
	border-radius: 4px;
	word-wrap: break-word;
}

ul#send_sms_inbox li.sent div.msg {
	position: relative;
	background: #CDDEEA;
	border: 1px solid #596A90;
}

ul#send_sms_inbox li.received div.msg {
	background: #EEE;
	border: 1px solid #777;
}

ul#send_sms_inbox li div.info {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 2px 4px 0 4px;
	font-size: 12px;
	text-align: left;
	color: #555;
}

ul#send_sms_inbox li.sent div.info span.status {
	display: inline-block;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px;
	padding-left: 12px;
	vertical-align: text-bottom;
}

ul#send_sms_inbox li.sent.error div.info span.status {
	background-image: url('../images/icons/sms_error.svg');
}

ul#send_sms_inbox li.sent.success div.info span.status {
	background-image: url('../images/icons/sms_success.svg');
}

ul#send_sms_inbox li.sent.pending div.info span.status {
	background-image: url('../images/icons/sms_pending.svg');
}

ul#send_sms_inbox li.sent div.info {
	text-align: right;
}

<!------------------------------------------------WEATHER-------------------------------------------->

#weatherset ul {
	width: 100%;
	list-style: none;
}

#weatherset ul li {
	display: inline-block;
	width: 50% !important;
	box-sizing: border-box;
	padding: 16px;
}

#weatherset #weathermap {
	width: 100%;
	height: 250px;
	margin-left: 6px;
}

#weatherdata div.success,
#weatherend h4 div.success {
	width: 20px;
	height: 20px;
	background: url(../images/icons/tick.svg) no-repeat top right;
	background-size: 12px;
	background-position: 4px 4px;
	background-color: #73A908;
	border-radius: 100%;
	border: 1px solid #FFF;
	display: inline-block;
	margin: 1px 10px 0 10px;
	vertical-align: bottom;
}

@media screen and (max-width: 976px) {
	li#main {
		padding-right: 0 !important;
	}

    li#activity {
        margin-right: -250px !important;
    }
}

.sending:before,
.sending:after,
.sending {
	border-radius: 50%;
	width: 1em;
	height: 1em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}
.sending {
	font-size: 10px;
	margin: 10px auto 30px auto;
	position: relative;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.sending:before {
	left: -3.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.sending:after {
	left: 3.5em;
}
.sending:before,
.sending:after {
	content: '';
	position: absolute;
	top: 0;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 1em 0 -1.3em #0B1B51;
  }
  40% {
    box-shadow: 0 1em 0 0 #0B1B51;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 1em 0 -1.3em #0B1B51;
  }
  40% {
    box-shadow: 0 1em 0 0 #0B1B51;
  }
}
