html,
body {
	height: 100%;
}

body {
	padding: 50px 0 0 0;
	font-family: 'Roboto Condensed', sans-serif;
}

body .container:first-child {
	margin-top: 15px;
}

.input-group .form-control {
	z-index: 0;
}

.table tbody>tr>td.vert-align {
	vertical-align: middle;
}

.header {
	background-color: #EEEEEE;
	width: 100%;
}

.spacer {
	margin-top: 100px;
	/* define margin as you see fit */
}

.media {
	margin: 10px 0;
	padding: 10px;
}

.dp {
	/* border: 10px solid #fff; */
	transition: all 0.2s ease-in-out;
}

.dp:hover {
	border: 2px solid #eee;
	transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	/*-webkit-font-smoothing:antialiased;*/
}

.colorgraph {
	background: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4) repeat scroll 0 0 #c4e17f;
	border-radius: 5px;
	border-top: 0 none;
	height: 5px;
}

.popover {
	max-width: 800px;
	width: auto;
}

.costo,
.ricarico,
.prezzo,
.numbers {
	text-align: right;
}

.navbar-toggle {
	float: left;
	margin-left: 15px;
}

.nopadding {
	padding: 0 !important;
}

.nomargin {
	margin: 0 !important;
}

.noborder {
	border: 0 !important;
}

.sn {
	border: 1px solid;
	border-radius: 10px;
	padding: 3px;
	color: white;
	background-color: grey;
	display: inline-block;
}

@media (min-width: 0) {
	.navbar-toggle {
		display: block;
		/* force showing the toggle */
	}

	.tohideonlarge {
		display: block !important;
	}	
	
	.tohideonlarge h1 {
		display: none !important;
	}

	.tohideonsmall {
		display: none !important;
	}
}

@media (min-width: 992px) {
	body {
		padding: 0;
	}

	.navbar {
		right: auto;
		border: none;
	}

	.tohideonlarge {
		display: none !important;
	}

	.tohideonsmall {
		display: block !important;
	}
}

.loadie {
	z-index: 9999;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	width: 0;
	height: 4px;
	-webkit-transition: width 0.5s ease-out;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
}

.responsive-fieldset {
	display: table-cell;
	width: 100%
}

.navmenu-nav.dropdown-menu {
	position: relative
}

#legend {
	height: auto;
	background: rgba(127, 127, 127, 0.5);
}

#legend span {
	display: inline-block;
	padding: 15px 30px;
	position: relative;
}

#legend span:after {
	padding-left: 4px;
	content: '\00a0\00a0\00a0\00a0\00a0\00a0';
	text-decoration: line-through;
}

.ha-header {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.ha-header-small {
	-webkit-box-shadow: 0 6px 6px -6px black;
	-moz-box-shadow: 0 6px 6px -6px black;
	box-shadow: 0 6px 6px -6px black;
	position: fixed;
	top: 0;
	z-index: 50;
	background-color: #EEEEEE;
}

.ha-header-large {
	height: auto;
}

/* 
*
* NOTIFICATION
*
*/

.notification_count {
	padding: 3px 7px 3px 7px;
	background: #cc0000;
	color: #ffffff;
	font-weight: bold;
	margin-left: -5px;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	position: absolute;
	margin-top: -11px;
	font-size: 11px;
}

#notification {
	position: relative;
	width: 56px;
}


/**/

.btn-info:active,
.btn-info.active {
	background-color: #F58220;
}

#reportrange {
	background: none repeat scroll 0 0 #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
	color: #333333;
	cursor: pointer;
	line-height: 18px;
	padding: 8px;
}

.home {
	height: 350px;
	overflow: hidden;
}

.noofferte {
	border: 6px solid #1eafe8;
}

.noofferte h3.blu {
	color: #1eafe8;
}

.offerte {
	border: 6px solid #2dff35;
}

.offerte h3.green {
	color: #2dff35;
}

.bg-white {
	background-color: #FFF;
	background-image: none;
}

.extraBox {
	border: 6px solid #42ADF0;
}

/* drag n drop */

.glyphicon-move {
	cursor: move;
	cursor: -webkit-grabbing;
}

/*
*
*  PULSE ANIMATION
*
*/

.pulsate {
	-webkit-animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation: pulsate 1s ease-out;
	-moz-animation-iteration-count: infinite;
	animation: pulsate 1s ease-out;
	animation-iteration-count: infinite;
}

@-webkit-keyframes pulsate {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1.0;
	}
}

@-moz-keyframes pulsate {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.5;
	}

	00% {
		opacity: 1.0;
	}
}

@keyframes pulsate {
	0% {
		opacity: 1.0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1.0;
	}
}

@media(max-width: 767px) {
	.max-width-100 {
		width: 100px;
		overflow: hidden;
		text-overflow: ellipsis;
		padding-right: 6px !important;
		padding-left: 6px !important;
		white-space: nowrap;
	}

	.home {
		height: auto;
		overflow: hidden;
	}
}

/*
*
*  BREADCRUMB
*
*/

/* Breadcrumbs from http://bootsnipp.com/snippets/featured/triangle-breadcrumbs-arrows */
.btn-breadcrumb .btn:not(:last-child):after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-left: 10px solid white;
	position: absolute;
	top: 50%;
	margin-top: -17px;
	left: 100%;
	z-index: 3;
}

.btn-breadcrumb .btn:not(:last-child):before {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
	border-left: 10px solid rgb(173, 173, 173);
	position: absolute;
	top: 50%;
	margin-top: -17px;
	margin-left: 1px;
	left: 100%;
	z-index: 3;
}

.btn-breadcrumb .btn {
	padding: 6px 12px 6px 24px;
}

.btn-breadcrumb .btn:first-child {
	padding: 6px 6px 6px 10px;
}

.btn-breadcrumb .btn:last-child {
	padding: 6px 18px 6px 24px;
}

