.table {
	font-size:12px;
}

.input-changed {
	 background-color: lightblue;
}

.input-error {
	 border-color: red;
}

#contractDetailForm-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  font-size:13px;
}

table.dataTable.table-sm>thead>tr>th {
    vertical-align: baseline;
}

/* Hide sorting icons for the checkbox column in all datatables */
th.select-checkbox::before {
	content: none !important; /* Remove the sorting icon */
}

th.select-checkbox::after {
	content: none !important; /* Remove the sorting icon */
}

.strength-indicator {
	display: flex;
	width: 300px;
	height: 10px;
	margin-top: 10px;
	padding-left: 20px;
}

.strength-bar {
  flex: 1;
  height: 100%;
  margin-right: 5px;
  background-color: #ddd;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  max-width: 80px;
  margin-top: 1px;
  height: 5px;
}

.strength-bar:last-child {
  margin-right: 0;
}

.bar-weak {
  background-color: red;
}

.bar-medium {
  background-color: orange;
}

.bar-strong {
  background-color: green;
}

.upload-area {
  border: 2px dashed #007bff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.upload-area.dragover {
  background-color: #e9f5ff;
}
.upload-area input[type="file"] {
  display: none;
}

.social-media { /* to use with <div class="circle bg-icon"></div> and with ont of icon below */
	width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
	
	background-repeat: no-repeat;
    background-position: center;
    background-size: 60% auto;   /* scale the svg inside the circle */
}

.social-media-bg-fb {
	background-image: url('vendor/fontawesome-free/svgs/brands/facebook-f.svg');
}

.form-control.error-border,
.form-control.error-border:focus {
  border-color: red !important;
  box-shadow: none !important;
}

/* TICKETS TIMELINE */
.rightbox {
  /* padding: 0em 34rem 0em 0em; */
  max-height: 670px;
  width: 310px;
  overflow-y: auto;
  overflow-x: hidden;
  /* height: 100%; */
}

.rb-container {
  font-family: "PT Sans", sans-serif;
  width: 50%;
  margin-left: 40px;
  display: block;
  position: relative;
}

.rb-container ul.rb {
  margin: 2.5em 0;
  padding: 0;
  display: inline-block;
}

.rb-container ul.rb li {
  list-style: none;
  margin: auto;
  /* margin-left: 10em; */
  min-height: 50px;
  border-left: 1px dashed #50d890;
  padding: 0 0 10px 30px;
  position: relative;
}

.rb-container ul.rb li:last-child {
  border-left: 0;
}

.rb-container ul.rb li::before {
  position: absolute;
  left: -10px;
  top: -5px;
  content: " ";
  border: 8px solid rgba(234, 236, 244, 1);
  border-radius: 500%;
  background: #50d890;
  height: 20px;
  width: 20px;
  transition: all 500ms ease-in-out;
}

.rb-container ul.rb li:hover::before {
  border-color: #232931;
  transition: all 1000ms ease-in-out;
}

.rb-container ul.rb li.selected::before {
  /* background-color: rgba(80, 216, 144, 0.1);*/
  border-color: #232931;
}

ul.rb li .timestamp {
  color: #50d890;
  position: relative;
  /* width: 100px; */
  font-size: 12px;
}

.item-title {
  color: #black;
  width: 200px;
  word-wrap: break-word;
}

