@charset "UTF-8";
:root {
  --themeprimaryclr: #ff7000;
  --themehoverclr: #ff8426;
  --themesecondaryclr: #696969;
  --darkclr: #000;
  --plainclr: #fff;
  --lightbg: #fafafa;
}

.multiselct {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.multiselct .custom-dropdown-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-button {
  width: 100%;
  padding: 16px;
  background: var(--plainclr);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-button:hover, .multiselct .custom-dropdown-wrapper .custom-dropdown-button:focus {
  border-color: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--plainclr);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list.open {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item:hover {
  background-color: #f8f9fa;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item.selected {
  background-color: #e3f2fd;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item .custom-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item .custom-checkbox.checked {
  background: #667eea;
  border-color: #667eea;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list .custom-dropdown-item .custom-checkbox.checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--plainclr);
  font-size: 14px;
  font-weight: bold;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list::-webkit-scrollbar {
  width: 8px;
}
.multiselct .custom-dropdown-wrapper .custom-dropdown-list::-webkit-scrollbar-thumb {
  background-color: rgba(102, 126, 234, 0.5);
  border-radius: 4px;
}
.multiselct .custom-dropdown-wrapper .custom-selected-items {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.multiselct .custom-dropdown-wrapper .custom-selected-items .custom-selected-badge {
  display: inline-block;
  background: #667eea;
  color: var(--plainclr);
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 12px;
  animation: fadeIn 0.3s ease;
  cursor: pointer;
  transition: all 0.2s ease;
}
.multiselct .custom-dropdown-wrapper .custom-selected-items .custom-selected-badge:hover {
  background: #5a5edb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 480px) {
  .custom-dropdown-wrapper {
    max-width: 100%;
    margin: 20px;
  }
}/*# sourceMappingURL=searchabletagsDesign5.css.map */