.main-label {
    padding: 3px 1px;
    line-height: 13px;
    color: #3e5569;
    font-weight: 400;
    border-radius: 2px;
    font-size: 98%;
}
.footer {
    
    padding: 20px; /* Adds padding to the footer */
    background-color: #f8f9fa; /* Optional: sets a background color */
}

.footer p {
    margin: 0; /* Removes default margin */
}
.rightTxt li a {
    color: #55585a;
}



.rightTxt {
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes padding */
    margin: 0 0 0 auto; /* Adds margin to the top */
    display: table; /* Allows it to be treated as a block element while remaining inline */
}
.rightTxt a:hover {
    color: rgb(92, 151, 239); /* Color on hover */
}

.rightTxt li {
    display: inline; /* Displays list items in a line */
    margin-left: 10px; /* Adds space between items */
}

.rightTxt li:not(:first-child)::before {
    content: "|"; /* Adds a vertical bar before each item except the first */
    margin-right: 10px; /* Adds space after the vertical bar */
}

.modal-open {
    overflow: auto !important; /* Allows background scrolling */
    position: relative !important;
}
.btn.add-btn {
  display: table;
  margin: 0 0 15px auto;
  background-color: #ac873f;
  color: #fff;
  padding: 8px 30px;
  font-weight: 500;
  border-radius: 4px;
}


.category_table table.table-bordered.dataTable tbody th, .category_table  table.table-bordered.dataTable tbody td{
	word-wrap: anywhere;
}

#login-button:hover {
    font-weight: bold; /* Make text bold on hover */
}

.input-group-text {
	color:#ac873f
}

.topbar .top-navbar .parent-item:hover {
	color: #000;
	background-color:red;
	border:1px solid #000;
}


.topbar .top-navbar .main-menu .top-level-selected {
    background-color:#FF0000;
    color: black;    
	border:1px solid #000;
}

.topbar .top-navbar .main-menu .second-level-selected {
    background-color: #84F95B;
    color: black;    
	border:1px solid #000;
}

.desktop-dropdown-links .dropdown-submenu.main-menu ul li a {
	height: 44px;
  }

  .topbar .desktop-dropdown-links .dropdown-menu{
	padding: 0;
	border: 0;
	box-shadow: 1px 1px 15px rgba(0,0,0,.1);
	margin-top:-20px;	
}

.topbar .desktop-dropdown-links .dropdown-menu ul{
    margin:0;
}

.dragging {
    cursor: move;
}

.topbar .navbar .navbar-nav .desktop-dropdown-links:hover .parent-menu {
    display: block; /* Show dropdown menu on hover */
}

.parent-menu {
    display: none; /* Hide dropdown menu by default */
}
.category_table .table td, .category_table .table th {
    padding: 0px;
    vertical-align: middle;
}
.table-responsive.category_table th p {
    margin: 0;
    padding: 15px 0;
    position: relative;
    left: 10px;
}
.table-responsive.category_table td	 p {
    margin: 0;
    padding: 15px 0;
    position: relative;
    left: 10px;
}
a .btn{
    color:#ac873f;

}
.error{
    color:#FF0000;
}
.select2 {
    width: 100% !important;
}
.color.selected {
    border: 1px solid black !important;  /* Border to indicate selection */
}

.includeOptionSet {
    overflow-y: scroll;
    height: 150px;
    border: 1px solid #eee;
    padding: 5px;
    background-color:#fff;
}
#show-option-value ul li {
  list-style-type: none;
  border-bottom: 1px #f2f2f2 solid;
  padding: 6px;
}
#show-option-value ul {
  padding: 0 0px;
  margin: 0;
}
#show-option-value ul li:hover {
  background-color: #ac873f;
  color: #fff;
}
#show-available-option ul li {
  list-style-type: none;
  border-bottom: 1px #f2f2f2 solid;
  padding: 6px;
}
#show-available-option ul {
  padding: 0 0px;
  margin: 0;
}
#show-available-option ul li:hover {
  background-color: #ac873f;
  color: #fff;
}

#minimum_amount-error {
    position: absolute;
    bottom: -30px;
}
#maximum_amount-error {
    position: absolute;
    bottom: -30px;
}


