/*
 *-----------------------------------------------------------------------------------
 * === CSS DESIGN ===
 *-----------------------------------------------------------------------------------
 * author SOLUTII SOFT
 */

/* === HTML ELEMENTS === */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
select {
  outline: none !important;
  border-radius: 0 !important;
}

body {
  background: #f7f7f7;
  /* background-image: url(../img/bg.png); */
  color: #222;
  /* font-family: Arial; */
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 40px;
  padding-top: 85px;
  text-rendering: optimizelegibility;
}

a:link,
a:focus,
a:visited,
a:active,
a:hover {
  text-decoration: none;
}
a img {
  border: medium none;
}

h1,
h2,
h3,
h4 {
  /*font-family: Arial;*/
  font-family: "Roboto", sans-serif;
  /*font-weight: 300;		*/
}
h1 {
  /*margin-top: 0px;*/
  text-shadow: 1px 1px 0 #ffffff;
}

small {
  color: #000000 !important;
}

label {
  font-size: 14px;
  font-weight: 500;
}

ul {
  list-style: none;
}

p {
  font-size: 14px;
}

strong {
  font-weight: 600;
}

textarea {
  resize: none;
}

i {
  margin-left: 5px;
  margin-right: 5px;
}

hr {
  border-color: #999999;
}

main {
  unicode-bidi: isolate;
  display: block;
  margin-bottom: 20px;
}
/* === END HTML ELEMENTS === */

/* === LOGIN FORM === */
@media (min-width: 599px) {
  .login > header {
    padding: 20px 0;
    position: relative;
    text-align: center;
  }
  .login .authForm {
    background: none repeat scroll 0 0 white;
    border: 1px solid #9e9e9e;
    border-radius: 3px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    width: 530px;
  }
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #9e9e9e;
  border-radius: 3px;
  box-shadow: none;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* === END LOGIN FORM === */

/* === NAVBAR === */
.navbar-default {
  background-color: #ffffff;
  z-index: 100;
  /* background-image: url(../img/bg.png); */
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 0 1px #ffffff inset;
}
.navbar-default ul.nav li.dropdown:hover > ul.dropdown-menu {
  display: block;
}
.navbar-default .brand {
  float: left;
  width: 350px;
  text-shadow: 1px 1px 0 #ffffff;
  padding: 5px;
}
.navbar-default .toogleicon {
  float: left;
  width: 70px;
  text-shadow: 1px 1px 0 #ffffff;
  padding: 5px;
}
.navbar-default .navbar-brand span {
  background: #138da2;
  text-shadow: none;
  color: #eeeeee;
  padding: 6px 10px;
  margin-left: -4px;
}
.navbar-default .toogle {
  cursor: pointer;
  font-size: 16px;
  /*height: 50px;
		line-height: 20px;
		padding: 15px;*/
}
.navbar-default a {
  color: #000;
}
.navbar-default i {
  color: #2c3e50;
}
.navbar-default .badge {
  background: #d7289e;
  color: #ffffff;
  font-size: 10px;
  padding: 4px 8px;
}
.navbar-default .navbar-text {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  /* margin: 0px; */
  padding: 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 340px) {
  .navbar-default .brand {
    width: 250px !important;
  }
  .navbar-default .toogleicon {
    width: 50px !important;
  }
}
/* === END NAVBAR === */

/* === SIDEBAR === */
.body {
  position: relative;
  margin: 0;
  padding: 0;
  transition: margin-left 0.5s;
  -o-transition: margin-left 0.5s;
  -moz-transition: margin-left 0.5s;
  -webkit-transition: margin-left 0.5s;
}
.body.slide {
  /* margin-left: 280px; */
}
.sidebar {
  background-color: #fff;
  /*background-image: url('../img/bg.png');*/
  border-right: 1px solid #d7d7d7;
  width: 280px;
  height: 100%;
  position: fixed;
  left: -300px;
  right: auto;
  top: 84px;
  z-index: 1;
  transition: left 0.5s;
  -o-transition: left 0.5s;
  -moz-transition: left 0.5s;
  -webkit-transition: left 0.5s;
  padding: 10px;
  overflow-y: hidden;
}
.sidebar.show {
  left: 0;
  display: block;
}
.ps-scrollbar-y-rail {
  margin: 5px 0;
}

@media only screen and (max-width: 490px) {
  .body.slide {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 620px) and (max-width: 900px) {
  .sidebar {
    top: 100px;
  }
}
/* === END SIDEBAR === */

/* === SIDEBAR NAV === */
.list-group-item {
  background-color: #ffffff;
  /*background-image: url('../img/bg.png');	*/
}
#solso-sidebar {
  margin-bottom: 60px;
}
#solso-sidebar .list-group-item {
  border-bottom: 1px solid #efefef;

  padding-left: 10px;
  border-left: none;
  border-right: none;
  padding-right: 10px;
}
#solso-sidebar .list-group-item:hover {
  padding-left: 2px;
  transition-delay: 0s;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: linear;
}
#solso-sidebar .list-group-item.active,
#solso-sidebar .list-group-item.active:hover,
#solso-sidebar .list-group-item.active:focus {
  background-color: #138da2 !important;
  border-color: #138da2;
  box-shadow: none;
}
#solso-sidebar .list-group-item-heading {
  width: 140px;
  margin-bottom: 0px;
  margin-top: 10px;
}
#solso-sidebar .list-group-item-text {
  text-transform: lowercase;
}
#solso-sidebar .list-group-item-text a {
  display: inline;
}
#solso-sidebar .list-group-item-heading,
#solso-sidebar .list-group-item-text {
  padding-left: 10px;
}
#solso-sidebar .input-group .input-group-addon:last-child {
  text-align: right;
}
#solso-sidebar .input-group-addon {
  background: none;
  border: none;
  color: #343d46;
  font-size: 22px;
  padding: 0;
  width: 60px;
}
#solso-sidebar .active .input-group-addon {
  color: #ffffff;
}
#solso-sidebar .list-group-item.active .list-group-item-text,
#solso-sidebar .list-group-item.active:focus .list-group-item-text,
#solso-sidebar .list-group-item.active:hover .list-group-item-text {
  color: #ffffff;
}
/* === END SIDEBAR NAV === */

