.alert ul {
	margin: 0;
	list-style: none;
	padding-left: 5px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.affiliateLinks textarea {
	width: 100%;
}

label .note, span.note {
	font-size: smaller;
	font-style: italic;
}

.link {
	cursor: pointer;
	text-decoration: underline;
	color: #005580;
}

.bold{
	font-weight: bold;
}

.table tbody tr td.align-center,
.table tbody tr th.align-center{
	text-align: center;
}

body.dragging, body.dragging * {
  	cursor: move !important;
}

.dragged {
	position: absolute;
	opacity: 0.5;
	z-index: 2000;
}

.sortable li {
	cursor: move !important;
}

.autocomplete-suggestions { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
	border: 1px solid #999; 
	background: #FFF; cursor: default; 
	overflow: auto;
	-webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
	-moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
	box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
}
.autocomplete-suggestion { 
	padding: 2px 5px; 
	white-space: nowrap; 
	overflow: hidden; 
}
.autocomplete-no-suggestion { 
	padding: 2px 5px;
}
.autocomplete-selected { 
	background: #F0F0F0; 
}
.autocomplete-suggestions strong { 
	font-weight: bold; 
	color: #000; 
}
.autocomplete-group { 
	padding: 2px 5px; 
	font-weight: bold; 
	font-size: 16px; 
	color: #000; 
	display: block; 
	border-bottom: 1px solid #000; 
}

#galleryImages,
#cropper {
  width: 100%;
  float: left;
}

#galleryImages {
  max-height: 500px;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

canvas {
  max-width: 100%;
  display: inline-block;
}

#cropImageBtn {
  background-color: #4bb7c2;
  max-width: fit-content;
  color: white;
  border-radius: 10%;
}

.img-preview {
  float: left;
}

.singleImageCanvasContainer {
	display: inline-flex;
	position: relative;
	margin: 2px;
	border: #999 solid 2px;
	padding: 4px;
    max-width: 200px;
	max-height: 200px;
}

.singleImageCanvasCloseBtn {
  position: absolute;
  top: 5px;
  right: 5px;
}

#dropZone {
  width: 100%;
  height: 200px;
  border: 2px dashed #ccc;
  margin-bottom: 10px;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.selectImage {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

.tags-input { 
	display: inline-block; 
	position: relative; 
	border-radius: 4px; 
	padding: 5px; 
	width: 100%; 
} 

.tags-input ul { 
	list-style: none; 
	padding: 0; 
	margin: 0; 
} 

.tags-input li { 
	display: inline-block; 
	background-color: rgba(0, 0, 0, 0.1);
	color: #333; 
	border-radius: 20px; 
	padding: 5px 10px; 
	margin-right: 5px; 
	margin-bottom: 5px; 
} 

.tags-input input[type="text"] {
	padding: 10px; 
	font-size: 14px;
	width: 75%;
} 

.tags-input input[type="text"]:focus { 
	outline: none; 
} 

.tags-input .delete-button { 
	background-color: transparent; 
	border: none; 
	color: #999; 
	cursor: pointer; 
	margin-left: 5px; 
}

.addTag {
	padding: 10px;
	margin-left: 10px;
	margin-bottom: 12px;
}

.tag_text {
	border-bottom: 1px dashed #08c;
	cursor: pointer;
}

.edit_image {
	height: 400px;
	width: 400px;
}

.largeSize {
	border: red solid 2px !important;
}

.loader-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	z-index: 999; /* Ensure it covers the entire background */
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.w5 {
	width: 5%;
}

.w35 {
	width: 35%;
}

.w20 {
	width: 20%;
}

.searchSection {
	display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -65px;
}