/* Hide child categories by default */
.treeview {
    list-style-type: none;
    padding-left: 0;
  		
}

/* Hide child categories by default */
.treeview ul {
    display: none;
    margin-left: 20px;
}

/* Style for toggle container */
.treeview .toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Style for the arrow */
.treeview .toggle.arrow {
    margin-right: 10px;
}

/* Style for the expanded arrow */
.expanded .arrow {
    transform: rotate(90deg);
}
.brown-btn{
    display: inline-block;
    background-color: #ac873f;
    color: #fff !important;
    padding: .375rem .75rem;
    font-weight: 600;
    border-radius:2px;
	border:2px solid #ac873f;
}
.brown-btn:hover{
	background-color: #fff;
	color:#ac873f!important;
	border-color:#ac873f;
}
ul.treeview{
    overflow-y: scroll;
    height: 100px;
}
ul.treeview ul.treeview{
    overflow-y: inherit;
    height: auto;
}
.vertical-line {
    border-left: 5px solid #000; /* 2px solid black line */
    padding-left: 20px; /* Optional: adds some space between the line and the input field */   
}

.custom-error {
    display: block;  
    color: red; 
    margin-top: 5px;  
}

span.required-info {
    display: inline-block; 
    margin-top: 5px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    height: auto !important;
}
#selected_file-error{
    position: absolute;
    top: 35px;
    left: -73px;
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border.text-primary {
    color: #AC873F !important; /* Primary color */
}


@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only {
    margin: -1px;
}
.quote {
    font-style: italic;
    background-color: azure;
    margin-left: 1%;
}
.toggle-button {
		width: 60px;
		height: 30px;
		position: relative;
	}
	.toggle-button input {
		display: none; /* Hide the default checkbox */
	}
	.toggle-button .slider {
		position: absolute;
		cursor: pointer;
		background-color: #ccc;
		border-radius: 5px; /* Rectangle with rounded corners */
		height: 100%;
		width: 100%;
		transition: 0.4s;
	}
	.toggle-button .slider:before {
		content: "";
		position: absolute;
		height: 22px;
		width: 22px;
		background-color: white;
		border-radius: 5px;
		transition: 0.4s;
		top: 50%;
		left: 4px;
		transform: translateY(-50%);
	}
	input:checked + .slider {
		background-color: #ac873f; /* Toggle On Background */
	}
	input:checked + .slider:before {
		transform: translate(26px, -50%); /* Move the toggle button */
	}

    .team-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        min-height:25px;
    }
    
    .team-item {
        display: flex;
        align-items: center;
        background-color: rgb(230, 228, 228); /* Light background for the box */
        margin: 5px 0;
        padding: 7px;
        border-radius: 5px;
        position: relative;
    }
    
    .team-name {
        flex-grow: 1; /* Ensure the name takes up the available space */
    }
    
    .close-btn {
        background: none;
        border: none;
        color: #1b0303; /* Red color for the cross */
        font-size: 20px;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .close-btn:hover {
        color: #cc0000; /* Darker red on hover */
    }
    .horizontal_line1{
        border-top: 3px solid #000;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 3px solid black;
    }
    .small-font {
        font-size: 9px;  /* Adjust the font size as needed */
        font-weight: 500;
    }
    .btn.red-bg {
    background-color: #cd0f23;
    color: #212529;
    border: 2px solid #d10c18;
    font-weight: 600;
    }
    #customerModal .modal-dialog-scrollable .modal-body {
       overflow-y: scroll;
       height: 300px;
    }

    #calendar-table td, #calendar-table th {
        padding: 0.2rem;
    }

    
      .quantity_div {
        margin-left: 20px;
        display: flex;
        align-items: center; /* Align items vertically in the center */
        flex-wrap: wrap; /* Allow wrapping if the screen is small */
      }
  
      .quantity_div .col-md-7 {
        display: flex;
        gap: 10px; /* Space between radio buttons */
      }
  
      .quantity_div .custom-control {
        margin-right: 10px; /* Add margin between each radio button */
      }
  
      .quantity_div .col-md-1,
      .quantity_div .col-md-4 {
        display: flex;
        align-items: center; /* Vertically center "To" and input field */
      }

      .weight_div {
        margin-left: 20px;
        display: flex;
        align-items: center; /* Align items vertically in the center */
        gap: 10px; /* Add space between the elements */
      }
  
      .weight_div .col-md-4 {
        display: flex;
        align-items: center; /* Vertically center the content */
      }
  

      .manage_price_div {
        margin-left: 20px;
        display: flex;
        align-items: center; /* Align items vertically in the center */
        gap: 10px; /* Space between elements */
      }
  
      .manage_price_div .col-md-4 {
        display: flex;
        align-items: center; /* Vertically center the content */
      }
  
      .select2,
      .form-control {
        width: 100%; /* Ensure the select and input fields take up full width of their container */
      }

    .treeview .toggle {
        display: flex;
        align-items: center;
    }
    
    .treeview .arrow {
        margin-right: 8px; /* Space between arrow and checkbox */
    }
    
    .treeview .arrow.placeholder {
        display: inline-block;
        width: 16px; /* Adjust width to match arrow space */
        margin-right: 4px; /* Same space as the arrow */
    }
    
    /* Adjust the checkbox styling if needed */
    .treeview .toggle input[type="checkbox"] {
        margin-right: 8px; /* Space between checkbox and category name */
    }
    .custom-select-width {
        width: auto !important;
    }
    .options {
        color: black;        /* Set the color to black */
        font-weight: bold;  
        font-size: 12px; 
        margin-top:5px;
    }
    .select2-container--default .select2-selection--multiple {
        min-height: 50px;  /* Set the height of the select box */
        height: auto;      /* Allow dynamic height adjustment */
    }
    .production_date_set{
        cursor:pointer;
    }
    .btn-dropdown-toggle{
        background-color: #8080807a;
        margin-top: 5px;
        padding: 3px 3px 0;
    }
