body {
  margin: 0;
}
.nav-link:hover {
  color: rgba(255, 136, 0, 0.966) !important;
}
.background {
  background-color: black;
  background-size: 180% 180%;
}

select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url("../img/flatcoloriconsexpand.svg") no-repeat right;
  background-size: 20px 10px;
}

.contain {
  position: relative;
  width: 100%;
  max-width: 600px; 
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  pointer-events: none; 
}

.dropdown-submenu .dropdown-menu-wider {
  min-width: 200px; 
}

.nav-tabs .nav-link {
  border-color: var(--bs-primary) !important;
  color: var(--bs-black) !important;
}

.nav-tabs .nav-link.active {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

/* Applying styles to the dropdown on hover */
select:hover {
  color: var(--bs-primary) !important;
  background-color: var(--bs-white) !important;
}

/* Applying styles to the selected option */
option:checked {
  color: var(--bs-primary);
  background-color: var(--bs-white) !important;
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  justify-content: space-between; /* Space between text and arrow */
  align-items: center; /* Center vertically */
  background: var(--bs-white) !important;
  cursor: pointer;
}

.custom-select-trigger .arrow {
  font-size: 20px; /* Adjust size if needed */
  color: var(--bs-black) !important;
  margin-left: 10px; /* Space between text and arrow */
}

.custom-options {
  position: absolute;
  width: 100%;
  background: var(--bs-white) !important;
  display: none;
  max-height: 180px;
  overflow-y: auto;
  z-index: 1;
}

.custom-option {
  cursor: pointer;
  color: var(--bs-black) !important;
  background: var(--bs-white) !important;
  display: block;
 }

.custom-option:hover, .custom-option.selected {
  color: var(--bs-primary) !important;
  background: var(--bs-white) !important;
}

.show {
  display: block;
}

.floatingButtonWrap {
  display: block;
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 999999999;
}

.floatingButtonInner {
  position: relative;
}

.floatingButton {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  background: -webkit-linear-gradient(45deg, #8769a9, #f17523);
  background: -o-linear-gradient(45deg, #8769a9, #f17523);
  background: linear-gradient(45deg, #8769a9, #f17523);
  color: #fff;
  line-height: 50px;
  position: absolute;
  border-radius: 50% 50%;
  bottom: 0px;
  right: 0px;
  border: 5px solid #b2bedc;
  /* opacity: 0.3; */
  opacity: 1;
  transition: all 0.4s;
}

.floatingButton .fa {
  font-size: 15px !important;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
  opacity: 1;
  color: #fff;
}


.floatingButton .fa {
  transform: rotate(0deg);
  transition: all 0.4s;
}

.floatingButton.open .fa {
  transform: rotate(270deg);
}

.floatingMenu {
  position: absolute;
  bottom: 60px;
  right: 0px;
  /* width: 200px; */
  display: none;
}

.floatingMenu li {
  width: 100%;
  float: right;
  list-style: none;
  text-align: right;
  margin-bottom: 5px;
}

.floatingMenu li a {
  padding: 8px 15px;
  display: inline-block;
  background: #f5e3cc;
  color: #f17523;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s;
  /* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
  -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
  box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
}

.floatingMenu li a:hover {
  margin-right: 10px;
  text-decoration: none;
}


.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 600px;
}

.tag {
  background-color: #f1f1f1;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.tag .close {
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #e74c3c;
}

.input {
  border: none;
  outline: none;
  flex-grow: 1;
  padding: 5px;
  font-size: 14px;
  min-width: 100px;
}

/* Suggestions dropdown styles */
.suggestions-container {
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  background-color: white;
  width: 84%;
  z-index: 10;
  display: none;
}

.suggestion-item {
  padding: 8px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.autocomplete-suggestions {
  border: 1px solid #ccc;
  background-color: #fff;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  z-index: 1000;
}
.autocomplete-suggestion {
  padding: 8px;
  cursor: pointer;
}
.autocomplete-suggestion:hover {
  background-color: #f0f0f0;
}