/**
 * Style
 * =========================================== */
:root {
	--light-gray-300: #edeff0;
	--accent-orange: #f56e28;
}
body {
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
}
a {
	color: #0073aa;
}
.container {
	padding: 0;
	max-width: 770px;
}
@media (max-width: 760px) {
	.container > .content {
		max-width: 540px;
		margin-left: auto;
		margin-right: auto;
	}
}

/**
 * Navbar
 * =========================================== */
.utp-navbar {
	background-color: #32373c;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 101;
}
.utp-navbar .navbar-brand {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 42px;
    width: 145px;
}
.utp-navbar .navbar-brand img {
    display: block;
    height: 32px;
    width: auto;
}
.navbar-nav > li > a {
    color: var(--light-gray-300);
}
.navbar-buttons > li {
    position: relative;
}
.navbar-buttons > li > a {
    font-size: 20px;
    position: relative;
}
.navbar-nav > li > a {
    color: var(--light-gray-300);
}
.navbar-buttons > li > a > .badge {
    position: absolute;
    top: 7px;
    left: 27px;
    font-weight: normal;
    font-size: 11px;
    padding: 2px 4px;
    min-width: 15px;
    background-color: var(--accent-orange);
}



/* Navbar Notify */
.dropdown-notify {
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	width: 380px;
	border-radius: 0 0 2px 2px;
	border: 1px solid #e3e4e8;
	margin-top: 20px;
	transition: all .3s;
}
.show.dropdown-notify {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
	color: #333;
	font-size: 13px;
	box-shadow: 0 20px 40px 0 rgba(0,0,0,.3);
}
.navbar-notify-header {
	padding: 10px 15px;
	border-bottom: 1px solid #e3e4e8;
}
.dropdown-notify:after,
.dropdown-notify:before {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	bottom: 100%;
	left: 21px;
}
.dropdown-notify:before {
	border-width: 6px;
	margin: 0 -6px;
	border-bottom-color: #fafbfc;
}
.dropdown-notify:after {
	border-width: 5px;
	margin: 0 -5px;
	border-bottom-color: #fafbfc;
}
.navbar-notify-item > a {
	display: block;
	padding: 10px 15px;
	color: #00b9eb;
	background-color: #f1f1f1;
	border-left: 2px solid #f1f1f1;
}
.navbar-notify-item > a:hover {
	text-decoration: none;
	color: #333;
	border-left: 2px solid #00b9eb;
}
.navbar-notify-item + .navbar-notify-item > a {
	border-top: 1px solid #e3e4e8;
}
.navbar-notify-footer {
	border-top: 1px solid #e3e4e8;
}
.navbar-notify-footer-btn {
	display: block;
	text-decoration: none;
	color: #333;
	text-align: center;
	padding: 8px 15px;
}
.navbar-notify-footer-btn:hover {
	background-color: #e3e4e8;
	color: #333;
	text-decoration: none;
}




/* Navbar Login */
.navbar-profile {
	margin-left: auto;
	margin-right: -15px;
}
.navbar-profile > li > a {
	display: block;
}
.navbar-profile > li > a:hover {
	background-color: #191e23;
    color: #00b9eb;
	text-decoration: none;
}
.nav-profile-name {
    font-weight: 500;
    padding-right: 10px;
    vertical-align: middle;
}
.nav-profile-img {
    width: 28px;
    height: 28px;
    border-radius: 14px;
    margin: 7px 0;
}
.navbar-profile .icon-caret {
    font-size: 8px;
    padding-left: 5px;
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.navbar-profile .icon-caret:before {
    content: "\f107";
}
.navbar-profile .dropdown-toggle::after {
	content: none;
}
.navbar-profile .dropdown-menu.show {
	visibility: visible;
	opacity: 1;
	margin-top: 6px;
}
.navbar-profile .dropdown-menu {
    border-color: #32373c;
    font-size: 13px;
    background-color: #32373c;
    border: none;
}
.navbar-profile .dropdown-menu > li > a {
    padding: 5px 15px;
    color: #eee;
	display: block;
}
.navbar-profile .dropdown-menu > li > a:hover {
    background-color: #0073aa;
    color: #eee;
	text-decoration: none;
}
.navbar-profile .dropdown-menu .divider {
    margin: 3px 15px;
    background-color: #585b5f;
}
.navbar-profile .dropdown-menu .divider {
    height: 1px;
}







.navbar-login > li + li {
	border-left: 1px solid #23282d;
}
.navbar-buttons > li > a {
    font-size: 16px;
    position: relative;
}
.navbar-nav > li > a {
    color: #edeff0;
}
.navbar-nav > li > a:hover {
	background-color: #191e23;
}
@media (min-width: 768px){
	.navbar-nav > li > a {
		padding: 11px 15px;
	}
	.navbar-nav > li > .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		margin-top: 20px;
		transition: all .3s;
		padding: 4px 0;
		border-radius: 4px;
		box-shadow: 0 1px 3px rgba(0,0,0,.1);
	}
	.navbar-nav > .open > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		margin-top: 6px;
	}
	.navbar .dropdown-menu:before {
		margin: 0 -6px;
		position: absolute;
		pointer-events: none;
		border: solid transparent;
		content: '';
		height: 0;
		width: 0;
		bottom: 100%;
		right: 42px;
		border-width: 6px;
		border-bottom-color: var(--dark-gray-700);
	}
	.navbar-profile > li > a {
		padding-top: 0;
		padding-bottom: 0;
	}
	.navbar-profile .dropdown-menu {
		right: 0;
		left: auto;
	}
}
@media (max-width: 767px) {
	.nav-profile-img {
		margin: 0;
	}
}



