/*Global*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
:root
{
	--brand: #172345;
	--brand1: #a0b0df;
	--brand2: #4363c4;
	--brand3: #2c3245;
	--brand4: #314991;
	--menubg: #3486a5;
	--menuitemhov: #246781;
	--menuheading: #000000;
	--userdropdownbg: #292960;
	
	--danger: #f45858;
	--dangerdark: #ca3a3a;
}
html, body{
	height:100%;
	font-family: Poppins;
}
.alert {
    padding: .75em;
    border-radius: 2px;
    margin-bottom: 15px;
}
.alert.alert-success {
    background: #70bc1c;
}
.alert.alert-danger {
    background: #bc1c32;
}
.alert.alert-info {
    background: #1c90bc;
}
.alert.alert-warning {
    background: #d8be3a;
}

/*Page Loader*/
div#pageloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(30 30 30 / 50%);
}
div#pageloader:not(.active){display:none;}
div#pageloader svg
{
	position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
}


/*Scroll*/
body:not(.ios) .nice_scroll::-webkit-scrollbar {
  width: 6px;
}
/* Track */
body:not(.ios) .nice_scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey; 
  border-radius: 10px;
}
/* Handle */
body:not(.ios) .nice_scroll::-webkit-scrollbar-thumb {
  background: var(--brand4); 
  border-radius: 10px;
}
/* Handle on hover */
body:not(.ios) .nice_scroll::-webkit-scrollbar-thumb:hover {
  background: var(--brand2); 
}


/*Forms*/
input.btn, button.btn, a.btn {
    text-transform: unset;
    font-size: 1.5rem;
	font-weight: 300;
    border-radius: 3px;
	transition:background .3s ease;
}
a.btn.btn-md, button.btn.btn-md {
    padding: 0px 20px;
}
.btn.btn-primary {
    background: var(--brand4);
    border-color: #1b40a9;
    color: white;
}
.btn.btn-primary:hover {
    background: var(--brand2);
    color: white;
    border-color: var(--brand2);
}
.btn.btn-secondary {
	background: var(--brand3);
    border-color: var(--brand3);
    color: white;
}
.btn.btn-secondary:hover{
	background: #23293e;
    border-color: #23293e;
}
.btn.btn-sm {
    font-size: 1.25rem;
    height: 30px;
    padding: 0 15px;
	line-height: 2.7rem;
}
.form-group {
    margin-bottom: 8px;
}
.input-group {
    margin-bottom: 8px;
}
.input-group.inline {
    display:inline-block;
}

/*Switches*/
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 22px;
	margin: 0;
}
.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
}
.switch .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
.switch input:checked + .slider {
	background-color: var(--brand4);
}
.switch input:checked + .slider:before {
	-webkit-transform: translateX(23px);
	-ms-transform: translateX(23px);
	transform: translateX(23px);
}
.border-box {
    float: left;
    width: calc(100% - 22px);
    padding: 12px;
    border: 1px solid var(--brand4);
    border-radius: 3px;
    margin-bottom: 10px;
}
.save_first_notice {
    padding: 1em;
    text-align: center;
    border: 2px dashed var(--brand4);
    border-radius: 5px;
    color: var(--brand4);
}
.save_first_notice h6 {
    margin: 0;
    font-size: 1.1em;
}