/* === PANELS === */
.panel .panel-heading {
  background: none repeat scroll 0 0 #f5f7fb;
  background-image: url("../img/bg.png");
  color: #000000;
}
/* === END PANELS === */

/* === PANELS LIST GROUP === */
.panel .list-group .list-group-item {
  background: none repeat scroll 0 0 #fff;
}
/* === END PANELS LIST GROUP === */

/* === NAV TABS === */
.nav {
  border: 0;
}
.nav-tabs > li > a {
  background-color: #f7f7f7;
  color: #222222;
  font-weight: 600;
  transition: 0.3s all;
  border-bottom: 3px solid #dadada;
  /* border: none; */
  /* box-shadow: 0 0 0 1px #FFFFFF inset; */
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  background-color: #138da2;
  border-bottom: 3px solid #138da2;
  color: #ffffff;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:visited,
.nav-tabs > li.active > a:focus {
  background: #ffffff;
  background-color: #f7f7f7;
  color: #338ca1;
  border: none;
  border-bottom: 3px solid #338ca1;
}
/* === END NAV TABS === */

/* === PAGINATION === */
.pagination > li > a,
.pagination > li > span {
  color: #343d46;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #343d46;
  color: #ffffff;
}
/* === END PAGINATION === */

/* === MODALS === */

.modal-backdrop {
  background-color: #fff;
}

.modal-header {
  border-bottom: 1px solid #e5e5e5;
  /*background-color: #3498DB;
		background-color: #2A8450;*/
  background-color: #138da2;
  color: #ffffff;
  min-height: 16.43px;
  padding: 15px;
}
.modal-body {
  background: #efefef;
  /*background-image: url('../img/bg.png');	*/
  max-height: 600px;
  overflow: auto;
}
/* .modal-footer{
		display:none;
	} */
/* === END MODALS === */

/* === ALERTS === */
.alert .close {
  z-index: 9999999;
}
.alert-success {
  background: #2d8844;
  border: 1px solid #2d8844;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.42857;
  padding: 15px 10px;
}
/* === END ALERTS === */

/* === BUTTONS === */
.btn-default.active {
  background-color: darkslateblue;
  background-color: teal;
  border-color: #fff;
  color: #fff;
}
/* === END BUTTONS === */

/* === TABLE === */
.table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  font-size: 14px;
}
.table caption {
  font-size: 20px;
  /*font-weight: 300;*/
  margin-bottom: 10px;
  text-align: left;
  color: #000;
}
.table th {
  background: #138da2;
  border-bottom: 1px solid #dddddd;
  color: #ffffff;
  font-size: 14px;
  line-height: 28px !important;
  /*font-weight: 400;
		text-transform: uppercase; */
  padding: 7px 7px !important;
}
.table th:first-child {
  width: 20px;
}
.table td {
  vertical-align: middle !important;
}