.stars {
    display: inline-block;
}

.star {
    font-size: 16px;
}

.star.filled {
    color: #ac873f; /* Gold for filled stars */
}

.custom-confirm-button {
    background-color: #ac873f !important;
    color: white !important;
    border: none !important;
    box-shadow: none !important;
}

.custom-confirm-button:hover {
    background-color: #ac873f !important;
}

/* Style the switch container */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide the default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Create the slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

/* The slider's circle */
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

/* When the checkbox is checked, change the background color */
input:checked + .slider {
    background-color: #af904c;
}
 
/* When the checkbox is checked, move the circle to the right */
/* input:checked + .slider:before {
    transform: translateX(26px);
} */
#Paypal input:checked + .slider:before {
    transform: translate(26px, -50%);
}

/* Add text for "Yes" and "No" on both sides */
.slider:after {
    content: 'No';
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #fff;
}

input:checked + .slider:after {
    content: 'Yes';
    right: 10px;
    left: unset;
}

.product-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Space between checkboxes */
}

.checkbox-input {
    margin-right: 12px; /* Space between checkbox and label */
}

.checkbox-label {
    font-size: 14px; /* Adjust label text size */
}

.dl-horizontal dt, .dl-horizontal dd {
    display: inline-block;
    margin-bottom: 5px;
}

.dl-horizontal dt {
    width: 30%;
    font-weight: bold;
}

.dl-horizontal dd {
    width: 65%;
}
table.action-table td {
    position: static !important;
    overflow: unset !important;
}
.select2_error .error{
    position: absolute;
    margin-top: 42px;
}
#news-item-form .select2_error .error {
    position: absolute;
    margin-top: 71px;
    left: 10px;
}
#activity-result-form .openDateCustom input {
  font-size: 12px;
  margin-right:5px;
}
#activity-result-form .CloseDateCustom input {
  font-size: 12px;
  margin-right:5px;
}
#addActivitySeriesModal #activity-series-form .select2.select2-container.select2-container--default.select2-container--disabled.select2-container--focus {
    width: 90% !important;
}
#service-product-form #show-service-product #show-add-service-event-product #option_permission .error-message {
    position: absolute;
    bottom: -20px;
    left: 10px;
}