/*Menu*/
div#aside {
    width: 230px;
    height: 100%;
    background: var(--brand);
    position: fixed;
}
.aside_menu_wrapper {
    overflow-y: scroll;
    height: calc(100% - 96px);
	font-size: 1.45rem;
}
.aside_menu_wrapper::-webkit-scrollbar {
  width: 6px;
}
/* Track */
.aside_menu_wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
/* Handle */
.aside_menu_wrapper::-webkit-scrollbar-thumb {
  background: var(--brand4); 
  border-radius: 10px;
}
/* Handle on hover */
.aside_menu_wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--brand2); 
}
.aside_brand {
    padding: .5em 1em;
    background: var(--brand4);
    margin-bottom: 10px;
}
div#aside_menu ul.menu__nav {
    list-style: none;
    margin: 0;
}
div#aside_menu ul.menu__nav .menu__item {
    margin: 0;
	transition: background .3s ease;
}
div#aside_menu ul.menu__nav .menu__item:hover {
    background: var(--brand4);
}
div#aside_menu a.menu__link {
    text-decoration: none;
    color: white;
    padding: .4em 1em;
    display: block;
}
div#aside_menu ul.menu__nav .menu__item:hover a {
	font-weight:500;
}
li.menu__section {
    margin-top: 10px;
}
li.menu__section .menu__section-text {
    font-size: 1.1em;
    padding: .3em 1em;
	color:var(--brand1);
	margin: 0;
	position:relative;
}
li.menu__section .menu__section-text:after
{
	content:"";
	position:absolute;
	bottom:1px;
	width:65%;
	height:1px;
	background:var(--brand1);
	left:1em;
}
div#aside_menu .menu__link-text {
    margin-left: 3px;
	font-weight: 300;
}
div#aside_menu .menu__link-icon {
    width: 20px;
    text-align: center;
}

/*div#topbar {
    background: #e7e7e7;
}*/
div#topbar {
    background: var(--brand4);
    color: white;
	position: fixed;
    width: calc(100% - 230px);
	z-index: 100;
}
#topbar .subheader {
    padding: 4px 25px;
}
.subheader__title
{
	margin:0;
	line-height:45px;
}
.subheader__separator--v {
    border-right: 1px solid #fff;
    height: 30px;
    margin: 7px 10px;
}
.subheader__desc {
    line-height: 45px;
}

#topbar .user__profile {
    position: absolute;
    top: 0px;
    right: 15px;
    line-height: 52px;
	
}

/*#topbar .user__name:hover + .user__dropdown, .user__dropdown:hover {
    display: block!important;
}*/
#topbar .user__dropdown {
    width: 300px;
    background: #d2d2d2;
    position: absolute;
    right: 0px;
	display:none;
	z-index:999;
}
#topbar .user__dropdown.open{
	display:block;
}
.user__dropdown .kt-user-card {
    padding: 15px;
	background:var(--brand3);
}
.user__dropdown .user-card__name {
    display: inline-block;
    margin-left: 10px;
    line-height: 27px;
    vertical-align: top;
}
.user-card__avatar {
    display: inline-block;
}
#topbar .user__dropdown img.img{
    width:55px;
	vertical-align: top;
}
#topbar .responsive_menu_toggle
{
	display:none;
}
.user__dropdown .user__actions
{
	padding:15px;
	line-height: 20px;
}
/*.user__dropdown .user__actions a
{
	color:var(--brand3);
	text-decoration: none;
}*/
.badge__user {
    background: var(--brand);
    padding: 8px;
    color: white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 17px;
    margin-left: 3px;
}
.brandselector.form-group {
	color: var(--brand3);
	border-bottom: 1px solid black;
    padding-bottom: 8px;
}
.brandselector.form-group select {
    padding: 4px 8px;
    font-size: 13px;
    line-height: 14px;
    height: auto;
    border-radius: 4px;
}




div#content {
    height: 100%;
    width: calc(100% - 230px);
    padding-left: 230px;
}
#page__wrapper {
    padding: 35px 0;
    float: left;
    width: 100%;
	margin-top: 55px;
}
#page__content {
    padding: 0 100px;
    float: left;
    width: calc(100% - 200px);
}

.form__bar {
    padding: 10px 0;
}
a.back-link {
	vertical-align: middle;
	color: var(--brand2);
}
a.back-link i {
    margin-right: 10px;
    vertical-align: middle;
}
.form__bar button.save {
    float: right;
    vertical-align: middle;
}
.card {
    float: left;
    width: calc(100% - 60px);
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
	margin-bottom: 30px;
}
.entity__side
{
	margin-top:105px;
}
.entity__side .form-group > label
{
	display: inline-block;
    border-bottom: 1px solid var(--brand1);
}
.entity__info label span {
    float: right;
    font-weight: 300;
}