#ajaxTable {
  padding-bottom: 40px;
}

.removePaddingTable {
  margin-top: -250px;
}

@media (min-width: 1400px) {
  .table-responsive {
    overflow: hidden;
  }
  .dataTables_filter {
    float: right;
  }
}

/* === END TABLE === */

/* === LABELS === */
.label {
  display: block;
}

.label-green {
  background-color: #caefda;
  color: #27ae60;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  min-width: 64px;
  border-radius: 4px !important;
  text-align: center;
}
.label-orange {
  background-color: #f5ebc5;
  color: #8d6f00;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  min-width: 64px;
  border-radius: 4px !important;
  text-align: center;
}
.label-blue {
  background-color: #2e8ece;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  min-width: 64px;
  border-radius: 4px !important;
  text-align: center;
}
.label-grey {
  background-color: #7b7d7f;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  min-width: 64px;
  border-radius: 4px !important;
  text-align: center;
}
.label-red {
  background-color: #fff;
  color: #138da2;
  padding: 4px 10px;

  border-radius: 51px !important;
  font-size: 13px;
  font-weight: 500;
}
.label-purple {
  background-color: #8e44ad;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 400;
}
.label-owner {
  /*background-color: teal;*/
  color: #000000;
  /* padding: 4px 10px; */
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.label-client {
  color: #000000;
  /* padding: 4px 10px; */
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
/* === END LABELS === */

/* === VALIDATION === */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.parsley-errors-list {
  padding: 0;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in-;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.parsley-errors-list li,
.parsley-required,
.parsley-type,
.error {
  background: #dc002e; /* aici se schimba ptr culoare*/
  border: 1px solid #dc002e; /* aici se schimba ptr culoare*/
  box-shadow: 0 0 0 1px #ffffff inset;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42857;
  margin-top: 10px;
  padding: 5px 10px;
}
.parsley-errors-list.filled {
  opacity: 1;
}
.success {
  background: #2d8844;
  border: 1px solid #2d8844;
  box-shadow: 0 0 0 1px #ffffff inset;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42857;
  margin-top: 10px;
  padding: 15px 10px;
}
.required {
  /* border-left: 2px solid #DC002E; */
}
/* === END VALIDATION === */

/* === TIMEPICKER === */
.bootstrap-timepicker-widget table td input {
  border: 0;
}
.bootstrap-timepicker-widget table td i {
  font-size: 12px !important;
}
/* === END TIMEPICKER === */

/* === DATEPICKER === */
.datepicker {
  z-index: 9999;
}
/* === END DATEICKER === */

/* === FILE INPUT === */
.file-caption-disabled,
.file-preview {
  background: #ffffff;
}
.file-error-message {
  background: #dc002e; /* aici se schimba ptr culoare*/
  border: 1px solid #dc002e; /* aici se schimba ptr culoare*/
  box-shadow: 0 0 0 1px #ffffff inset;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42857;
  margin-top: 10px;
  padding: 5px 10px;
}
/* === END FILE INPUT === */

/* === SELECT 2 === */
.form-control .select2-choice {
  border: 0;
  border-radius: 2px;
  display: block;
  font-size: 14px;
  height: 34px;
  line-height: 1.42857;
  padding: 6px 12px;
}
/* === END SELECT 2 === */

/* === SOLUTII SOFT === */
/* === HELPER CLASSES === */
.top10 {
  margin-top: 10px;
}
.top20 {
  margin-top: 20px;
}
.top40 {
  margin-top: 40px;
}
.top80 {
  margin-top: 80px;
}
.bottom20 {
  margin-bottom: 20px;
}
.bottom40 {
  margin-bottom: 40px;
}
.noMargin {
  margin: 0;
}
.noPadding {
  padding: 0;
}
.noTop {
  margin-top: 0;
}
.w320 {
  width: 320px !important;
}
.text-right {
  text-align: right !important;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
/* === END HELPER CLASSES === */

.large {
  width: 200px;
}
.small {
  width: 131px !important;
}
.xs-small {
  width: 50px !important;
}
.text-shadow {
  text-shadow: 1px 1px 0 #ffffff;
}

@media only screen and (min-width: 620px) and (max-width: 900px) {
  .solso-content {
    padding-top: 70px;
  }
}

/* === BUTTONS === */
.solso-pdf {
  background: #138da2;
  border-color: #138da2;
  color: #ffffff;
  border-radius: 4px !important;
}
.solso-pdf:hover,
.solso-pdf:focus,
.solso-pdf.active {
  background: #9b59b6;
  border-color: #9b59b6;
  color: #ffffff;
}

.solso-excel {
  background: #207245;
  color: #ffffff;
  border-color: #207245;
}
.solso-excel:hover,
.solso-excel:focus,
.solso-excel.active {
  background: #1e5037;
  color: #ffffff;
  border-color: #1e5037;
}

.solso-email {
  background: #138da2;
  border-color: #138da2;
  color: #ffffff;
}
.solso-email:hover,
.solso-email:focus,
.solso-email.active {
  background: #34495e;
  border-color: #34495e;
  color: #ffffff;
}

.solso-cron {
  background: #f77a52;
  border-color: #f77a52;
  color: #ffffff;
}
.solso-cron:hover,
.solso-cron:focus,
.solso-cron.active {
  background: #ff733b;
  border-color: #ff733b;
  color: #ffffff;
}

/* === END BUTTONS === */

/* === WIDGETS === */
.widget {
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #fff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 6px !important;
}
.widget.widget-stats {
  position: relative;
}
.widget-stats .stats-info h4 {
  color: #fff;
  font-size: 12px;
  margin: 5px 0;
}

.widget-stats .stats-icon {
  color: #138da2;
  font-size: 42px;
  height: 56px;
  line-height: 56px;
  margin-left: 15px;
  opacity: 0.4;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 15px;
  width: 56px;
}
.widget-stats .stats-info p {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0;
}
.widget hr {
  border-top: 1px solid #ffffff;
}
.widget-stats .stats-link a {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  color: #ddd;
  display: block;
  font-weight: 300;
  margin: 15px -15px -15px;
  padding: 7px 15px;
  text-align: right;
  text-decoration: none;
}
.widget-stats .stats-link a:focus,
.widget-stats .stats-link a:hover {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
  color: #fff;
}
.widget-stats .stats-icon.stats-icon-lg {
  font-size: 40px;
  right: 16px;
  top: 12px;
}
.widget-stats .stats-title {
  font-size: 16px;
  line-height: 1.1;
  margin: 2px 0 7px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}
.widget-stats .stats-desc,
.widget-stats .stats-title {
  color: #000;
}
.widget-stats .stats-desc {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 14px;
}
.widget-stats .stats-number {
  color: #338ca1;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.widget-stats .stats-progress {
  background: none repeat scroll 0 0 #ffffff;
  height: 2px;
  margin: 0 -15px 12px;
}
.widget-stats .stats-progress .progress-bar {
  background: none repeat scroll 0 0 #ffffff;
}

.small-widget {
  background: none repeat scroll 0 0 #ffffff;
}

.bg-green {
  background: none repeat scroll 0 0 #2abb9b;
}
.bg-blue {
  background: none repeat scroll 0 0 #4183d7;
}
.bg-purple {
  background: none repeat scroll 0 0 #8e44ad;
}
.bg-grey {
  background: none repeat scroll 0 0 #2c3e50;
}
.bg-red {
  background: none repeat scroll 0 0 #e51937;
}
.bg-orange {
  background: none repeat scroll 0 0 #ec5e00;
}
/* === END WIDGETS === */

/* === PIE CHART === */
.solso-pie-chart {
  color: #777777;
  padding-top: 10px;
  text-align: center;
  height: 180px;
  text-transform: uppercase;
}
.solso-pie-chart h4 {
  margin-top: 20px;
}
.solso-pie-chart p {
  padding-left: 15px;
  text-align: left;
}
.solso-pie-chart .chart {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  text-align: center;
}
.solso-pie-chart .chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.solso-pie-chart .percent {
  display: inline-block;
  line-height: 110px;
  z-index: 2;
}
.solso-pie-chart .percent:after {
  content: "%";
  margin-left: 0.1em;
  font-size: 0.8em;
}
.chart-invoice-paid {
  border-bottom: 2px solid #27ae60;
}
.chart-invoice-unpaid {
  border-bottom: 2px solid #ec5e00;
}
.chart-invoice-partial-paid {
  border-bottom: 2px solid #2e8ece;
}
.chart-invoice-overdue {
  border-bottom: 2px solid #c0392b;
}
.chart-invoice-canceled {
  border-bottom: 2px solid #7b7d7f;
}
.chart-invoice-pending {
  border-bottom: 2px solid #8e44ad;
}
/* === END PIE CHART === */
/* === END SOLUTII SOFT === */

pre {
  margin-top: 100px;
  margin-left: 320px;
  margin-right: 20px;
}

.login {
  margin-top: 20px;
}
.logout_btn {
  padding-right: 32px !important;
}
.img_responsive {
  width: 100%;
}
.table > tbody > tr > td.noborder {
  border-top: none !important;
}
#iconborder {
  border: 2px solid #a1a1a1;
  padding: 4px 4px;
  background: #dddddd;
  -webkit-border-radius: 10px; /** newer webkit browsers **/
  -khtml-border-radius: 10px; /** older webkit browsers **/
  -moz-border-radius: 10px; /** older gecko browsers **/
  -o-border-radius: 10px; /** older opera browsers **/
  border-radius: 10px; /** all modern browsers, including IE9+, but see below **/
  margin-top: 15px;
}
.tickettitle_wordbreak {
  word-break: break-all;
}

.btn-primary,
.pagination > .active > a {
  color: #fff;
  background-color: #138da2;
  border-color: #138da2;
  border-radius: 4px !important;
}

h3.title {
  color: #138da2;
  margin-top: 10px;
}

.alert-info {
  color: #000;
  background-color: #f7e0df;
  border-color: #e8bdbe;
  border-radius: 4px !important;
}

.btn-success {
  color: #fff;
  background-color: #138da2;
  border-color: #138da2;
  border-radius: 4px !important;
}
.btn-success:hover {
  color: #fff;
  background-color: #037387 !important;
  border-color: #037387 !important;
}
.form-control {
  border-radius: 4px !important;
}
.flex-end {
  display: flex;
  justify-content: end;
}
.default-color {
  color: #138da2 !important;
}
.title-default {
  font-size: 22px !important;
  font-weight: 600;
}
.font-size-24 {
  font-size: 24px !important;
}
/* Custom CSS for right alignment */
.dataTables_wrapper .dataTables_filter {
  text-align: right;
}
.dataTables_wrapper .dataTables_filter input {
  display: inline-block;
  width: auto;
}
.high-priority {
  color: rgb(178 34 37);
}
.btn-primary:hover {
  color: #fff;
  background-color: #037387 !important;
  border-color: #037387;
}

.padding-card {
  padding: 17px 8px;
  border: 1px solid #ccd1d9;
  background: #fff;
  margin-bottom: 21px;
  display: grid;
  border-radius: 9px !important;
}
.pt-20 {
  padding-top: 20px;
}
.div-ticket-details {
  margin-bottom: 15px;
  padding-left: 20px;
}
.ticket--label {
  font-size: 14px;
  margin-bottom: 5px;
  padding: 5px 10px;
  text-transform: capitalize;
  font-weight: 600;
  background: #e4f4f7;
  border: 1px solid #c3e0e5;
  border-radius: 4px !important;
}
.no-bg {
  background: none !important;
  background-color: none !important;
}
.rotate-45 {
  rotate: 136deg;
  font-size: 18px;
}
.font-size-18 {
  font-size: 18px;
}
.width-50 {
  width: 50%;
  max-width: 50%;
}
.ticket-title-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
  color: #0c7385;
}
.ticket-disc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.table > tbody > tr > td.noborder {
  vertical-align: top !important;
}
.notification-for-file {
  font-size: 12px !important;
  font-weight: 400;
}
.mt-20 {
  margin-top: 19px;
}
.cke_1 .cke_top {
  background: #f5f7fb !important;
  background-color: #f5f7fb !important;
  border-bottom-color: #c7c7c7 !important;
}
.cke_1.cke_chrome {
  border-color: #c7c7c7 !important;
}
.cke_1 .cke_toolgroup {
  background-image: linear-gradient(
    rgb(255, 255, 255),
    rgb(224, 233, 251)
  ) !important;
  border-color: rgb(203 203 203) !important;
}
.cke_1 .cke_bottom {
  background-image: linear-gradient(
    rgb(244, 247, 253),
    rgb(231 231 231)
  ) !important;
  border-top-color: rgb(143 143 143) !important;
}

/* menu styles */

.nav-menu {
  background: #138da2;
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 45px;
  line-height: 45px;
}

.nav-menu .wrapper {
  position: relative;
  padding: 0 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 27px;
  font-weight: 600;
}

.wrapper .nav-menu-list {
  display: inline-flex;
}

.nav-menu-list li {
  list-style: none;
}

.nav-menu-list li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-menu-list li a:hover {
  background: #177383;
}

.nav-menu-list .drop-menu {
  background: #177383;
  width: 180px;
  top: 53px;
  line-height: 45px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.nav-menu-list li:hover .drop-menu,
.nav-menu-list li:hover .mega-box {
  top: 53px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  top: 85px;
  width: 100%;
  left: 0;
  padding: 0 30px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-link {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.content .row:nth-child(1),
.content .row:nth-child(2) {
  border-left: 0px;
}

.row .mega-link li {
  padding: 0 20px;
}

.row .mega-link li a {
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-link li a:hover {
  color: #f2f2f2;
}

.nav-menu-list .mobile-item {
  display: none;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.cancel-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}
.wrapper input {
  display: none;
}

/*-------------------------
 responsive using media query
--------------------------*/
@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-menu-list {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    background: #242526;
    display: block;
    top: 0;
    left: -100%;
    overflow-y: auto;
    line-height: 50px;
    padding: 50px 10px;
    z-index: 999;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  #menu-btn:checked ~ .nav-menu-list {
    left: 0%;
  }

  #menu-btn:checked ~ .btn #menu-btn {
    display: none;
  }

  .nav-menu-list::-webkit-scrollbar {
    width: 0px;
  }

  .nav-menu-list li {
    margin: 15px 10px;
  }

  .nav-menu-list li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-menu-list .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    top: 65px;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #showDrop:checked ~ .drop-menu,
  #showmega:checked ~ .mega-box {
    max-height: 100%;
  }

  .nav-menu-list .drop-menu li {
    margin: 0;
  }

  .nav-menu-list .drop-menu li a {
    font-size: 18px;
    border-radius: 5px;
  }

  .nav-menu-list .desktop-item {
    display: none;
  }

  .nav-menu-list .mobile-item {
    display: block;
    font-size: 20px;
    color: #f2f2f2;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-menu-list .mobile-item:hover {
    background: #3a3b3c;
  }

  .mega-box {
    position: static;
    top: 65px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    background: #242526;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-link {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-link li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}
.font-size-14 {
  font-size: 14px !important;
  font-weight: 300 !important;
}
.pt-60 {
  padding-top: 60px;
}
.nav-tabs > li {
  float: left;
  font-size: 16px;
  min-width: 150px;
  text-align: center;
}

@media screen and (min-width: 1300px) {
  .container-fluid {
    padding: 0 60px; /* Simplified padding syntax */
  }
}

@media screen and (max-width: 768px) {
  .nav-menu .wrapper {
    padding: 6px 12px;
  }
}

.input-group-addon {
  padding: 0 !important;
  width: 34px;
  margin-right: 5px !important;
  margin: 1px;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px !important;
}
.input-group-btn {
  padding: 0px 8px !important;
}

.login-user {
  font-size: 30px;
  vertical-align: middle;
}

.fullwidth {
  width: 100%;
}
.fullwidth {
  width: 50%;
}
.createticket {
  color: #fff;
  background-color: #b52c2f !important;
  border-color: #b52c2f;
}
.createticket:hover {
  color: #fff;
  background-color: #b52c2f !important;
  border-color: #b52c2f;
}
.swal2-icon-success {
  font-size: 16px;
  background-color: #259b1530;
}
.form-control {
  border: 1px solid #138da2 !important;
}
.form-control[disabled] {
  background-color: #138da226 !important;
}

.badge {
  background-color: red !important;
  margin-top: -10px;
  border-radius: 10px !important;
}

.remove-file {
  color: white;
  background-color: red;
  border-radius: 20px !important;
  border: 1px solid red;
  font-size: 13px;
  padding: 2px;
  margin-left: 5px;
}
.file-name {
  line-height: 25px;
}
#file-list {
  margin-top: 10px;
  font-size: 17px;
  font-style: italic;
}
.list-group-item {
  cursor: default;
}
.maincontent {
}

.history-panel .panel-body span img {
  height: 50px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #000000;
}

.history-panel .panel-body .panel-heading span {
  display: flex;
  align-items: center;
}

.history-panel .panel-body .panel.panel-default .panel-heading {
  display: flex;
  padding: 20px;
  border-radius: 10px 10px 0px 0px !important;
}

span.panel-titletext {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.panel.panel-default.history-panel p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 22px;
  text-align: justify;
}

.panel.panel-default.history-panel
  .panel-body
  .panel.panel-default
  .panel-body {
  padding: 20px;
  border-radius: 0px 0px 10px 10px !important;
  background-color: #fff;
}

.panel.panel-default.history-panel .panel.panel-default {
  border-radius: 10px !important;
}

/* .cke_reset_all{
	display:none !important;
} */

/* #cke_26, #cke_27, #cke_40, #cke_41, #cke_42, #cke_43, #cke_44 {
	display:none;
} */
/* .cke_button__scayt, .cke_button__link, .cke_button__unlink, .cke_button__anchor, .cke_button__image, .cke_button__table, .cke_button__horizontalrule, .cke_button__specialchar, .cke_button__maximize, .cke_button__source {
	display:none !important;
 } */