/**
 * Tabs
 * =========================================== */
.utp-tabs {
	width: 100%;
	display: flex;
	align-items: stretch;
	background-color: #fff;
	list-style: none;
	padding: 0;
	border-radius: 2px;
	text-align: center;
	font-size: 13px;
	box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
				0px 4px 5px 0px rgba(0, 0, 0, 0.14),
				0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.utp-tabs > li {
	display: flex;
}
.utp-tabs > li > a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px 15px;
	color: #333;
	position: relative;
}
.utp-tabs > li > a:before {
	content: '';
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	background-color: transparent;
	transition: all 0.3s;
}
.utp-tabs > li > .active:before {
	background-color: #00a0d2;
}
.utp-tabs > li > a > i {
	font-size: 16px;
}
.utp-tabs > .disabled {
	pointer-events: none;
	opacity: .5;
}
.utp-tabs-content {
	padding: 10px 15px;
}
.utp-tabs > li > .btn {
	padding: 5px 12px !important;
	color: #fff;
}
.utp-nav-tabs > li > a {
	border-radius: 2px 2px 0 0;
	padding: 3px 7px;
}
@media (max-width: 767px) {
	.utp-nav-tabs {
		border: 1px solid #dee2e6;
		border-radius: .25rem;
	}
	.utp-nav-tabs .nav-item {
		width: 100%;
	}
	.utp-nav-tabs .nav-item .nav-link {
		border: none;
	}
	.utp-nav-tabs .nav-item.show .nav-link,
	.utp-nav-tabs .nav-link.active {
		color: #495057;
		background-color: #e3e4e8;
		border: none;
	}
	.utp-nav-tabs > li > a {
		padding: 5px 10px;
		border-radius: 0 !important;
	}
}
@media (max-width: 480px) {
	.utp-tabs > li > a {
		padding-left: 10px;
		padding-right: 10px;
	}
	.utp-tabs > li > .btn {
		width: 29px;
		display: block;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.utp-tabs > li > .btn > span {
		display: none;
	}
	.utp-tabs > li > .btn:after {
		content: "\f067";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
	}
}

/**
 * Search
 * =========================================== */
.utp-search {
	position: relative;
}
.content > .utp-search {
	margin: 15px 15px 0;
}
.utp-search-form .btn-search-form {
	background-color: #e3e4e8;
	border: 1px solid #ccc;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: 30px;
}
.no-filter .utp-search-form .btn-search-form {
	margin-right: 0;
}
/* Sorting */
.utp-sorting > .inner {
	padding: 5px 0 8px;
	border-bottom: 1px solid #e3e4e8;
}
.utp-sorting-btn + .utp-sorting > .inner {
	margin-top: 5px;
}
.utp-sorting .inner-label {
	margin-right: 3px;
	padding-left: 5px;
}
.utp-sorting .item {
	padding: 2px 5px;
	border-radius: 2px;
	white-space: nowrap;
}
.utp-sorting .item:hover {
	color: #00b9eb;
	text-decoration: none;
}
.utp-sorting .item.active {
	color: #82878c;
	background-color: #f1f1f1;
}
.utp-sorting .item:focus {
	text-decoration: none;
}
.utp-sorting .item > i {
	margin-left: 3px;
	vertical-align: middle;
}
.utp-sorting-btn {
	position: absolute;
	top: 3px;
	right: -4px;
	font-size: 20px;
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 50%;
	transform: scaleY(-1);
	transition: all .3s;
}
.utp-sorting-btn:hover {
	color: #00b9eb;
	cursor: pointer;
}
.utp-sorting-btn.collapsed {
	transform: scaleY(1);
}
@media (max-width: 480px) {
	.utp-sorting > .inner {
		padding-left: 0;
		padding-right: 0;
	}
	.utp-sorting .inner-label {
		display: block;
		margin-bottom: 5px;
	}
	.utp-sorting .item {
		display: inline-block;
		margin-top: 2px;
		margin-bottom: 2px;
	}
}

/**
 * Buttons
 * =========================================== */
.btn {
	position: relative;
	border-radius: 2px;
	transition: padding .3s, opacity .3s;
}
.btn:not(.btn-sm):not(.btn-lg) {
	font-size: 13px;
	padding: 7px 12px;
}
.btn:active {
	bottom: -1px;
}
.btn:focus,
.btn:active,
.btn:active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
	outline: none;
	box-shadow: none;
}
.btn-default,
.btn-default:focus {
	background-color: #0073aa;
	color: #fff;
	border: 0;
}
.btn-default:hover,
.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover {
	background-color: #00a0d2;
	color: #fff;
}
.btn-default.disabled:hover {
	background-color: #0073aa;
}
.btn-primary,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
	background-color: #23282d;
	border: 0;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:focus {
	background-color: #32373c;
}
.btn-secondary {
	border: 0;
}
.btn-lg {
	padding: 5px 20px;
	font-size: 18px;
}
.btn-minw {
	min-width: 220px;
}
.btn-red {
	background-color: #f44336;
}
.btn-pink {
	background-color: #e91E63;
}
.btn-purple {
	background-color: #9c27b0;
}
.btn-indigo {
	background-color: #3f51B5;
}
.btn-blue {
	background-color: #2196f3;
}
.btn-cyan {
	background-color: #00bcd4;
}
.btn-green {
	background-color: #4caf50;
}
.btn-yellow {
	background-color: #ffeb3b;
}
.btn-orange {
	background-color: #ff9800;
}
.btn-brown {
	background-color: #795548;
}
.btn-blue-gray {
	background-color: #607d8b;
}
.btn-white {
	background-color: #fff;
	color: #222;
}
.btn-light-gray {
	background-color: #e2e4e7;
}