/*Checklist*/
.checklist__items {
    max-height: 200px;
    overflow-y: scroll;
}
.checklist__items .checklist__item input {
    margin-right: 6px;
    vertical-align: middle;
}
.checklist__items .checklist__item label {
    padding: 2px 8px;
    cursor: pointer;
	transition:background .3s ease;
	font-weight: 400;
}
.checklist__items .checklist__item label {
    margin: 0;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checklist__items .checklist__item label:hover
{
	background:#e0e0e0;
}

/*Category Assigner*/
.catassigner__wrapper .name
{
	display:inline-block;
	margin-left: 5px;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.catassigner__categories, .catassigner__items {
    max-height: 200px;
    overflow-y: scroll;
}
.category__item:last-child, 
.item__item:last-child
{
	border-bottom: 1px solid #dfdfdf;
}
.category__item, .item__item {
	border-top: 1px solid #dfdfdf;
	transition:background .3s ease;
}
.category__item:hover, .item__item:hover {
    background: #e0e0e0;
}
.assignment_toggle {
    width: 28px;
    background: var(--brand1);
    height: 28px;
    text-align: center;
    line-height: 28px;
    display: inline-block;
	transition: background .3s ease, color .3s ease;
}
.assignment_toggle:hover {
    cursor: pointer;
	background:var(--brand4);
	color:white;
}
.assignment_toggle input
{
	display:none;
}
.assignment_toggle.assigned {
    background: var(--danger);
    color: white;
}
.assignment_toggle i 
{
	transition: transform .1s ease;
}
.assignment_toggle.assigned i
{
	transform:rotate(45deg);
}


/*Consumes Grid*/
table.consumes__table input[type="number"], table.item__table input[type="number"] {
    width: 100px;
}
.consumes__table .remove, .item__table .remove {
    width: 28px;
    height: 28px;
    background: var(--danger);
    text-align: center;
    color: white;
    line-height: 28px;
    cursor: pointer;
	transition: background .3s ease, color .3s ease;
}
.consumes__table .remove i, .item__table .remove i
{
	transform:rotate(45deg);
}
.consumes__table .remove:hover, .item__table .remove:hover
{
	background:var(--dangerdark);
}
.consumesgrid__controls button.add__ingredient, .itemgrid__controls button.add__item
{
	display:inline-block;
	height: 38px;
    vertical-align: top;
	border-radius: 0;
}
.custom__select2.select2-container--default, 
.custom__select2.select2-container--default:focus,
.custom__select2.select2-container--default:active,
.custom__select2.select2-container--default:visited,
.custom__select2.select2-container--default.select2-container--focus{
    outline: none;
}
.custom__select2.select2-container--default .select2-selection--single
{
	border-radius:0;
	outline: none;
	height: 38px;
}
.custom__select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px!important;
}
.custom__select2.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}
.new_alternative span, .current_consumes_container .consume span {
    color: var(--brand4);
}
.current_consumes_container .consume .current_alternatives {
    margin-left: 30px;
}
.current_consumes_container .consume
{
	margin-bottom:10px;
}
.current_consumes_container .remove {
    display: inline-block;
    padding: 5px;
    background: #d6d6d6;
    line-height: 1em;
    width: 1em;
    height: 1em;
    text-align: center;
    margin-right: 5px;
	cursor:pointer;
	transition: background .3s ease, color .3s ease;
}
.current_consumes_container .remove:hover {
    background: var(--danger);
    color: white;
}

/*Render Errors*/
.form_element__render_error {
    text-align: center;
    font-size: 18px;
    padding: 15px;
    color: var(--danger);
    border: 2px dashed;
    margin: 15px 0px;
}
.form_element__render_error i {
    font-size: 36px;
}
.form_element__render_error h5 {
    font-size: inherit;
	margin:0;
}

/*Tables*/
table{
	width:100%;
}
table thead th {
    padding: 8px;
	font-weight: 600;
}
table tbody td {
    padding: 5px;
}