/** Default button **/
.btn-breadcrumb .btn.btn-default:not(:last-child):after {
	border-left: 10px solid #fff;
}

.btn-breadcrumb .btn.btn-default:not(:last-child):before {
	border-left: 10px solid #ccc;
}

.btn-breadcrumb .btn.btn-default:hover:not(:last-child):after {
	border-left: 10px solid #ebebeb;
}

.btn-breadcrumb .btn.btn-default:hover:not(:last-child):before {
	border-left: 10px solid #adadad;
}

/* The responsive part */

.btn-breadcrumb>*>div {
	/* With less: .text-overflow(); */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-breadcrumb>*:nth-child(n+2) {
	display: none;
}

/* === For phones =================================== */
@media (max-width: 767px) {
	.btn-breadcrumb>*:nth-last-child(-n+2) {
		display: block;
	}

	.btn-breadcrumb>* div {
		max-width: 60px;
	}
}

/* === For tablets ================================== */
@media (min-width: 768px) and (max-width:991px) {
	.btn-breadcrumb>*:nth-last-child(-n+4) {
		display: block;
	}

	.btn-breadcrumb>* div {
		max-width: 100px;
	}
}

/* === For desktops ================================== */
@media (min-width: 992px) {
	.btn-breadcrumb>*:nth-last-child(-n+6) {
		display: block;
	}

	.btn-breadcrumb>* div {
		max-width: 170px;
	}
}

.drop-up {
	top: auto;
	bottom: 100% !important;
}

.card-panel {
	background-color: #ffffff;
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	color: #31373d;
	margin-bottom: 15px;
}

.card-heading {
	padding: 20px 20px 0;
}

.card-section {
	padding: 20px;
}

/*  
*  ANOTHER PULSE ANIM
*
*/

@keyframes pulse_animation {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.08);
	}

	50% {
		transform: scale(1);
	}

	60% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.05);
	}

	80% {
		transform: scale(1);
	}

	100% {
		transform: scale(2);
	}
}

.pulse {
	animation-name: pulse_animation;
	animation-duration: 5000ms;
	transform-origin: 70% 70%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.w50 {
	width: 80px;
}

.p-t15-b15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.bg-tabs {
	background-color: white;
	padding: 10px;
}

fieldset.multioff-cost {
	border: 1px groove #ddd !important;
	padding: 0 1.4em 1.4em 1.4em !important;
	margin: 0 0 1.5em 0 !important;
	-webkit-box-shadow: 0px 0px 0px 0px #000;
	box-shadow: 0px 0px 0px 0px #000;
}

legend.multioff-cost {
	font-size: 1.2em !important;
	font-weight: bold !important;
	text-align: left !important;
	width: auto;
	padding: 0 10px;
	border-bottom: none;
}

.block {
	display: block;
}

.red {
	color: red;
}

.green {
	color: green;
}



/*
*  STATES ROW
*
*/

.stats-row {
	margin-bottom: 20px;
}

.stats-row .stat-item {
	display: inline-block;
	padding-right: 15px;
}

.stats-row .stat-item+.stat-item {
	padding-left: 15px;
	border-left: 1px solid rgba(120, 130, 140, 0.13);
}


/*
*  TAG CLOUD
*
*/

.tagcloud ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.tagcloud ul li {
	float: left;
	width: 120px;
	margin: 0 10px 10px 0;
	padding: 0;
}

.tagcloud ul li a {
	text-align: center;
	display: block;
	width: 100%;
	height: 32px;
	line-height: 32px;
	padding: 0 1em;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #333;
	font-size: 13px;
	text-decoration: none;
	-webkit-transition: .2s;
	transition: .2s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #a7a7a7;
	color: white;
}

.tagcloud ul li a:hover {
	background-color: #3498db;
	border: 1px solid #3498db;
	color: #fff;
}

/* 
*
*  MARGINI SU OFF
*
*/

blockquote.margini {
	border-left: none
}

.quote-badge {
	background-color: rgba(0, 0, 0, 0.2);
}

.quote-badge a {
	color: white;
}

.quote-box {
	overflow: hidden;
	margin-top: -50px;
	padding-top: -100px;
	border-radius: 17px;
	background-color: #11c1a9;
	margin-top: 25px;
	color: white;
	width: 100%;
	box-shadow: 2px 2px 2px 2px #E0E0E0;
}

.quotation-mark {
	margin-top: -10px;
	font-weight: bold;
	font-size: 30px;
	color: white;
	font-family: "Times New Roman", Georgia, Serif;
	margin-bottom: 60px;
}

.quote-text {
	font-size: 19px;
	margin-top: -65px;
}

/* 
*
* BTN SQUARE
*
*/

.btn-sq-lg {
	width: 150px !important;
	height: 150px !important;
}

.btn-sq {
	width: 100px !important;
	height: 100px !important;
	font-size: 10px;
}

.btn-sq-sm {
	width: 50px !important;
	height: 50px !important;
	font-size: 10px;
}

.btn-sq-xs {
	width: 25px !important;
	height: 25px !important;
	padding: 2px;
}

/* Custom file input */

.custom-file-upload>input[type="file"] {
	display: none;
}

.custom-file-upload {
	border: 1px solid #ccc;
	display: inline-block;
	padding: 6px 12px;
	cursor: pointer;
}

/* card */

.card {
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 6px;
}

.card>.card-link {
	color: #333;
}

.card>.card-link:hover {
	text-decoration: none;
}

.card>.card-link .card-img img {
	border-radius: 6px 6px 0 0;
}

.card .card-img {
	position: relative;
	padding: 0;
	display: table;
}

.card .card-img .card-caption {
	position: absolute;
	right: 0;
	bottom: 16px;
	left: 0;
}

.card .card-body {
	display: table;
	width: 100%;
	padding: 12px;
}

.card .card-header {
	border-radius: 6px 6px 0 0;
	padding: 8px;
}

.card .card-footer {
	border-radius: 0 0 6px 6px;
	padding: 8px;
}

.card .card-left {
	position: relative;
	float: left;
	padding: 0 0 8px 0;
}

.card .card-right {
	position: relative;
	float: left;
	padding: 8px 0 0 0;
}

.card .card-body h1:first-child,
.card .card-body h2:first-child,
.card .card-body h3:first-child,
.card .card-body h4:first-child,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4 {
    margin-top: 0;
}

.card .card-body .heading {
	display: block;
}

.card .card-body .heading:last-child {
	margin-bottom: 0;
}

.card .card-body .lead {
	text-align: center;
}

@media(min-width: 768px) {
	.card .card-left {
		float: left;
		padding: 0 8px 0 0;
	}

	.card .card-right {
		float: left;
		padding: 0 0 0 8px;
	}

	.card .card-4-8 .card-left {
		width: 33.33333333%;
	}

	.card .card-4-8 .card-right {
		width: 66.66666667%;
	}

	.card .card-5-7 .card-left {
		width: 41.66666667%;
	}

	.card .card-5-7 .card-right {
		width: 58.33333333%;
	}

	.card .card-6-6 .card-left {
		width: 50%;
	}

	.card .card-6-6 .card-right {
		width: 50%;
	}

	.card .card-7-5 .card-left {
		width: 58.33333333%;
	}

	.card .card-7-5 .card-right {
		width: 41.66666667%;
	}

	.card .card-8-4 .card-left {
		width: 66.66666667%;
	}

	.card .card-8-4 .card-right {
		width: 33.33333333%;
	}
}

/* round */

.round {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background-color: #222;
	color: #FFF;
	text-align: center;
}

.round.hollow {
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background-color: #FFF;
	color: #222;
	text-align: center;
	-webkit-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.75);
}