/**
 * Form
 * =========================================== */
.utp-form {
	padding: 15px;
}
label {
	font-size: 13px;
	font-weight: normal;
}
input[type=checkbox],
input[type=radio] {
	margin-top: 3px;
}
.form-control {
	font-size: 13px;
	height: 32px;
	border-radius: 2px;
}
.form-control:focus {
	outline: none;
	box-shadow: none;
	border-color: #00b9eb;
}
.form-control-short {
	max-width: 100px;
}
.radio > label + label,
.checkbox > label + label {
	margin-left: 10px;
}
.control-label {
	font-size: 13px;
	margin-bottom: 5px;
}
.control-label-normal {
	font-weight: normal;
}
.control-label + .checkbox,
.control-label + .radio {
	margin-top: 0;
}
.form-add-invoice .control-label {
	padding-right: 0;
}
.form-add-invoice .entry-footer {
	margin-left: -15px;
	margin-right: -15px;
}
.form-control-radio {
	display: inline-block;
	font-weight: normal;
	cursor: pointer;
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 0;
}
.radio .form-control-radio {
	padding-left: 2px;
	padding-bottom: 0;
}
.form-control-radio > [type="radio"] {
	display: none;
}
.form-control-radio > span {
	line-height: 1;
	padding-left: 18px;
	display: inline-block;
}
.form-control-radio > span:before {
	content: '';
	display: block;
	height: 11px;
	width: 11px;
	float: left;
	margin: 1px 7px 0 -18px;
	background-color: #fff;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #82878c;
	border-radius: 50%;
}
.form-control-radio:hover > [type="radio"] + span:before {
	background-color: #e3e4e8;
	border-color: #e3e4e8;
}
.form-control-radio > [type="radio"]:checked + span:before {
	background-color: #0073aa;
	box-shadow: 0 0 0 1px #0073aa;
}
.form-control-radio.disabled {
	pointer-events: none;
	opacity: .5;
}
.form-control-checkbox {
	display: inline-block;
	vertical-align: middle;
	font-weight: normal;
	cursor: pointer;
	position: relative;
	margin-bottom: 0;
}
.form-control-checkbox.disabled {
	pointer-events: none;
	opacity: .6;
	user-select: none;
}
.checkbox > .form-control-checkbox {
	padding-left: 2px;
	padding-bottom: 0;
}
.form-control-checkbox > [type="checkbox"] {
	display: none;
}
.custom-checkbox .custom-control-label:before {
	border-radius: 3px;
}
.form-control-checkbox > span {
	padding-left: 18px;
	display: inline-block;
}
.form-control-checkbox > span:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '';
	display: block;
	height: 16px;
	width: 16px;
	line-height: 14px;
	font-size: 10px;
	float: left;
	margin: 1px 7px 0 -18px;
	background-color: #fff;
	border: 1px solid #adb5bd;
	border-radius: 2px;
	text-align: center;
}
.form-control-checkbox:hover > [type="checkbox"] + span:before {
	background-color: #e3e4e8;
	border-color: #e3e4e8;
}
.form-control-checkbox > [type="checkbox"]:checked + span:before {
	content: "\f00c";
}
.form-add-invoice .form-group > div > .form-control-checkbox {
	padding-top: 7px;
}
.form-control-checkbox > span {
	position: relative;
	bottom: -2px;
}
.form-control-checkbox.has-link > span {
	color: #00b9eb;
}
.form-group .form-control-checkbox:last-child {
	padding-bottom: 0;
}
.form-group-description {
	margin-top: 5px;
	font-size: 13px;
}
.control-label + .form-group-description {
	margin-top: -5px;
	margin-bottom: 7px;
}
.form-group-last {
	margin-bottom: 0;
}
.form-edit .form-control-radio,
.form-edit .form-control-checkbox {
	padding-top: 7px;
	display: block;
	padding-bottom: 0;
}
.form-edit__panel .form-control-checkbox {
	display: inline-block;
}
.form-edit .control-label {
	padding-right: 0;
	padding-top: 9px;
	line-height: 1;
}
.form-group-block .control-label {
	padding-top: 0;
	padding-bottom: 10px;
}
.form-edit .entry-footer {
	margin-left: -15px;
	margin-right: -15px;
}
.form-control-inline {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}
.form-group-line {
	display: block;
}
.form-group-line + .form-group-line {
	margin-top: 10px;
}
.form-control-list .form-control-checkbox {
	padding-bottom: 2px;
}
.custom-control-label {
	padding-top: 2px;
}
.custom-control-input:checked ~ .custom-control-label:before {
	border-color: #00a0d2;
	background-color: #00a0d2;
}
.custom-control-input:focus ~ .custom-control-label:before {
	box-shadow: none;
}
/* Form Invoice History */
.form-group_invoice-history .form-control-radio {
	display: block;
}
.form-group_invoice-history .form-control-radio:last-child,
.form-group_send-letter .form-control-checkbox:last-child {
	padding-bottom: 0;
}
.form-group_invoice-history_callback {
	margin-left: -5px;
	margin-right: -5px;
}
.form-group_invoice-history_callback > [class^="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.form-group_invoice-history_callback .form-control-select {
	margin-bottom: 8px;
}
.col-voice-history-date,
.col-voice-history-time {
	display: none;
}
.form-group_send-letter-block {
	display: none;
}
.form-group-radio .form-control-radio + .form-control-radio {
	margin-left: 10px;
}
.form-edit__panel {
	border: 1px solid #e3e4e8;
	margin-right: -15px;
	padding: 0 10px 5px;
}
.form-group__block .form-edit__panel {
	margin-right: 0;
}
.form-edit__panel .panel-group {
	margin-bottom: 0;
}
.form-edit__panel .panel-group .panel + .panel {
	margin-top: 0;
}
.form-edit__panel .panel-body {
	padding: 5px;
}
.form-horizontal .form-group-block {
	margin-left: 0;
	margin-right: 0;
	padding: 0 10px;
}
.form-group-block__controls .form-control-radio:first-child,
.form-group-block__controls .form-control-checkbox:first-child {
	padding-top: 0;
}
.input-group .btn-outline-secondary {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}
.input-group-third {
	width: 33.33333333%;
}
.form-group-block {
	font-size: 13px;
}
.form-group-footer > .btn + .btn {
	margin-left: 8px;
}
.utp-submit-form > .form-group-footer {
	padding: 10px 15px;
	border-top: 1px solid #e3e4e8;
}
.form-separator {
	margin: 1rem 0;
	height: 1px;
	background-color: #e3e4e8;
}
.form-socials {
	position: relative;
}
.form-social-item {
	display: table;
	width: 100%;
	border-radius: 3px;
	background-color: #f1f1f1;
}
.form-social-item + .form-social-item {
	margin-top: 5px;
}
.form-social-item-icon {
	width: 45px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 24px;
	display: table-cell;
	vertical-align: middle;
}
.form-social-item-icon .social-item > i {
	line-height: 34px;
}
.form-social-item-url {
	width: auto;
	display: table-cell;
	vertical-align: middle;
}
.form-social-item-action {
	width: 50px;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	margin-top: initial;
}
.form-social-item-action.utp-item__actions {
	margin-left: auto;
	margin-top: auto;
	right: auto;
	top: auto;
}
.form-social-item-action .utp-item__action-button {
	margin-left: auto;
	margin-right: auto;
}
.form-social-item-action .utp-item__actions-dropdown {
	right: -17px;
}
.modal-icon-select {
	text-align: center;
}
.modal-icon-select .btn {
	font-size: 20px;
	width: 35px;
	margin: 5px;
	border-radius: 50%;
	height: 35px;
	line-height: 36px;
	display: inline-block;
	padding: 0;
	background-color: transparent;
}
.modal-icon-select .btn.active {
	background-color: #0073aa;
	color: #fff;
}
.modal-icon-select .btn:focus,
.modal-icon-select .btn.active.focus {
	outline: none;
	box-shadow: none;
}
.form-group-header {
	margin-bottom: 5px;
}
.form-group + .form-group-header {
	padding-top: 10px;
}
.form-group-header .control-label {
	font-weight: bold;
}
.form-control__switch {
	position: relative;
}
.form-control__switch > [type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	margin: 0;
	padding: 0;
	z-index: 1;
	cursor: pointer;
}
.form-control__switch .form-control__switch-track {
	content: "";
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	background-color: #fff;
	border: 2px solid #555d66;
	width: 32px;
	height: 18px;
	border-radius: 9px;
	transition: background .2s ease;
}
.form-control__switch .form-control__switch-thumb {
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #555d66;
	background: #fff;
	transition: transform .1s ease;
}
.form-control__switch.is-checked .form-control__switch-thumb {
	border: 2px solid #fff;
	background-color: #00a0d2;
	transform: translateX(14px);
}
.form-control__switch:hover .form-control__switch-track {
	 background-color: #e2e4e7;
}
.form-control__switch.is-checked .form-control__switch-track {
	background-color: #00a0d2;
	border: 2px solid #00a0d2;
}