/*Views*/
.view__title {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.view__title h5 {
    float: left;
	margin:0;
}
.view__title .btn {
    float: right;
}
.view__search {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.view__search .search__view {
	margin-left: -1px;
    border-radius: 0;
    float: left;
    width: calc(100% - 126px);
}
.view__search .input__btn.input__btn-left {
    left: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	width: 85px;
}
.view__search .input__btn {
    float: left;
    padding: 0px 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	width: 42px;
}
.badge.status{
	font-size: 13px;
	padding: 2px 10px;
    border: 1px solid;
	display: inline-block;
    border-radius: 4px;
}
.badge.status.Draft {
    border-color: #1d6be4;
    color: #1d6be4;
}
.badge.status.Live {
    border-color: #0bab0b;
    color: #0bab0b;
}


/*Datatables*/
table.dataTable thead {
    background: #e5e5e5;
    color: var(--brand3);
}
.view__ajax table.dataTable.compact th {
    font-weight: 500;
	padding: 7px;
}
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 8px;
    line-height: 16px;
    font-size: 16px;
    background: #e1e1e1;
	border: none!important;
    outline: none!important;
}
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, 
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, 
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    background: #e1e1e1!important;
    opacity: .5;
    color: unset!important;
}
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.view__ajax .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover
{
    background: var(--brand4);
    background-color: var(--brand4);
    color: white!important;
}
.dataTables_wrapper .dataTables_length {
    width: 200px;
    display: block;
    float: left;
    clear: both;
}
.dataTables_wrapper .dataTables_length select{
	float:left;
}
table.dataTable tr.even {
    background: #ececec;
}
table.dataTable.stripe.hover tbody tr:hover {
    background: var(--brand1);
}


.buttonbar {
    margin-bottom: 15px;
}
.kt-subheader .kt-subheader__toolbar {
    display: none;
}
div#kt_content {
    padding-top: 15px;
}
div#kt_aside_menu, div#kt_aside {
    background-color: var(--menubg);
}
div#kt_aside_menu .kt-menu__nav > .kt-menu__item > .kt-menu__heading .kt-menu__link-text, 
div#kt_aside_menu .kt-menu__nav > .kt-menu__item > .kt-menu__link .kt-menu__link-text {
    color: white;
}
div#kt_aside_menu .kt-menu__nav > .kt-menu__item:not(.kt-menu__item--parent):not(.kt-menu__item--open):not(.kt-menu__item--here):not(.kt-menu__item--active):hover > .kt-menu__heading,
div#kt_aside_menu .kt-menu__nav > .kt-menu__item:not(.kt-menu__item--parent):not(.kt-menu__item--open):not(.kt-menu__item--here):not(.kt-menu__item--active):hover > .kt-menu__link {
    background-color: var(--menuitemhov);
}
.form-control.datepicker {
    width: 100%;
}

/*Tables*/
.tblcontrols {
    clear: both;
}
.tblcontrols .length, .tblcontrols .info {
    display: inline-block;
    float: left;
    height: 30px;
    line-height: 31px;
    margin-right: 10px;
}
.tblcontrols .info .dataTables_info
{
	padding: 0;
}
.tblcontrols .tblpaging
{
	display: inline-block;
    float: right;
}
.table thead
{
	background:white;
}
.dataTables_wrapper .dataTable tr{
	cursor:pointer;
}
.dataTables_wrapper .dataTable td {
    color: black;
}
.dataTables_wrapper .dataTable td a {
    font-weight: 500;
}



/*SubForms*/
.subform {
    position: fixed;
    width: 400px;
    height: 100%;
    right: -410px;
    top: 60px;
    background: #f4f4f4;
    border: 1px solid #d6d6d6;
    box-shadow: 2px 0px 15px 0px #a0a0a0;
    transition: right .5s ease;
}
.subform.open{right:0;}
.subform .subform__header, .subform .subform__body, .subform .subform__footer {
    padding: 15px;
	position:relative;
	float: left;
    width: calc(100% - 30px);
}
.subform .subform__header {
    border-bottom: 1px solid #d8d8d8;
}
.subform .subform__footer
{
	border-top: 1px solid #d8d8d8;
}
.subform .subform__header h5
{
	margin:0;
}
.subform .subform__header .close {
    position: absolute;
    top: 20px;
    right: 15px;
    background: #d8d8d8;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
}
.subform .switch{
	margin:8px 0;
}
.subform .subform__footer {
    position: absolute;
    bottom: 60px;
}