.round.round-sm {
	height: 20px;
	width: 20px;
	line-height: 20px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	font-size: 0.7em;
}

.round.round-lg {
	height: 40px;
	width: 40px;
	line-height: 40px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	font-size: 1.5em;
}

.round.blue {
	background-color: #3EA6CE;
}

.round.orange {
	background-color: #FF6701;
}

.round.green {
	background-color: #42A129;
}

.round.hollow.blue {
	color: #3EA6CE;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 0px 3px #3EA6CE;
	-moz-box-shadow: 0px 0px 0px 3px #3EA6CE;
	box-shadow: 0px 0px 0px 3px #3EA6CE;
}

.round.hollow.orange {
	color: #FF6701;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 0px 3px #FF6701;
	-moz-box-shadow: 0px 0px 0px 3px #FF6701;
	box-shadow: 0px 0px 0px 3px #FF6701;
}

.round.hollow.green {
	color: #42A129;
	background-color: #FFF;
	-webkit-box-shadow: 0px 0px 0px 3px #42A129;
	-moz-box-shadow: 0px 0px 0px 3px #42A129;
	box-shadow: 0px 0px 0px 3px #42A129;
}

/* table loader */
table.loading>tbody {
	position: relative;
}

table.loading>tbody:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
	background-image: url(data:image/gif;base64,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);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50px 50px;
	content: "";
}

/* bugfix scrolling tabs */
.nav-tabs>li>a {
	margin-right: 0px !important;
}

/* image picker */
.layout .image_picker_image {
	max-width: 190px !important;
}

/* document editor */
.document-editor {
	border: 1px solid var(--ck-color-base-border);
	border-radius: var(--ck-border-radius);

	/* Set vertical boundaries for the document editor. */
	max-height: 700px;

	/* This element is a flex container for easier rendering. */
	display: flex;
	flex-flow: column nowrap;
}

.document-editor__toolbar {
	/* Make sure the toolbar container is always above the editable. */
	z-index: 1;

	/* Create the illusion of the toolbar floating over the editable. */
	box-shadow: 0 0 5px hsla(0, 0%, 0%, .2);

	/* Use the CKEditor CSS variables to keep the UI consistent. */
	border-bottom: 1px solid var(--ck-color-toolbar-border);
}

.document-editor__toolbar .ck-toolbar {
	border: 0;
	border-radius: 0;
}

.document-editor__editable-container {
	padding: calc(2 * var(--ck-spacing-large));
	background: var(--ck-color-base-foreground);

	/* Make it possible to scroll the "page" of the edited content. */
	overflow-y: scroll;
}

.document-editor__editable-container .ck-editor__editable {
	/* Set the dimensions of the "page". */
	width: 15.8cm;
	min-height: 21cm;

	/* Keep the "page" off the boundaries of the container. */
	padding: 1cm 2cm 2cm;

	border: 1px hsl(0, 0%, 82.7%) solid;
	border-radius: var(--ck-border-radius);
	background: white;

	/* The "page" should cast a slight shadow (3D illusion). */
	box-shadow: 0 0 5px hsla(0, 0%, 0%, .1);

	/* Center the "page". */
	margin: 0 auto;
}

.document-editor .ck-content,
.document-editor .ck-heading-dropdown .ck-list .ck-button__label {
	font: 12px/1.2 "Roboto", Arial, sans-serif;
}

/* chips */
.chip {
	padding: 0 25px;
	height: 50px;
	font-size: 14px;
	line-height: 45px;
	border-radius: 25px;
	background-color: #f1f1f1;
	float: left;
	margin-right: 10px;
	margin-bottom: 20px;
}

.chip img {
	float: left;
	margin: 0 10px 0 -25px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}

/* slide panel */
.navbarpanel {
	overflow: hidden;
	background-color: #333;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 2;
}

.navbarpanel a {
	float: right;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.navbarpanel a:hover {
	background: #ddd;
	color: black;
}

.navbarpanel h4 {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding-left: 16px;
	text-decoration: none;
	font-size: 17px;
}

.container-empty {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100vh - 100px);
	margin: 0;
}

.empty-state {
	text-align: center;
}

/* circle button */
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.33;
}

.btn-circle {
	width: 30px;
	height: 30px;
	padding: 6px 0px;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.42857;
}

