html, body {
	height: 100vh;
}

body {
	background-color: rgb(48, 58, 81);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.875rem;
}

a {
	color: #337ab7;
	text-decoration: none;
}

:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

:focus-visible,
a:focus {
  outline: 1px dotted #E8652A;
}

@media print {
	body {
		display: none !important;
	}
}

.hidden {
	display: none!important;
}

.btn {
	font-size: 0.875rem;
}

.btn:hover {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-warning {
    background-color: #f0ad4e;
}

.pagination>li>a,
.pagination>li>span {
	border: 1px solid #ebeded;
	border-radius: 5px;
	color: #202124;
	font-size: 14px;
	margin-left: 12px;
	margin-right: 0px;
    min-width: 36px;
    height: 36px;
    text-align: center;
	line-height: 36px;
	padding: 6px 12px;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #7ebef9;
	border-width: 0;
	color: #fff;
}
.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}

.paging_go_to {
	display: flex;
	align-items: center;
	gap: 12px;
}
.go-to-page {
	height: 30px;
	line-height: 30;
}

.dropdown-menu {
	font-size: 0.875rem;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.form-control {
	font-size: 0.875rem;
}
.form-control[readonly] {
	background: #f6f6f6;
	cursor: auto;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700;
}

/* layout */
.page-container {
	display: flex;
	height: 100%;
}

.page-container > .sidebar {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 250px;
	transition: width 0.3s linear;
	overflow-x: hidden;
}

.page-container > .sidebar.collapse {
	width: 60px;
}

.page-container > .sidebar .sidebar-toggle {
	position: absolute;
	right: 0px;
	top: 400px;
	color: #ccc;
	border: 1px solid #999;
	border-radius: 5px;
	cursor: pointer;
	border-top-right-radius: 0;
	z-index: 50;
	border-bottom-right-radius: 0;
	border-right: none;
	padding: 6px 3px;
}
.page-container > .sidebar .sidebar-toggle:hover {
	color: #fff;
	border-color: #fff;
}
.page-container > .sidebar .sidebar-toggle svg:first-child {
	display: block;
}
.page-container > .sidebar .sidebar-toggle svg:last-child {
	display: none;
}
.page-container > .sidebar.collapse .sidebar-toggle svg:first-child {
	display: none;
}
.page-container > .sidebar.collapse .sidebar-toggle svg:last-child {
	display: block;
}

.page-container > .sidebar,
.page-container > .sidebar a {
	color: rgb(83, 91, 110);
}

.page-container > .sidebar .site-logo {
	padding: 40px 0 40px 30px;
	position: relative;
}
.page-container > .sidebar .site-logo .site-logo-sm {
	position: absolute;
	left: -2px;
	height: 36px;
	opacity: 0;
	transition: opacity 0.3s linear;
}
.page-container > .sidebar .site-logo .site-logo-lg {
	opacity: 1;
	transition: opacity 0.1s linear;
}
.page-container > .sidebar.collapse .site-logo .site-logo-sm {
	opacity: 1;
	transition: opacity 0.1s linear;
}
.page-container > .sidebar.collapse .site-logo .site-logo-lg {
	opacity: 0;
	transition: opacity 0.3s linear;
}

.page-container > .sidebar > .main-nav {
	flex-grow: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	transition: width 0.3s linear;
}
.page-container > .sidebar.collapse > .main-nav {
	width: 50px;
}
.page-container > .sidebar > .main-nav li {
	height: 23px;
	margin-bottom: 34px;
}
.page-container > .sidebar > .main-nav .main-nav-item {
	display: flex;
	align-items: center;
	color: #A5A7B4;
}
.page-container > .sidebar > .main-nav .main-nav-item:hover,
.page-container > .sidebar > .main-nav .main-nav-item.active {
	color: #FF9658;
	text-decoration: none;
}
.page-container > .sidebar > .main-nav .main-nav-item .indicator {
	visibility: hidden;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
	position: absolute;
	width: 6px;
    height: 23px;
    background: #FF9658;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.page-container > .sidebar > .main-nav .main-nav-item.active .indicator {
	visibility: visible;
}
.page-container > .sidebar > .main-nav .main-nav-item .icon {
	width: 20px;
	height: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 45px;
	flex-shrink: 0;
	transition: margin-left 0.3s linear;
}
.page-container > .sidebar > .main-nav .main-nav-item .icon.buzz-icon {
	margin-left: 30px;
}
.page-container > .sidebar.collapse > .main-nav .main-nav-item .icon {
	margin-left: 20px;
}
.page-container > .sidebar > .main-nav .main-nav-item .icon img {
	height: 16px;
}
.page-container > .sidebar > .main-nav .main-nav-item .nav-item-label {
	font-size: 15px;
	padding-left: 15px;
	opacity: 1;
	transition: opacity 0.1s linear;
}

.page-container > .sidebar.collapse > .main-nav .main-nav-item .nav-item-label {
	opacity: 0;
}
.page-container > .sidebar .myaccount {
	padding: 0 0 40px 44px;
}
.page-container > .sidebar .btn-myaccount {
	display: inline-block;
	height: 42px;
	line-height: 42px;
	width: 124px;
	text-align: center;
	color: rgb(236, 157, 101);
	border: rgb(236, 157, 101) solid 1px;
	border-radius: 21px
}

.page-container > .main {
	flex-grow: 1;
	border-top-left-radius: 50px;
	background-color: #fff;
	padding: 70px 40px 40px;
	height: 100%;
	overflow: auto;
}

/* nav */
.global-nav {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 10px;
}
.global-nav .nav-item {
	display: inline-block;
	width: 43px;
	height: 43px;
	line-height: 42px;
	background-color: #f2f3f7;
	border-radius: 22px;
	text-align: center;
}
.global-nav .nav-item-my-account {
	width: 102px;
	height: 55px;
	border: 1px solid #DFDBD2;
	border-radius: 50px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.global-nav .nav-item-my-account .avatar {
	display: inline-block;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	background: #BBBBBB;
	margin-left: 6px;
}
.global-nav .nav-item-my-account .avatar + span {
	color: #B0B0B0;
	display: inline-block;
	width: 43px;
	text-align: center;
	margin-right: 6px;
}

.global-nav .nav-item-my-account:after {
	display: none;
}

.global-nav .my-account-menu {
	background-color: #FF9658;
	border: 0;
	border-radius: 30px;
	overflow: hidden;
	padding: 0;
	width: 375px;
}
.global-nav .my-account-menu .arrow-up {
	background-color: #F2F3F7;
	border-bottom-left-radius: 30px;
	padding: 6px 0;
	text-align: center;
	width: 190px;
}
.global-nav .user-info {
	clear: both;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 0;
}
	.global-nav .user-info .user-avatar {
		background-color: #A5A7B4;
		border-radius: 50px;
		height: 80px;
		width: 80px;
		margin-left: 20px;
	}
.global-nav .user-switcher {
	background: #F97E4C;
	border-radius: 30px;
	color: #fff;
	padding: 26px 0;
	text-align: center;
}
.global-nav .user-switcher > ul {
	list-style: none;
	display: flex;
	gap: 15px;
	justify-content: center;
	margin: 0 0 10px;
	padding: 0;
}
	.global-nav .user-switcher > ul .user-avatar {
		width: 35px;
		height: 35px;
		border-radius: 50%;
		background-color: #A5A7B4;
		display: block;
	}

.home-nav {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-nav .logo {
	/*margin-top: 200px;*/
	margin-bottom: 65px;
}
.home-nav .nav-list {
	list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	gap: 30px;
}
.home-nav .nav-list .nav-item a {
	color: #c7c7c7;
	display: flex;
	flex-basis: 33%;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
}

.home-nav .nav-list .nav-item a .image {
	background-color: #F2F3F7;
	border-radius: 50%;
	color: #DFDBD2;
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 6px;
}

.home-nav .nav-list .nav-item a:hover {
	color: #1e1e1e;
	text-decoration: none;
}

.home-nav .nav-list .nav-item a:hover .image {
	color: #FF9658;
}

.home-nav .login-form {
	width: 400px;
}

/* header */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.header h2 {
	font-size: 28px;
    font-weight: bold;
	text-transform: uppercase;
    color: #E8652A;
	margin: 0 0 10px;
}

.header h2 .description {
	display: block;
	color: #999;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.2em;
	text-transform: none;
	margin: 8px 0;
	max-width: 820px;
}
.header .page-title {
	color: #1B2B4B;
	font-size: 20px;
	font-weight: bold;
	width: 100%;
	margin-top: 8px;
	margin-bottom: 8px;
}

/* buttons */
.btn-beagle {
	height: 42px;
	background-color: #F2F3F7;
	border: 1px solid #F97E4C;
	border-radius: 8px;
	color: #F97E4C;
	padding-top: 10px;
	padding-bottom: 10px;
}
.btn-beagle:focus,
.btn-beagle:hover {
	background: #FFA169 !important;
	background: linear-gradient(100deg,rgba(255, 161, 105, 1) 0%, rgba(248, 103, 22, 1) 100%) !important;
	border-color: #F97E4C !important;
	color: #fff !important;
}

.btn-beagle-alt {
	height: 42px;
	background-color: #F2F3F7;
	border: 1px solid #4031E2;
	border-radius: 8px;
	color: #4031E2;
	padding-top: 10px;
	padding-bottom: 10px;
}

.btn-beagle-alt:focus,
.btn-beagle-alt:hover {
	background: #1561ED !important;
	background: linear-gradient(100deg,rgba(21, 97, 237, 1) 0%, rgba(64, 49, 226, 1) 100%) !important;
	border: 1px solid #4031E2 !important;
	color: #fff !important;
}

.btn-beagle-solid {
	background-color: #E8652A;
	color: #fff;
	display: inline-block;
	height: 32px;
	line-height: 32px;
	border-radius: 30px;
	min-width: 80px;
	text-align: center;
	text-decoration: none;
}
.btn-beagle-solid:focus,
.btn-beagle-solid:hover {
	background-color: #c64308;
	color: #fff;
	text-decoration: none;
}

.btn.disabled, 
.btn-beagle-solid.disabled {
	pointer-events: none;
	cursor: not-allowed;
	background-color: #999;
	color: #fff;
	border: none;
}

/**/
.top-toolbar {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}
	.top-toolbar .search input {
		background-color: #F2F3F7;
		border: 1px solid #EFF0F0;
		border-radius: 20px;
		width: 100%;
		min-width: 100px;
		height: 42px;
		padding: 15px;
	}

	.top-toolbar .btn {
		height: 42px;
		background-color: #F2F3F7;
		border: 1px solid #4031E2;
		border-radius: 8px;
		color: #4031E2;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.top-toolbar .btn:hover,
	.top-toolbar .btn.active {
		background: #1561ED !important;
		background: linear-gradient(100deg,rgba(21, 97, 237, 1) 0%, rgba(64, 49, 226, 1) 100%) !important;
		border: 1px solid #4031E2 !important;
		color: #fff !important;
		box-shadow: none;
	}
	.top-toolbar .btn.btn-orange {
		border-color: #F97E4C;
		color: #F97E4C;
	}
	.top-toolbar .btn.btn-orange.active,
	.top-toolbar .btn.btn-orange:focus-visible,
	.top-toolbar .btn.btn-orange:hover {
		background: #FFA169 !important;
		background: linear-gradient(100deg,rgba(255, 161, 105, 1) 0%, rgba(248, 103, 22, 1) 100%) !important;
		border-color: #F97E4C !important;
		color: #fff !important;
	}
	.btn {
		height: 42px;
		background-color: #F2F3F7;
		border: 1px solid #4031E2;
		border-radius: 8px;
		color: #4031E2;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.btn-orange {
		border-color: #F97E4C;
		color: #F97E4C;
		line-height: 1em;
	}
	.btn-orange.disabled {
		pointer-events: none;
		cursor: not-allowed;
		background-color: #F2F3F7;
		color: #F97E4C;
		border: none;
		border: 1px solid #F97E4C;
	}
	.btn.btn-orange.active,
	.btn.btn-orange:focus-visible,
	.btn.btn-orange:hover {
		background: #FFA169 !important;
		background: linear-gradient(100deg,rgba(255, 161, 105, 1) 0%, rgba(248, 103, 22, 1) 100%) !important;
		border-color: #F97E4C !important;
		color: #fff !important;
	}
	.btn.btn-orange.active {
		box-shadow: none;
	}

	.btn-primary-icon {
		border-color: #F97E4C;
		color: #F97E4C;
		padding: 0 15px 0 8px;
		height: 55px;
		line-height: 54px;
		font-size: 14px;
		border-radius: 50px;
	}

	.btn-primary-icon img {
		height: 30px;
	}

.chart-btn-group {
	display: flex;
	gap: 15px;
}
.chart-panel {
	border: 0;
	border-radius: 30px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	padding: 20px;
	height: 510px;
	overflow: hidden;
}
/* .model */
.modal-header {
	border-bottom: 0;
}
.modal-footer {
	border-top: 0;
}
.modal-content {
	border-radius: 30px;
}
.modal-header.modal-header-block {
	display: block;
}
@media (min-width: 768px) {
	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
	}
}

.modal-dialog {
	max-width: 600px;
}

.modal-dialog.modal-lg {
	max-width: 900px;
}

/* data table */
.postviewDataTable_processing,
.dataTables_filter,
.assigned-labels {
	display: none;
}
.table>tbody>tr, table.dataTable>tbody>tr {
    background-color: #f6f8f9;
}
.table>:not(caption)>*>* {
	background-color: transparent;
}
div.dataTables_wrapper div.dataTables_processing {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
	background: rgba(0, 0, 0, 0.2);
}
.dataTables_wrapper {
	position: relative;
}
.dataTables_wrapper .total-records {
	font-size: 13px;
	font-weight: bold;
	color: #445568;
	margin-bottom: 0px;
	line-height: 1.8;
	padding: 4px 16px 16px;
}
.table.dataTable {
	border-spacing: 0;
}
.table>thead>tr>th {
	border-bottom: 0;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	border: none;
	border-top: 6px solid #fff;
	border-bottom: 6px solid #fff;
	font-size: 14px;
}
.table>tbody>tr,
table.dataTable>tbody>tr {
	background-color: #f6f8f9;
}
.table>tbody>tr.positive, table.dataTable>tbody>tr.positive {
	background-color: #D0E7D0!important;
}
.table>tbody>tr.negative, table.dataTable>tbody>tr.negative {
	background-color: #ffdbcf!important;
}
.dataTable h4 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 0;
	line-height: 1.5em;
	color: #333;
}

.dataTables_paginate.paging_simple_numbers {
	display: flex;
	justify-content: end;
	align-items: center;
}

/* tabs */
.beagle-tabs {
    display: flex;
    gap: 8px;
    padding: 0 32px;
    border-bottom: 1px solid #DDE1EA;
}
	.beagle-tabs > a.tab-btn {
		padding: 12px 20px;
		font-size: 14px;
		font-weight: bold;
		color: #7A8898;
		background: transparent;
		border: none;
		cursor: pointer;
		position: relative;
		transition: color 0.2s;
		text-decoration: none;
	}
	.beagle-tabs > a.tab-btn.active {
		color: #1B2B4B;
	}
	.beagle-tabs > a.tab-btn::after {
		content: '';
		position: absolute;
		bottom: -1px;
		left: 0;
		right: 0;
		height: 3px;
		background: #E8652A;
		border-radius: 2px 2px 0 0;
		transform: scaleX(0);
		transition: transform 0.25s;
	}
	.beagle-tabs > a.tab-btn.active::after {
		transform: scaleX(1);
	}

/* table v2*/
.table-v2 {
	border-spacing: 0;
}
.table.table-v2 > thead > tr > th,
.table.table-v2 > tbody > tr > td {
	vertical-align: middle;
	border: 0;
	background-color: #fff;
	border-bottom: 1px solid #DDE1EA;
}
.table.table-v2.table-v2-postview > tbody > tr > td {
	vertical-align: top;
}
.table.table-v2 > thead > tr > th {
	border-bottom-width: 0;
	box-shadow: 0px -2px 0px 0px rgba(221, 225, 234, 1) inset; /* bottom border */
    font-size: 12px;
    font-weight: bold;
	padding: 15px 8px;
}
.table.table-v2 > tbody > tr > td {
	color: #1B2B4B;
	font-size: 13px;
	padding-top: 15px;
    padding-bottom: 15px;
}

.table.table-v2 > tbody > tr:hover > td {
	background-color: #F5F7FA;
 }

.table.table-v2 > thead > tr > th {
	color: #808a98;
	text-transform: uppercase;
}

.selected-medium-icon {
	height: 16px;
}

.btn-action-add-profile {
	min-width: 80px;
}

/* card (panel) */
.card {
	border: none;
}
.card-header {
	background-color: #fff;
	border: 0;
}
.card-header h3 {
	font-size: 16px;
	margin: 0;
}

.chart-panel {
	margin-bottom: 20px;
}

/* bs tooltip */
.tooltip[data-popper-placement="right"] {
	margin-left: 11px!important;
}
.tooltip.show {
	opacity: 1;
}
.tooltip.in {
	opacity: 1;
}
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: rgba(255, 150, 88, 1);
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
	border-right-color: rgba(255, 150, 88, 1);
}

.bs-tooltip-auto[data-popper-placement^=start] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=start] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
	border-left-color: rgba(255, 150, 88, 1);
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: rgba(255, 150, 88, 1);
}

.tooltip-inner {
	background: rgba(255, 150, 88, 1);
	color: #fff;
	max-width: 300px;
}

/* Error */

#systemBusyDialog {
	background-color: #F2F3F7;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
	outline: 0;
}
#systemBusyDialog::backdrop {
	background-color: #000;
	opacity: .5;
}
#systemBusyDialog .beagle-dialog-body > div {
    display: flex;
    margin: 1em;
    padding: 1em;
    background: #fff;
    border-radius: 15px;
    align-items: center;
    gap: 2em;
}
#systemBusyDialog .beagle-dialog-body > div img {
	width: 100px;
	border-radius: 15px;
}
#systemBusyDialog .beagle-dialog-body > div p {
	font-size: 18px;
	max-width: 350px;
}
#systemBusyDialog .beagle-dialog-footer {
	margin-right: 1em;
}

/* Bootstrap 3 icons */
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("../fonts/glyphicons-halflings-regular.eot");
  src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-plus:before {
  content: "\002b";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-arrow-left:before {
    content: "\e091";
}
.glyphicon-arrow-right:before {
    content: "\e092";
}