/*Global Selec2*/
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-bottom: 0px;
    background: #2c3245!important;
    color: white;
}


















/*Overrides*/
body .kt-aside-menu .kt-menu__nav > .kt-menu__item > .kt-menu__heading .kt-menu__link-icon,body .kt-aside-menu .kt-menu__nav > .kt-menu__item > .kt-menu__link .kt-menu__link-icon {
    color: #fff;
}
div#kt_aside_menu .kt-menu__nav > .kt-menu__item:not(.kt-menu__item--parent):not(.kt-menu__item--open):not(.kt-menu__item--here):not(.kt-menu__item--active):hover > .kt-menu__heading .kt-menu__link-icon,
div#kt_aside_menu .kt-menu__nav > .kt-menu__item:not(.kt-menu__item--parent):not(.kt-menu__item--open):not(.kt-menu__item--here):not(.kt-menu__item--active):hover > .kt-menu__link .kt-menu__link-icon
{
	color:#fff;
}
body .kt-aside-menu .kt-menu__nav > .kt-menu__section .kt-menu__section-text {
    color: var(--menuheading);
}

.c2pajaxloader {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 15px double rgb(222,222,222);
    border-top-color: #5578eb;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    margin: 0px auto;
    margin-bottom: 20px;
    margin-top: 20px;
}
@keyframes spin { 
  100% { 
    transform: rotate(360deg); 
  } 
} 














/*Ticket Details*/

/*Chat Form*/
.chat-form form#chatform .m-type {
    width: 50px;
    height: 50px;
    vertical-align: top;
    background: #c3eadf;
    border-radius: 3px;
    /* padding: 10px; */
    margin-right: 6px;
    display: inline-block;
    color: white;
    text-align: center;
    line-height: 51px;
    font-size: 25px;
    text-transform: uppercase;
    color: #0abb87;
    font-weight: 600;
}
.box__dropprompt, .box__uploading{
	display:none;
}
#chatform.is-dragover .box__dropprompt{
	display:block;
}
.box__dropprompt {
	position: absolute;
	pointer-events:none;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	top: 5px;
	left: 5px;
	background: #5578eb52;
	text-align: center;
	font-size: 22px;
	border-radius: 4px;
	border: 4px dashed #5578eba3;
}
.box__dropprompt h3 {
	font-weight: normal;
	position: absolute;
	top: calc(50% - 16px);
	width: 100%;
	text-align: center;
	color: white;
}
span.file-label {
    background: var(--info);
    color: white;
    border-radius: 6px;
    padding: 2px 3px;
    font-size: 12px;
    margin: 2px 2px;
    display: inline-block;
}
.file_upload_loader
{
	position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    background: rgba(225, 227, 236, 0.75);
    height: 100%;
    border-radius: 4px;
}
.upload_progress_bar {
    margin: auto;
    width: 300px;
    height: 20px;
    border-radius: 20px;
    background: white;
    margin-bottom: 15px;
    overflow: hidden;
    margin-top: 50px;
}
.upload_progress_bar .bar {
    background: var(--success);
    width: 0%;
    height: 100%;
    border-radius: 20px;
    transition: width .2s linear;
    color: white;
}