/* boxed radio/checkbox */
.frb-group {
	margin: 15px 0;
}

.frb~.frb {
	margin-top: 15px;
}

.frb input[type="radio"]:empty,
.frb input[type="checkbox"]:empty {
	display: none;
}

.frb input[type="radio"]~label:before,
.frb input[type="checkbox"]~label:before {
	font-family: FontAwesome;
	content: '\f096';
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 15px;
	font-size: 22px;
}

.frb input[type="radio"]:checked~label:before,
.frb input[type="checkbox"]:checked~label:before {
	content: '\f046';
}

.frb input[type="radio"]~label,
.frb input[type="checkbox"]~label {
	position: relative;
	cursor: pointer;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f2f2f2;
}

.frb input[type="radio"]~label:focus,
.frb input[type="radio"]~label:hover,
.frb input[type="checkbox"]~label:focus,
.frb input[type="checkbox"]~label:hover {
	box-shadow: 0px 0px 3px #333;
}

.frb input[type="radio"]:checked~label,
.frb input[type="checkbox"]:checked~label {
	color: #fafafa;
}

.frb input[type="radio"]:checked~label,
.frb input[type="checkbox"]:checked~label {
	background-color: #f2f2f2;
}

.frb.frb-default input[type="radio"]:checked~label,
.frb.frb-default input[type="checkbox"]:checked~label {
	color: #333;
}

.frb.frb-primary input[type="radio"]:checked~label,
.frb.frb-primary input[type="checkbox"]:checked~label {
	background-color: #337ab7;
}

.frb.frb-success input[type="radio"]:checked~label,
.frb.frb-success input[type="checkbox"]:checked~label {
	background-color: #5cb85c;
}

.frb.frb-info input[type="radio"]:checked~label,
.frb.frb-info input[type="checkbox"]:checked~label {
	background-color: #5bc0de;
}

.frb.frb-warning input[type="radio"]:checked~label,
.frb.frb-warning input[type="checkbox"]:checked~label {
	background-color: #f0ad4e;
}

.frb.frb-danger input[type="radio"]:checked~label,
.frb.frb-danger input[type="checkbox"]:checked~label {
	background-color: #d9534f;
}

.frb input[type="radio"]:empty~label span,
.frb input[type="checkbox"]:empty~label span {
	display: inline-block;
}

.frb input[type="radio"]:empty~label span.frb-title,
.frb input[type="checkbox"]:empty~label span.frb-title {
	font-size: 16px;
	font-weight: 700;
	margin: 5px 5px 5px 50px;
}

.frb input[type="radio"]:empty~label span.frb-description,
.frb input[type="checkbox"]:empty~label span.frb-description {
	font-weight: normal;
	font-style: italic;
	color: #999;
	margin: 5px 5px 5px 50px;
}

.frb input[type="radio"]:empty:checked~label span.frb-description,
.frb input[type="checkbox"]:empty:checked~label span.frb-description {
	color: #fafafa;
}

.frb.frb-default input[type="radio"]:empty:checked~label span.frb-description,
.frb.frb-default input[type="checkbox"]:empty:checked~label span.frb-description {
	color: #999;
}

/* borderless table */
.table-borderless td,
.table-borderless th {
	border: 0 !important;
}

.thead-light {
	background-color: #454d55;
	color: #fff;
	font-weight: bold;
}

.navbar-default .navbar-toggle {
	background-color: white;
}

#greetings {
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.itemb {
	position: relative;
	padding-top: 0px;
	display: inline-block;
}

.notify-badge {
	position: absolute;
	right: -9px;
	top: -15px;
	background: red;
	text-align: center;
	border-radius: 5px 5px 5px 5px;
	color: white;
	padding: 2px 5px;
	font-size: 12px;
}

/* file upload */
input.file[type="file"] {
	position: absolute;
	right: -9999px;
	visibility: hidden;
	opacity: 0;
}

input.file[type="submit"]:hover {
	background: #0b7fc2;
	color: #fff;
	cursor: pointer;
	transition: 0.2s all;
}

label.file {
	position: relative;
	padding: 1rem 3rem;
	background: #eee;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}

label.file:hover {
	background: #0c8fda;
	color: #fff;
	cursor: pointer;
	transition: 0.2s all;
}

div.files {
	background: #eee;
	padding: 1rem;
	margin: 1rem 0;
	border-radius: 10px;
}

div.files ul {
	list-style: none;
	padding: 0;
	max-height: 150px;
	overflow: auto;
}

div.files ul li {
	padding: 0.5rem 0;
	padding-right: 2rem;
	position: relative;
}

div.files ul li i {
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translatey(-50%);
	transform: translatey(-50%);
}

span.file-size {
	color: #999;
	padding-left: 0.5rem;
}

/* gradient */

.gradient_yellow {
	background: #fffae0;
	/* Old browsers */
	background: -moz-linear-gradient(left, #fffae0 0%, #fbff00 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, #fffae0 0%, #fbff00 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #fffae0 0%, #fbff00 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffae0', endColorstr='#fbff00', GradientType=1);
	/* IE6-9 */
}

.gradient_green {
	background: #b1edb5;
	/* Old browsers */
	background: -moz-linear-gradient(left, #b1edb5 0%, #00b52d 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(left, #b1edb5 0%, #00b52d 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #b1edb5 0%, #00b52d 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b1edb5', endColorstr='#00b52d', GradientType=1);
}

/* counters */

.ticket {}

.counter-count,
.counter-time {
	font-size: 20px;
	background-color: #b8b7b7;
	border-radius: 50%;
	position: relative;
	color: #ffffff;
	text-align: center;
	line-height: 92px;
	width: 92px;
	height: 92px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: inline-block;
}

.ticket-p {
	font-size: 15px;
	color: #000000;
	line-height: 14px;
}

/* acc gallery */

#masonry {
	column-count: 2;
	column-gap: 1em;
}

@media(min-width: 30em) {
	#masonry {
		column-count: 3;
		column-gap: 1em;
	}
}

@media(min-width: 40em) {
	#masonry {
		column-count: 4;
		column-gap: 1em;
	}
}