/* Products */
.form-group-products .item {
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
	border-radius: 2px;
	padding: 5px 10px;
}
.form-group-products .item + .item {
	margin-top: 5px;
}
.form-group-products .item-name {
	flex: 1;
	line-height: 1.2;
}
.form-group-products .item-name > a:hover {
	color: #00b9eb;
	text-decoration: none;
}
.form-group-products .item-price,
.form-group-products .item-action{
	margin-left: 10px;
}
.form-group-products .item-price .input-group {
	width: 120px;
}
.form-group-products .item-price .form-control {
	text-align: right;
}
.form-group-products .btn-action {
	float: right;
}
.form-group-products .item-empty {
	padding: 0;
}

/* Colors */
.has-success .form-control {
	border-color: #00bd9b;
}
.has-success .form-control-feedback {
	color: #00bd9b;
}
.has-error .form-control {
	border-color: #f44336;
}
.has-error .form-control-feedback {
	color: #f44336;
}

/**
 * Cards
 * =========================================== */
.utp-cards {
	padding: 15px;
	background-color: #fff;
}
.form-group > .utp-cards {
	padding: 0;
}
.utp-tabs-content > .tab-pane > .utp-cards {
	padding: 5px 0;
}
.utp-tabs-content > .tab-pane > .utp-search + .utp-cards {
	padding-top: 15px;
}
.utp-cards > .item {
	display: flex;
	width: 100%;
}
.utp-cards > .item + .item {
	margin-top: 10px;
}
.utp-cards .item .item {
	margin-top: 10px;
	margin-bottom: 10px;
}
.utp-cards .item-inner {
	flex: 1;
	border-radius: 2px;
	border: 1px solid #e3e4e8;
	background-color: #fff;
	transition: all .3s;
}
.utp-cards .item-figure {
	margin-right: 12px;
}
.utp-cards .item-thumb {
	display: block;
	width: 50px;
	border-radius: 2px;
	overflow: hidden;
	border: 1px solid #e3e4e8;
	transition: all .3s;
}
.utp-cards .item:hover .item-inner,
.utp-cards .item:hover .item-thumb {
	border-color: #c8cdd4;
}
.utp-cards .item-header,
.utp-cards .item-footer {
	position: relative;
	padding: 5px 14px;
	border-radius: 2px;
	background-color: #f3f4f5;
	display: flex;
	align-items: center;
	width: 100%;
}
.utp-cards .item-header {
	padding: 5px 38px 5px 14px;
}
.utp-cards .item-body {
	padding: 5px 14px;
	color: #6d7175;
	line-height: 1.2;
}
.utp-cards .body-row {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.utp-cards .item-body > * + * {
	margin-top: 4px;
}
.utp-cards .item-header .line-separator,
.utp-cards .item-body .line-separator,
.utp-cards .item-footer .line-separator {
	padding-left: 5px;
	padding-right: 5px;
}
.utp-cards .item-header .line-separator:before,
.utp-cards .item-body .line-separator:before,
.utp-cards .item-footer .line-separator:before {
	content: '';
	display: inline-block;
	margin-bottom: 1px;
	width: 1px;
	height: 12px;
	vertical-align: middle;
	background-color: #e3e4e8;
}
.utp-cards .item-header .line-separator:before,
.utp-cards .item-footer .line-separator:before {
	background-color: #ccc;
}
.utp-cards .item-footer {
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
}
.utp-cards .item-footer .footer-line {
	width: 100%;
}
.utp-cards .item-footer .footer-line + .footer-line {
	margin-top: 2px;
}
.utp-cards .item-name {
	flex: 1;
	font-weight: bold;
	line-height: 1.2;
}
.utp-cards .item-name[contenteditable] {
	border-radius: 2px;
	padding: 1px 2px;
}
.utp-cards .item-name[contenteditable]:focus {
	box-shadow: 0 0 0 1px #00b9eb;
	background-color: #fff;
	outline: none;
}
.utp-cards .item-name[contenteditable]:before {
	content: "\e817";
	font-family: "UTP Fonts";
	padding-right: 4px;
	color: #82878c;
}
.utp-cards .item-name[contenteditable]:hover:before,
.utp-cards .item-name[contenteditable]:focus:before {
	color: #00b9eb;
}
.utp-cards .item .item .item-name a {
	color: #666;
}
.utp-cards .item-name-normal {
	font-weight: normal;
}
.utp-cards .item-name .item-code {
	padding: 1px 5px;
	border: 1px solid #e3e4e8;
	color: #0073aa;
	border-radius: 2px;
	transition: all .3s;
}
.utp-cards .item-name .item-code:hover {
	border-color: #0073aa;
	cursor: pointer;
}
.utp-cards .item-name .item-code > i {
	margin-right: 5px;
	margin-left: 4px;
	font-size: 10px;
}
.utp-cards .item-name > a:hover {
	text-decoration: none;
	color: #00b9eb;
}
.utp-cards .item-name > a:focus {
	text-decoration: none;
}
.utp-cards .item-header .item-tag {
	color: #82878c;
	padding-left: 8px;
	align-self: flex-start;
}
.utp-cards .item-header .item-tag:last-child {
	margin-right: -25px;
}
.utp-cards .item-header .item-tag > a,
.utp-cards .item-header .item-tag > .tag-btn {
	display: block;
	color: #82878c;
	padding: 2px 5px;
	margin-top: -2px;
	margin-bottom: -2px;
	border-radius: 2px;
	transition: all .3s;
}
.utp-cards .item-header .item-tag > a:hover,
.utp-cards .item-header .item-tag > .tag-btn:hover {
	text-decoration: none;
	color: #82878c;
	background-color: #e3e4e8;
	cursor: pointer;
}
.utp-cards .item-header .item-tag > a:focus {
	text-decoration: none;
}
.utp-cards .item-header .item-tag > span {
	padding-right: 2px;
}
.utp-cards .item-header .item-tag > .tag-btn > i {
	margin-left: 4px;
	font-size: 12px;
}
.utp-cards .item-header .item-tag-badge {
	color: #f56e28;
	font-weight: bold;
}
.utp-cards .item-before {
	margin-right: 10px;
	margin-left: -8px;
}
.utp-cards .item-count {
	display: block;
	min-width: 18px;
	height: 18px;
	line-height: 16px;
	border: 1px solid #ccc;
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
	padding: 0 5px;
	margin-left: -8px;
	margin-right: 5px;
	font-size: 10px;
}
.utp-cards .item-before .item-price {
	margin-left: 8px;
}
.utp-cards .item-price > i {
	font-size: 85%;
}
.utp-cards .item-before .item-toggle {
	display: block;
	margin: -2px 0 -1px -2px;
}
.utp-cards .item-body .item-title {
	font-weight: 500;
	line-height: 1.2;
}
.utp-cards .item-body .item-title + .item-title {
	border-top: 1px solid #f1f1f1;
	margin-top: 2px;
	padding-top: 2px;
}
.utp-cards .item-body .item-badge {
	display: inline-block;
	min-width: 15px;
	border-radius: 50%;
	line-height: 15px;
	text-align: center;
	color: #fff;
	background-color: #0073aa;
}
.utp-cards .item-body .item-badge:hover {
	text-decoration: none;
	background-color: #00b9ed;
}
.utp-cards .item-footer .fas {
	font-size: 85%;
}
.utp-cards .item-footer .footer-group {
	display: inline-block;
	vertical-align: middle;
	margin-right: -4px;
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.utp-cards .footer-dates {
	display: inline-block;
	vertical-align: middle;
	margin-right: -4px;
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.utp-cards .dates-label {
	display: block;
	color: #32373c;
}
.utp-cards .dates-label + .dates-item {
	margin-top: 3px;
}
.utp-cards .dates-item {
	display: block;
	color: #6d7175;
}
.utp-cards .dates-item > span {
	font-size: 11px;
	margin-left: 5px;
	color: #a3a8ad;
}
.utp-cards .item-contacts {
	display: flex;
	align-items: center;
}
.utp-cards .item-contact {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid transparent;
	padding: 5px 5px 5px 10px;
	margin-top: -5px;
	margin-bottom: -5px;
	border-radius: 2px 2px 0 0;
}
.utp-cards .item-contact:first-child {
	margin-left: -10px;
}
.utp-cards .item-contact + .item-contact {
	margin-left: -4px;
}
.utp-cards .item-contact.open {
	border-color: #e3e4e8;
	border-bottom-color: #fff;
}
.utp-cards .item-contact.open:after {
	content: '';
	display: block;
	height: 1px;
	left: 0;
	right: 0;
	bottom: 4px;
	background-color: #fff;
	position: absolute;
	z-index: 1001;
}
.utp-cards .item-contact .contact-toggle {
	display: inline-block;
	font-size: 8px;
	width: 12px;
	text-align: center;
	cursor: pointer;
}
.utp-cards .item-contact .contact-toggle:before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.utp-cards .item-contact .contact-toggle:hover {
	color: #00a0d2;
}
.utp-cards .item-contact > a:hover {
	color: #00a0d2;
	text-decoration: none;
}
.utp-cards .item-contact .dropdown-menu {
	top: 100%;
	left: -1px;
	min-width: 100%;
	margin-top: -5px;
	padding: 0;
	font-size: inherit;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.utp-cards .item-contact .dropdown-menu > li {
	border-left: 1px solid #e3e4e8;
	border-right: 1px solid #e3e4e8;
	background-color: #fff;
	padding: 5px 10px;
	margin-right: -2px;
}
.utp-cards .item-contact .dropdown-menu > li:first-child {
	border-top: 1px solid #e3e4e8;
	border-radius: 0 2px 0 0;
}
.utp-cards .item-contact .dropdown-menu > li:last-child {
	border-bottom: 1px solid #e3e4e8;
	border-radius: 0 0 2px 2px;
}
.utp-cards .item-contact .dropdown-menu > li + li {
	padding-top: 0;
}
.utp-cards .item-contact .dropdown-menu > li > a {
	padding: 0;
	color: #0073aa;
}
.utp-cards .item-contact .dropdown-menu > li > a:hover {
	padding: 0;
	color: #00a0d2;
	background-color: transparent;
}
.utp-cards .socials {
	float: right;
	list-style: none;
	padding: 0;
	margin: 0 0 0 auto;
	font-size: 15px;
	display: flex;
}
.utp-cards .social-link {
	display: block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border-radius: 2px;
	background-color: transparent;
	color: #0073aa;
}
.utp-cards .social-link + .social-link {
	margin-left: 5px;
}
.utp-cards .social-link:hover {
	text-decoration: none;
	color: #00a0d2;
}
.utp-cards .social-link:focus {
	text-decoration: none;
	color: #0073aa;
}
.utp-cards .social-link.disabled {
	color: #e3e4e8;
	pointer-events: none;
}
.utp-cards .list-item {
	display: block;
	padding: 4px 0;
	color: #6d7175;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.utp-cards .list-item:first-child {
	padding-top: 0;
}
.utp-cards .list-item:last-child {
	padding-bottom: 0;
}
.utp-cards .list-item + .list-item {
	border-top: 1px solid #f1f1f1;
}
.utp-cards .body-list + .item-desc {
	border-top: 1px solid #f1f1f1;
	padding-top: 4px;
}

/* Icons */
.utp-cards .item-icon {
	display: block;
	text-align: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 16px;
	color: #fff;
}
.utp-cards .item-icon:not([class*="bg-"]) {
	color: #0073aa;
	background-color: #e3e4e8;
}
.utp-cards .item-icon > i,
.utp-cards .item-icon > .item-number {
	line-height: 50px;
}
.utp-cards .item-icon > .item-number {
	font-style: normal;
	font-weight: bold;
}
.utp-cards .item-icon > .fa-clock {
	font-size: 20px;
	position: relative;
	right: -1px;
}
.utp-cards .item-icon:hover {
	text-decoration: none;
}

/* Player */
.utp-cards .item-player {
	width: 15px;
	height: 15px;
	line-height: 15px;
	text-align: center;
	cursor: pointer;
	font-size: 12px;
}
.utp-cards .item-before .item-player {
	margin-left: 8px;
}
.utp-cards .item-player > span:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.utp-cards .item-player .control-play:before,
.utp-cards .item-player .control-pause:hover:before {
	content: "\f04b";
}
.utp-cards .item-player .control-pause:before,
.utp-cards .item-player .control-play:hover:before {
	content: "\f04c";
}
.utp-cards .item-player .control-sent:before {
	content: "\f00c";
}
.utp-cards .item-player .control-flash {
	animation: fa-flash 2s infinite ease;
}
.utp-cards .item-gravatar,
.utp-cards .item-payment {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	transition: all .3s;
}
.utp-cards .item-gravatar:hover {
	filter: brightness(.9);
}
.utp-cards .item-payment:hover {
	filter: grayscale(1);
}
.utp-cards .item-status {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
@keyframes fa-flash {
	0%,100%,50% {
		opacity: 1;
	}
	25%,75%{
		opacity: 0;
	}
}
.utp-cards .item-versions {
	padding: 0;
	margin-bottom: 8px;
}
.utp-cards .item-version + .item-version {
	margin-top: 5px;
}
.utp-cards .item-versions .btn {
	border-radius: 2px;
	padding: 3px 9px;
	background-color: #f1f1f1;
	color: #82878c;
	border: 1px solid #e3e4e8;
	min-width: 86px;
}
.utp-cards .item-versions .item-total {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 0;
	min-width: 86px;
	color: #333;
	font-weight: bold;
	text-align: right;
	position: relative;
	bottom: -1px;
}
.utp-cards .item-versions .btn:hover {
	border-color: #0073aa;
	color: #0073aa;
}
.utp-cards .item-versions .btn:focus {
	outline: none;
}
.utp-cards .item-versions .btn:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f00d";
	display: inline-block;
	margin-left: 5px;
	line-height: 1;
	width: 6px;
	font-size: 10px;
}
.utp-cards .item-versions .active {
	border: 1px solid #0073aa;
	color: #0073aa;
	box-shadow: none;
}
.utp-cards .item-versions .active:hover {
	border-color: #e3e4e8;
	color: #82878c;
}
.utp-cards .item-versions .active:after {
	content: "\f00c";
}
.utp-cards .item-versions .item-statistics {
	display: inline-block;
	vertical-align: middle;
	padding: 2px 0 0 5px;
}
@media (max-width: 540px) {
	.utp-cards .item-header {
		flex-wrap: wrap;
	}
	.utp-cards .item-header .item-tag > .tag-btn > span {
		display: none;
	}
	.utp-cards .item-header .item-tag > .tag-btn > i {
		padding-right: 4px;
	}
	.utp-cards .item-inner {
		max-width: 100%;
	}
	.utp-cards .item-name {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	.utp-cards .item-versions {
		margin-bottom: 0;
	}
	.utp-cards .item-versions .item-statistics {
		display: block;
	}
	.utp-cards .item-versions .item-statistics > span,
	.utp-cards .body-row > .col-left > span {
		display: block;
		padding: 2px 0;
	}
	.utp-cards .item-versions .item-statistics > .line-separator,
	.utp-cards .body-row > .col-left > .line-separator {
		display: none;
	}
	.utp-cards .item-versions .item-version {
		padding-bottom: 5px;
	}
	.utp-cards .item-versions .item-statistics {
		padding-left: 0;
		padding-top: 4px;
	}
	.utp-cards .item-versions .item-total {
		text-align: left;
	}
}

/* Actions */
.utp-cards .item-actions {
	position: absolute;
	top: 0;
	right: 5px;
}
.utp-cards .item-actions > .item-btn {
	display: block;
	width: 28px;
	height: 28px;
	font-size: 14px;
	text-align: center;
	line-height: 29px;
	color: #0073aa;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.2s;
}
.utp-cards .item-actions.open > .item-btn,
.utp-cards .item-actions.show > .item-btn,
.utp-cards .item-actions > .item-btn:hover {
	background-color: #e3e4e8;
}
.utp-cards .item-actions.open > .item-btn,
.utp-cards .item-actions.show > .item-btn {
	transform: rotate(-90deg);
}
.utp-cards .item-actions > .dropdown-menu {
	position: absolute;
	padding: 5px 0;
	margin: 5px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 2px;
	font-size: 13px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
}
.utp-cards .item-actions.open > .dropdown-menu {
	display: block;
	font-size: 13px;
}
.utp-cards .item-actions > .dropdown-menu:after,
.utp-cards .item-actions > .dropdown-menu:before {
	content: '';
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	height: 0;
	width: 0;
	bottom: 100%;
	right: 7px;
	border-bottom-color: #fff;
	border-width: 6px;
}
.utp-cards .item-actions > .dropdown-menu:before {
	border-bottom-color: #ccc;
}
.utp-cards .item-actions > .dropdown-menu:after {
	margin-bottom: -1px;
}
.utp-cards .item-actions > .dropdown-menu > li > a {
	padding: 3px 15px;
	display: block;
	color: #333;
}
.utp-cards .item-actions > .dropdown-menu > li > a:hover {
	background-color: #e3e4e8;
	text-decoration: none;
}
.utp-cards .item-actions > .dropdown-menu > li > .disabled {
	background-color: #f1f1f1;
	color: #cecbcb;
	pointer-events: none;
}
.utp-cards .item .item .item-actions > .item-btn {
	color: #666;
}
.utp-cards .item-banner {
	text-align: center;
	display: block;
}
.utp-cards .item-banner img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.utp-cards .item-disabled {
	opacity: .7;
	filter: grayscale(1);
}
.utp-cards .item-disabled .item-figure,
.utp-cards .item-disabled .item-actions > .item-btn {
	pointer-events: none;
}

/**
 * Pagination
 * =========================================== */
.nav-pagination {
	padding: 10px 15px;
	margin-top: 15px;
	border-top: 1px solid #e3e4e8;
}
.entry-content .nav-pagination {
	margin-left: -15px;
	margin-right: -15px;
}
.utp-tabs-content > .tab-pane > .nav-pagination {
	margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -10px;
}
.nav-pagination:before,
.nav-pagination:after {
	content: '';
	display: table;
	clear: both;
}
.nav-pages {
	float: left;
}
.nav-pages > label {
	font-weight: normal;
	vertical-align: middle;
	margin: 0;
	padding-right: 5px;
}
.nav-pages > .nav-pages-list {
	display: inline-block;
	vertical-align: middle;
}
.nav-pages > .nav-pages-list > a {
	display: inline-block;
	border-radius: 2px;
	background-color: #e3e4e8;
	padding: 2px 7px 1px;
	color: #333;
}
.nav-pages > .nav-pages-list > a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #82878c;
}
.nav-pages > .nav-pages-list > .active {
	background-color: #32373c;
	color: #fff;
}
.nav-pages > .nav-pages-list > a:focus {
	outline: none;
	text-decoration: none;
}
.nav-pager {
	float: right;
	border-radius: 2px;
	background-color: #e3e4e8;
	padding: 1px;
}
.nav-pager:before,
.nav-pager:after {
	content: '';
	display: table;
	clear: both;
}
.nav-pager-control {
	border: 0;
	width: 30px;
	background-color: #fff;
	text-align: right;
	padding: 2px 5px;
	float: left;
	display: block;
}
.nav-pager-label {
	color: #333;
	padding: 2px 5px;
	float: left;
	display: block;
}
.nav-pager-arrow {
	float: left;
	display: block;
}
.nav-pager-arrow > a {
	display: block;
	font-size: 11px;
	padding: 3px 5px 1px;
	border-radius: 2px;
	float: left;
	line-height: 18px;
	color: #0073aa;
}
.nav-pager-arrow > a:hover {
	background-color: #fff;
	text-decoration: none;
}

/* Entry content */
.article {
	font-size: 19px;
	font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
.article p,
.article blockquote,
.article cite,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
	margin-bottom: 25px;
}
.article blockquote {
	font-style: italic;
	padding: 0px 30px 0px 18px;
	border-left: 2px solid rgb(0, 0, 0);
}
.article cite {
	text-align: center;
	display: block;
	font-style: normal;
	font-size: 20px;
	padding: 31px 30px;
}
.article cite:before,
.article cite:after {
	content: "";
	display: block;
	position: absolute;
	width: 120px;
	height: 2px;
	background-color: rgb(0, 0, 0);
	left: 50%;
}
.article > cite:before {
	transform: translate(-60px, -1.6em);
}
.article > cite:after {
	transform: translate(-60px, 1.6em);
}

/* Btn group select */
.btn-group-select {
	margin: -3px;
}
.btn-group-select > .btn {
	min-width: 32px;
	min-height: 32px;
	border: 0;
	margin: 3px;
}
.btn-group-select > .btn-custom {
	width: auto;
	background-color: #eee;
	border: 1px solid #eee;
	line-height: 30px;
	padding-left: 0;
}

.btn-group-select > .selected {
	box-shadow: 0 0 0 1px #fff, 0 0 0 3px #82878c;
}
.btn-group-select > .selected:focus,
.btn-group-select > .selected:active {
	border-color: #fff;
	outline: none;
}

/* Panels */
.panel-group-categories {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 5px 10px;
	margin-bottom: 0;
	max-height: 239px;
	overflow-y: auto;
	font-size: 13px;
}
.panel-group-categories .panel > .panel-collapse > .panel-body {
	padding-bottom: 5px;
	padding-left: 10px;
}
.panel-group-categories .panel > .collapsed:after {
	border-bottom: 4px solid transparent;
	border-top: 4px solid #32373c;
	margin-top: 4px;
}
.panel-group-categories .panel > a:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
	margin: -6px 0 0 5px;
	border-top: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 4px solid #32373c;
	border-right: 4px solid transparent;
}
.panel-group .panel+.panel {
	margin-top: 5px;
}
.panel-group-categories .panel > a {
	display: inline-block;
	margin-top: 1px;
	vertical-align: middle;
	text-decoration: none;
	color: #32373c;
}

/* Custom */
.utp-cards + .nav-pagination {
	margin-top: 0;
}

/* Modal */
.modal-login p {
	margin-bottom: 5px;
}
.modal-login .form-group {
	margin-bottom: 5px;
}