/*
/*Attachments
ul.current-uploads {
    width: 100%;
    list-style: none;
    padding: 0;
    float: left;
    margin-bottom: 3px!Important;
}
ul.current-uploads li {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}
ul.current-uploads li .left {
    display: inline-block;
    float: left;
}
ul.current-uploads li .left .name {
    font-size: 14px;
    margin-top: 6px;
}
ul.current-uploads li .right {
    float: right;
    display: inline-block;
}
.search-bar {
    padding-bottom: 8px;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 8px;
}
.paging {
    width: 100%;
    float: left;
    /*margin-bottom: 15px;
    border-top: 1px solid #c9c9c9;
    padding-top: 8px;
}
.paging .paging-controls {
    display: inline-block;
    margin-left: 10px;
    float: right;
}
.paging .paging-controls a {
    margin: 0px 5px;
    cursor: pointer;
}
.paging .paging-controls a:hover {
    color: var(--info);
}
.paging .paging-controls a i {
    vertical-align: middle;
}
.attachmentsbox:not(.searching) div.page:not(.active) {
    display: none;
}
.attachmentsbox.searching li:not(.matchesSearch) {
    display: none;
}
.attachmentsbox.searching .paging {
    display: none;
}
.attachmentsbox .no_results:not(.on) {
    display: none;
}
.attachmentsbox .no_results {
    text-align: center;
    padding: 5px;
    margin: 0;
    border-radius: 5px;
    color: #707070;
    border: 1px solid #ececec;
    font-size: 15px;
    background: #e1e3ec;
}

/*Chat
ul.chats {
    list-style: none;
    padding: 5px;
    transition: opacity .7s ease;
}
ul.chats li {
    margin-bottom: 10px;
	max-width: 90%;
}
ul.chats li.out {
    margin-left: 10%;
}
ul.chats li.event {
    color: #737ca0;
    padding: 10px;
	max-width: 100%;
}
ul.chats li.event i {
    border: 1px solid var(--purple);
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--purple);
    margin-right: 8px;
}
ul.chats li .side {
    display: inline-block;
    vertical-align: top;
    max-width: 60px;
    line-height: 40px;
	margin-right: 10px;
    margin-top: 0px;
}
ul.chats li.out .side {
    margin-left: 10px;
    margin-right: unset;
}
ul.chats .content {
    display: inline-block;
    width: calc(100% - 50px);
}
ul.chats li a {
    color: white;
    font-weight: 500;
}
ul.chats li.in .m-type {
    /*margin-right: 10px;
}
ul.chats li .m-type {
    width: 38px;
    height: 38px;
    vertical-align: inherit;
    background: #c3eadf;
    border-radius: 3px;
    /* padding: 10px; 
    margin-top: 0px;
    display: inline-block;
    color: white;
    text-align: center;
    line-height: 38px;
    font-size: 20px;
    text-transform: uppercase;
    color: #0abb87;
    font-weight: 600;
}
.m-type>span {
    /*line-height: 0;
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
	color: #24356d;
	vertical-align: middle;
}
ul.chats li .side .add_task {
    line-height: 30px;
    /* margin-right: 10px; 
    /* margin-top: 5px; 
    text-align: center;
}
ul.chats li .side .add_task button {
    padding: 0px;
    text-align: center;
    /* font-size: 10px; 
    line-height: 20px;
}
ul.chats li .side .add_task button i
{
	margin-left:4px;
}
ul.chats li .message {
    color: white;
    width: 100%;
    display: inline-block;
    padding: 0px;
    border-radius: 6px;
	background: var(--info);
    -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.48);
    box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.48);
}

ul.chats li.in .message {
    background: #4dbf7e;
}
ul.chats li.in .meta {
    /*text-align: right;
}

ul.chats li .meta {
    /* padding-bottom: 5px; 
    /* border-bottom: 1px solid white; 
    /* margin-bottom: 5px; 
    /* padding-left: 50px; 
    float: left;
    padding: 5px 10px;
    width: 100%;
    border-bottom: 1px solid #4e6dd3;
}
ul.chats li.in .meta {
    border-color: #41ae70;
}
ul.chats li.out .meta {
    text-align: right;
    /*padding-right: 60px;
    //padding-left: unset;
}
ul.chats li .datetime {
	color: #fff;
    line-height: 14px;
    font-size: 13px;
    vertical-align: bottom;
    display: inline-block;
	margin-right:10px;
}
ul.chats li.in .datetime {
    float: right;
    margin-right: 0;
}
ul.chats li.out .datetime {
    float: left;
}
ul.chats li.out .meta:not(.agt) .datetime {
    margin-right: 0;
}
ul.chats li div.name {
    color: #fff;
    line-height: 14px;
    font-size: 13px;
    vertical-align: bottom;
    display: inline-block;
	margin-right: 10px;
	float: right;
}
ul.chats li.in div.name {
    float: left;
}
ul.chats li.out div.name {
    margin-right: 0;
}
span.agentbadge.utbadge {
    margin-right: 10px;
    background: #ffffff;
    color: #000000;
    padding: 0px 4px;
    border-radius: 3px;
    font-size: 10px;
    line-height: 13px;
    vertical-align: text-bottom;
	float: right;
}
ul.chats li.in .agentbadge {
    float: left;
}

ul.chats .body {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    line-height: 18px;
	float: left;
    width: 100%;
}
ul.chats li.in .body {
    text-align: right;
}

ul.chats li.in .attachments {
    text-align: right;
}
ul.chats li .attachments {
    padding: 5px 0px;
}
ul.chats li .attachments ul {
    list-style: none;
    padding: 0;
}
ul.chats li .attachments li {
    /* background: #5578eb; 
    padding: 2px 4px;
    display: inline-block;
    margin: 2px 2px;
    /* box-shadow: 0px 0px 4px 3px #cecece; 
    /* color: white; 
    cursor: pointer;
}
ul.chats li .attachments li a:hover {
    color: var(--info);
}


.ticket_closed .t_closed {
    position: absolute;
    background: #d0d0d094;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 4px;
    z-index: 1;
    text-align: center;
    color: #5578eb;
	cursor: not-allowed;
}
.ticket_closed .kt-portlet
{
	position:relative;
}*/