@media(min-width: 60em) {
	#masonry {
		column-count: 5;
		column-gap: 1em;
	}
}

@media(min-width: 75em) {
	#masonry {
		column-count: 6;
		column-gap: 1em;
	}
}

.item {
	background-color: none;
	display: inline-block;
	margin: 0 0 1em 0;
	width: 100%;
	cursor: pointer;
}

.item img {
	max-width: 100%;
	height: auto;
	width: 100%;
	margin-bottom: -4px;
	border: 1px solid grey;
	/*idk why but this fix stuff*/
}

.container_vendor {
	position: relative;
	overflow-x: scroll;
	overflow-y: hidden;
	width: 250px;
	white-space: nowrap;
	padding-top: 10px;
}

@media (min-width: 992px) {
	.container_vendor {
		width: 100%;
	}
}

.box {
	position: relative;
	text-align: center;
	margin: 0;
	display: inline-block;
}

.noti-count-red {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: red;
	color: #fff;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 5px;
	height: 5px;
	text-align: center;
	z-index: 9;
}

.noti-count-green {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: green;
	color: #fff;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 5px;
	height: 5px;
	text-align: center;
	z-index: 9;
}

.tab-pane {
	background-color: #fff;
	padding: 10px !important;
}

.navmenu,
.navbar-offcanvas {
	width: 250px;
}

.navbar-default {
	background-color: #fff !important;
	border-color: grey;
}

@media only screen and (min-width: 990px) {
	.navbar-default {
		background-color: transparent !important;
		border-color: grey;
	}
}

#custom-search-input {
	padding: 3px;
	border: solid 1px #E4E4E4;
	border-radius: 6px;
	background-color: #fff;
}

#custom-search-input input {
	border: 0;
	box-shadow: none;
}

#custom-search-input button {
	margin: 2px 0 0 0;
	background: none;
	box-shadow: none;
	border: 0;
	color: #666666;
	padding: 0 8px 0 10px;
	border-left: solid 1px #ccc;
}

#custom-search-input button:hover {
	border: 0;
	box-shadow: none;
	border-left: solid 1px #ccc;
}

#custom-search-input .glyphicon-search {
	font-size: 23px;
}

.brand-navbar {
	position: absolute;
	display: block;
	width: 100%;
	left: 0;
	text-align: center;
	z-index: -1;
}