input.datetimepicker {
    width: 100%;
}


/*Mobile*/
@media screen and (max-width: 790px)
{
	/*Mobile Menus*/
	div#aside {
		position: absolute;
		left: -230px;
		transition: left .5s ease;
		z-index: 999;
		top: 52px;
	}
	div#aside.open {
		left: 0px;
	}
	div#content {
		width: 100%;
		padding: 0;
	}
	div#topbar {
		width: 100%;
		position: static;
	}
	#topbar .subheader {
		padding: 4px 5px;
	}
	#topbar .hidden-mobile {
		display: none;
	}
	#topbar .subheader__desc {
		line-height: 36px;
	}
	#topbar .user__profile {
		right: 10px;
	}
	#topbar .responsive_menu_toggle {
		display:inline-block;
		line-height: 36px;
		margin-right: 15px;
		margin-left: 5px;
	}
	#page__wrapper {
		margin-top: 0;
		padding: 15px 0;
	}
	#page__content {
		padding: 0 15px;
		width: calc(100% - 30px);
	}
	
	/*Buttons*/
	input.btn, button.btn, a.btn
	{
		-webkit-appearance: none;
	}
	a.btn.btn-md, button.btn.btn-md {
		padding: 0px 12px;
		font-size: 1.3rem;
		height: 32px;
		line-height: 32px;
	}
	
	/*Views*/
	.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_paginate {
		width: 100%;
		display: block;
		clear: both;
		margin: auto;
	}
	.dataTables_wrapper .dataTables_length select {
		width: 100px;
		display: inline-block;
		float: none;
		margin: auto 5px;
	}
	.dataTables_wrapper .dataTables_info {
		margin-bottom: 5px;
	}
	
	
	/*Edit Entity*/
	.entity__side {
		margin: 0;
	}
	.table__responsive
	{
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.catassigner__wrapper h6 {
		margin-bottom: 5px;
		margin-top: 10px;
	}
	table.consumes__table td, table.consumes__table th {
		font-size: 13px;
	}
	table.consumes__table input[type="number"] {
		width: 55px;
	}
	
	/*Subform*/
	.subform {
		width: 100%;
		top: 0;
		box-shadow: none;
		border: none;
	}

	/*.kt-subheader--transparent .kt-subheader .kt-subheader__main .kt-subheader__separator
	{
		height:30px;
	}
	.kt-subheader .kt-subheader__main .kt-subheader__desc
	{
		line-height: 32px;
	}
	div#kt_header_mobile {
		background: #1e1e2d;
	}
	.kt-header-mobile__logo img {
		width: 125px;
	}
	.kt-header-mobile--fixed .kt-header__topbar 
	{
		width: 38px;
		right: 10px;
		background: transparent;
		top: 50px;
		z-index: 2523123123;
		left: unset;
		padding: 0;
	}
	button#kt_header_mobile_topbar_toggler {
		opacity: 0;
		pointer-events: none;
	}*/
}