.brand-navbar h1 {
	display: inline-block;
	font-size: 30px;
	margin: 0;
	margin-top: 10px;
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-navbar img {
	vertical-align: top;
	max-height: 45px;
	margin-top: 5px;
}

.slidePanel {
	overflow: auto;
}

@media (min-width: 992px) {
	.container {
		width: 950px;
	}
	.brand-navbar img {
		max-height: auto;
		margin-top: 0;
	}
}

@media (min-width: 1280px) {
	.container {
		width: 950px;
	}
}

.financial-group>.row {
	overflow-x: auto;
	white-space: nowrap;
	padding-left: 10px;
	padding-right: 10px;
}

.financial-group>.row>.col-xs-6,
.financial-group>.row>.col-sm-3 {
	display: inline-block;
	float: none;
}

/* Shape */

.shape {
	border-style: solid;
	border-width: 0 70px 40px 0;
	float: right;
	height: 0px;
	width: 0px;
	-ms-transform: rotate(360deg);
	/* IE 9 */
	-o-transform: rotate(360deg);
	/* Opera 10.5 */
	-webkit-transform: rotate(360deg);
	/* Safari and Chrome */
	transform: rotate(360deg);
}

.shape-text {
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	right: -40px;
	top: 2px;
	white-space: nowrap;
	-ms-transform: rotate(30deg);
	/* IE 9 */
	-o-transform: rotate(360deg);
	/* Opera 10.5 */
	-webkit-transform: rotate(30deg);
	/* Safari and Chrome */
	transform: rotate(30deg);
}

.project {
	height: 225px;
	/* max-width: 200px; */
}

.project {
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
	border: 1px solid #ddd;
	background: #fff;
	margin: 15px 0;
	overflow: hidden;
}

.project-radius {
  border-radius: 7px;
}

.project-default {
  border-color: #999999;
}

.project-default .shape {
	border-color: transparent #999999 transparent transparent;
	border-color: rgba(255, 255, 255, 0) #999999 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-danger {
  border-color: #d9534f;
}

.project-danger .shape {
	border-color: transparent #d9534f transparent transparent;
	border-color: rgba(255, 255, 255, 0) #d9534f rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-success {
  border-color: #5cb85c;
}

.project-success .shape {
	border-color: transparent #5cb85c transparent transparent;
	border-color: rgba(255, 255, 255, 0) #5cb85c rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-primary {
  border-color: #428bca;
}

.project-primary .shape {
	border-color: transparent #428bca transparent transparent;
	border-color: rgba(255, 255, 255, 0) #428bca rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-info {
	border-color: #5bc0de;
}

.project-info .shape {
	border-color: transparent #5bc0de transparent transparent;
	border-color: rgba(255, 255, 255, 0) #5bc0de rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-warning {
	border-color: #f0ad4e;
}

.project-warning .shape {
	border-color: transparent #f0ad4e transparent transparent;
	border-color: rgba(255, 255, 255, 0) #f0ad4e rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
}

.project-content {
	padding: 0 20px 10px;
}

.project-content h3 {
	font-size: 18px;
	line-height: 20px;
}

/* CARD STATS HOME */

.stat-card {
	background: #fff;
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.2s;
}

.stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card__icon-circle {
	height: 60px;
	width: 60px;
	border-radius: 60px;
	background: rgba(0, 123, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-card__icon-circle i {
	font-size: 30px;
	color: #007bff;
}

.stat-card__icon.stat-card__icon--success .stat-card__icon-circle {
  background: rgba(40, 167, 69, 0.2);
}

.stat-card__icon.stat-card__icon--success .stat-card__icon-circle i {
  color: #28a745;
}

.stat-card__icon.stat-card__icon--danger .stat-card__icon-circle {
  background: rgba(220, 53, 69, 0.2);
}

.stat-card__icon.stat-card__icon--danger .stat-card__icon-circle i {
  color: #dc3545;
}

.stat-card__icon.stat-card__icon--warning .stat-card__icon-circle {
  background: rgba(255, 193, 7, 0.2);
}

.stat-card__icon.stat-card__icon--warning .stat-card__icon-circle i {
  color: #ffc107;
}

.stat-card__icon.stat-card__icon--primary .stat-card__icon-circle {
  background: rgba(0, 123, 255, 0.2);
}

.stat-card__icon.stat-card__icon--primary .stat-card__icon-circle i {
  color: #007bff;
}

/* apps */

.navigation-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 30px;
	position: relative;
}

.navigation-list-item {
  margin-right: 20px
}

.navigation-list-item:first-child {
  margin-right: 15px
}

.navigation-list-item:nth-child(3) {
  margin-right: 25px
}

.navigation-list-item:last-child {
  margin-right: 0
}

.navigation-link-text {
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.navigation-link-text:hover {
	opacity: .85;
	text-decoration: underline;
}

.hidden-checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.navigation-panel-input:focus+.navigation-panel-label .navigation-panel-label-icon {
  opacity: 1;
}

.navigation-panel-input:checked~.navigation-services-list {
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.navigation-panel-label {
  cursor: pointer
}

.navigation-panel-label-icon {
	background: url(../img/menu.svg);
	display: block;
	width: 16px;
	height: 16px;
	opacity: .55;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.navigation-panel-label-icon:hover {
  opacity: 1
}

.navigation-panel-label-icon {
	background: url(../img/menu.svg);
	display: block;
	width: 16px;
	height: 16px;
	opacity: .55;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
}

.navigation-panel-label-icon:hover {
  opacity: 1;
}

.notification-icon {
	background: url(../img/notification.svg);
	display: block;
	width: 20px;
	height: 20px;
	-webkit-transition: opacity .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out;
	transition: opacity .2s ease-in-out;
	opacity: .55;
}

.notification-icon:hover {
  opacity: 1
}

.profile-thumb-wrap {
	width: 32px;
	height: 32px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.navigation-service-icon {
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	width: 44px;
	height: 44px;
	margin: 0 auto 7px;
}

.navigation-service-icon-plus {
  background-image: url(../img/google-plus.svg)
}

.navigation-service-icon-search {
  background-image: url(../img/search.svg)
}

.navigation-service-icon-youtube {
  background-image: url(../img/youtube.svg)
}

.navigation-service-icon-maps {
  background-image: url(../img/google.svg)
}

.navigation-service-icon-news {
  background-image: url(../img/news.svg)
}

.navigation-service-icon-gmail {
  background-image: url(../img/gmail.svg)
}

.navigation-service-icon-translator {
  background-image: url(../img/translate.svg)
}

.navigation-service-icon-disk {
  background-image: url(../img/drive.svg)
}

.navigation-service-icon-calendar {
  background-image: url(../img/calendar.svg)
}

.navigation-service-icon-words {
  background-image: url(../img/words.svg)
}

.navigation-service-icon-business {
  background-image: url(../img/business.svg)
}

.navigation-service-icon-docs {
  background-image: url(../img/docs.svg)
}

.navigation-service-icon-news {
  background-image: url(../img/news.svg)
}

.navigation-service-icon-photos {
  background-image: url(../img/photos.svg)
}

.navigation-service-icon-sheets {
  background-image: url(../img/sheets.svg)
}

.navigation-service-icon-slides {
  background-image: url(../img/slides.svg)
}

.navigation-services-list {
	z-index: 2;
	display: none;
	width: 335px;
	position: absolute;
	right: 40px;
	top: 85px;
	background-color: #fff;
	border-color: rgba(0, 0, 0, .2);
	border: 1px solid #ccc;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.navigation-services-list:before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 1px solid rgba(0, 0, 0, .2);
	border-right: 1px solid rgba(0, 0, 0, .2);
	position: absolute;
	top: -8px;
	right: 87px;
	background-color: #fff;
	z-index: 2;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.navigation-services-list-parentwrap {
	height: 478px;
	overflow-y: auto;
}

.navigation-services-list-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 22px;
}

.navigation-services-list-wrap-hidden {
  display: none;
}

.navigation-services-list-wrap-hidden {
  display: none;
}

.navigation-services-list-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 33%;
	-ms-flex: 1 0 33%;
	flex: 1 0 33%;
}

.navigation-services-list-item:last-child {
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

.navigation-services-list-link {
	width: 100%;
	margin: 7px 1px;
	padding: 5px;
	border: 1px solid transparent;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: border-color .2s ease-in-out;
	-o-transition: border-color .2s ease-in-out;
	transition: border-color .2s ease-in-out;
}

.navigation-services-list-link:hover {
  border: 1px solid #e5e5e5
}

.navigation-services-list-link:focus {
  text-decoration: underline
}

.more-services-wrap {
  display: none
}

.more-services-control-wrap {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.more-services-checkbox:checked,
.more-services-divider {
  display: none
}

.more-services-divider {
	height: 1px;
	background-color: #ebebeb;
	margin: 0 22px;
	border: none
}

.more-services-checkbox:checked~.navigation-services-list-wrap-hidden {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.more-services-checkbox:checked~.more-services-label {
    display: none
}

.more-services-checkbox:checked~.more-services-divider {
    display: block
}

.more-services-checkbox:focus+.more-services-label {
    outline: -webkit-focus-ring-color auto 5px
}

.more-services-checkbox:-moz-focusring+.more-services-label {
    outline: 1px dotted
}

.more-services-label {
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	background-color: #f5f5f5
}

.smGlobalBtn { /* global button class */
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 50px;
	height: 50px;
	box-shadow: 0 2px 2px #999;
	padding: 0px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 25px;
	font-weight: normal;
	line-height: 2em;
	border-radius: 25px;
	-moz-border-radius:25px;
	-webkit-border-radius:25px;
}
.addBtn {
  background: #4060A5;
}
.addBtn:hover {
	color: #4060A5;
	background: #fff;
}

.slidePanel .bootstrap-select { 
	z-index: 1; 
}

.slidePanel .bar-chart-legend {
	display: inline-block;
	right: 25px;
	position: absolute;
	top: 8px;
	font-size: 10px;
}

.slidePanel .bar-chart-legend .legend-item {
	display: block;
}

.slidePanel .bar-chart-legend .legend-color {
	width: 12px;
	height: 12px;
	margin: 3px 5px;
	display: inline-block;
}

.md-chip {
  display: inline-block;
  background: #e0e0e0;
  padding: 0 5px;
	padding-top: 8px;
	padding-bottom: 8px;
  border-radius: 32px;
  font-size: 13px;
  white-space: nowrap;
}
.md-chip.md-chip-hover:hover {
  background: #ccc;
}

.md-chip-clickable {
  cursor: pointer;
}

.md-chip,
.md-chip-icon {
	min-height: 25px;
	max-height: 32px;
  line-height: 12px;
}

.md-chip-icon {
  display: block;
  float: left;
  background: #009587;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  color: white;
  margin: 0 8px 0 -12px;
}

.md-chip-remove {
  display: inline-block;
  background: #aaa;
  border: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  padding: 0;
  margin: 0 -4px 0 4px;
  cursor: pointer;
  font: inherit;
  line-height: 20px;
}
.md-chip-remove:after {
  color: #e0e0e0;
  content: "x";
}
.md-chip-remove:hover {
  background: #999;
}
.md-chip-remove:active {
  background: #777;
}

.md-chips {
  padding: 12px 0;
}
.md-chips .md-chip {
  margin: 0 5px 3px 0;
}

.md-chip-raised {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

/* Blink effect */

.blink {
	animation:1s blinker linear infinite;
	-webkit-animation:1s blinker linear infinite;
	-moz-animation:1s blinker linear infinite;
	color: red;
}

.blink a {
	color: red !important;
}

@-moz-keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* HR + text */
.hr-text {
  border: 0;
  line-height: 1em;
  position: relative;
  text-align: center;
  height: 1.5em;
  font-size: 14px;
  margin: 30px 15px;
}

.hr-text::before {
	content: "";
	background: linear-gradient(to right, transparent, black, transparent);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}

.hr-text::after {
	content: attr(data-content);
	position: relative;
	padding: 0 7px;
	line-height: 1.5em;
	color: black;
	background-color: #fff;
}

/* Time line */

.timeline .sessions {
  margin-top: 2rem;
  border-radius: 12px;
  position: relative;
}

.timeline ul, .timeline li {
  list-style: none;
}

.timeline li {
  padding-bottom: 1.5rem;
  border-left: 1px solid #abaaed;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}

.timeline li:last-child {
  border: 0px;
  padding-bottom: 0;
}

.timeline li:before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid #4e5ed3;
  box-shadow: 3px 3px 0px #bab5f8;
  box-shadow: 3px 3px 0px #bab5f8;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0px;
}

.timeline .time {
  color: #2a2839;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

@media screen and (min-width: 601px) {
  .timeline .time {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 600px) {
  .timeline .time {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
  }
}

.timeline p {
  color: #4f4f4f;
  font-family: sans-serif;
  line-height: 1.5;
  margin-top: 0.4rem;
}

@media screen and (max-width: 600px) {
  .timeline p {
    font-size: 0.9rem;
  }
}

/* wa input */
/* Compose */
.conversation-compose {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  overflow: hidden;
  height: 50px;
  width: 100%;
  z-index: 2;
}

.conversation-compose div,
.conversation-compose label,
.conversation-compose input,
.conversation-compose textarea {
  background: #fff;
  height: 100%;
}

.conversation-compose textarea {
  padding-top: 10px;
  max-height: 50px;
}

.conversation-compose textarea {
  resize: none;
}

.conversation-compose .emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 5px 0 0 5px;
  flex: 0 0 auto;
  margin-left: 8px;
  width: 48px;
}

.conversation-compose .input-msg {
  border: 0;
  flex: 1 1 auto;
  font-size: 16px;
  margin: 0;
  outline: none;
  min-width: 50px;
}

.conversation-compose .photo {
  flex: 0 0 auto;
  border-radius: 0 0 5px 0;
  text-align: center;
  position: relative;
  width: 48px;
  margin-bottom: 0;
}

.conversation-compose .photo:after {
  border-width: 0px 0 10px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  top: 0;
  right: -10px;
}

.conversation-compose .photo i {
  display: block;
  color: #7d8488;
  font-size: 24px;
  transform: translate(-50%, -50%);
  position: relative;
  top: 50%;
  left: 50%;
}

.conversation-compose .send {
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: 8px;
  margin-right: 8px;
  padding: 0;
  position: relative;
  outline: none;
}

.conversation-compose .send .circle {
  background: #008a7c;
  border-radius: 50%;
  color: #fff;
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversation-compose .send .circle i {
  font-size: 24px;
  /* margin-left: 5px; */
}

.loader-wait {
	width: 70px;
	height: 70px;
	margin: 40px auto;
}
.loader-wait .loader-wait-inner{
	display: inline-block;
	width: 15px;
	border-radius: 15px;
	background: #74d2ba;
}
.loader-wait .loader-wait-inner:nth-last-child(1){
	-webkit-animation: loading-wait 1.5s 1s infinite;
	animation: loading-wait 1.5s 1s infinite;
}
.loader-wait .loader-wait-inner:nth-last-child(2){
	-webkit-animation: loading-wait 1.5s .5s infinite;
	animation: loading-wait 1.5s .5s infinite;
}
.loader-wait .loader-wait-inner:nth-last-child(3){
	-webkit-animation: loading-wait 1.5s 0s infinite;
	animation: loading-wait 1.5s 0s infinite;
}
@-webkit-keyframes loading-wait {
	0%{
			height: 15px;
	}
	50%{
			height: 35px;
	}
	100%{
			height: 15px;
	}
}
@keyframes loading-wait {
	0%{
			height: 15px;
	}
	50%{
			height: 35px;
	}
	100%{
			height: 15px;
	}
}

/* Timer autohide */

#countdown, #countdown-ko {
  position: relative;
  margin: auto;
  height: 40px;
  width: 40px;
  text-align: center;
	float: right;
	margin-right: -25px;
	margin-top: -10px;
}

#countdown-number, #countdown-number-ko {
  color: white;
  display: inline-block;
  line-height: 40px;
}

#countdown > svg, #countdown-ko > svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

#countdown > svg circle, #countdown-ko > svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: white;
  fill: none;
  animation: countdown 10s linear infinite forwards;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}

/* FAB Cat */

.popout {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}

.popout .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  outline: none;
  user-select: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 32px;
  z-index: 999;
  background: #eee;
  color: #00a3dd;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  transition: 0.2s opacity ease-in-out;
}

.popout .btn.active {
  visibility: hidden;
  opacity: 0;
}

.popout .btn:after {
  display: block;
  position: absolute;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 60px;
  height: 60px;
  /* background: white; */
	background: #fecf71;
  z-index: -2;
  transition: transform 0.2s, opacity 0.2s;
}

.popout .btn:active:after {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}

.discussion {
  margin: 0 auto;
  display: flex;
  flex-flow: column wrap;
}

.discussion > .bubble {
  border-radius: 1em;
  padding: 0.25em 0.75em;
  margin: 0.0625em;
  max-width: 50%;
}

.discussion > .bubble.sender {
  align-self: flex-start;
  background-color: cornflowerblue;
  color: #fff;
}

.discussion > .bubble.recipient {
  align-self: flex-end;
  background-color: #efefef;
}

.discussion > .bubble.sender.first { 
	border-bottom-left-radius: 0.1em; 
}

.discussion > .bubble.sender.last { 
	border-top-left-radius: 0.1em; 
}

.discussion > .bubble.sender.middle {
  border-bottom-left-radius: 0.1em;
  border-top-left-radius: 0.1em;
}

.discussion > .bubble.recipient.first { 
	border-bottom-right-radius: 0.1em; 
}

.discussion > .bubble.recipient.last { 
	border-top-right-radius: 0.1em; 
}

.discussion > .bubble.recipient.middle {
  border-bottom-right-radius: 0.1em;
  border-top-right-radius: 0.1em;
}

/* Widget news */

.widget-news .widget-news-title-wrapper {
  display: flex;
  align-items: center;
}

.widget-news .widget-news-meeting-text {
  padding-top: 10px;
}

.widget-news .widget-news-title-wrapper .widget-news-date-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #edf1fc;
  /* width: 4rem;
  height: 4rem; */
	width: 40px;
  height: 40px;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-primary .widget-news-date-day {
  color: #4e73e5;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 11px;
}

.widget-news .widget-news-title-wrapper .widget-news-date-primary .widget-news-date-month {
  color: #4e73e5;
  line-height: 11px;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fcfcfd;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-secondary .widget-news-date-day {
  color: #dde1e9;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-secondary .widget-news-date-month {
  color: #dde1e9;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #e8faf8;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-success .widget-news-date-day {
  color: #17d1bd;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-success .widget-news-date-month {
  color: #17d1bd;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ebf7ff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-info .widget-news-date-day {
  color: #36afff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-info .widget-news-date-month {
  color: #36afff;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: floralwhite;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-warning .widget-news-date-day {
  color: #FFC868;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-warning .widget-news-date-month {
  color: #FFC868;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-danger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #feeeef;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-danger .widget-news-date-day {
  color: #F95062;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-danger .widget-news-date-month {
  color: #F95062;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-light {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fefeff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-light .widget-news-date-day {
  color: #f7f9fa;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-light .widget-news-date-month {
  color: #f7f9fa;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ebedee;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-dark .widget-news-date-day {
  color: #394856;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-dark .widget-news-date-month {
  color: #394856;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-date-base {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f0fafb;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.widget-news .widget-news-title-wrapper .widget-news-date-base .widget-news-date-day {
  color: #68CBD7;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

.widget-news .widget-news-title-wrapper .widget-news-date-base .widget-news-date-month {
  color: #68CBD7;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

.widget-news .widget-news-title-wrapper .widget-news-meeting-info {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.widget-news .widget-news-title-wrapper .widget-news-meeting-info .widget-news-pro-title {
  color: #3c4142;
  font-size: 14px;
	line-height: 13px;
}

.widget-news .widget-news-title-wrapper .widget-news-meeting-info .widget-news-meeting-time {
  color: #B1BAC5;
  font-size: 13px;
}

.widget-news .widget-news-meeting-points {
  font-weight: 400;
  font-size: 13px;
  margin-top: .5rem;
}

.widget-news .widget-news-meeting-points .widget-news-meeting-item {
  display: list-item;
  color: #727686;
}

.widget-news .widget-news-meeting-points .widget-news-meeting-item span {
  margin-left: .5rem;
}

.widget-news .widget-news-meeting-action {
  text-align: right;
}

.widget-news .widget-news-meeting-action a {
  text-transform: uppercase;
}

/* Documentation */
.descr table {
  background-color: #eff0f1;
  border-radius: 10px;
}

.descr table td {
  padding: 8px;
}

.descr table td:first-child {
  width: 30%;
	font-weight: 700;
}