/* Minification failed. Returning unminified contents.
(6,20): run-time error CSS1039: Token not allowed after unary operator: '-category-dropdown-margin-top'
(7,23): run-time error CSS1039: Token not allowed after unary operator: '-category-dropdown-margin-bottom'
(21,19): run-time error CSS1039: Token not allowed after unary operator: '-font-size-base'
(30,19): run-time error CSS1039: Token not allowed after unary operator: '-font-size-base'
(44,19): run-time error CSS1039: Token not allowed after unary operator: '-font-size-base'
 */
.blog-category-dropdown-wrapper {
  display: flex;
  justify-content: center;
  float: left;
  clear: both;
  margin-top: var(--category-dropdown-margin-top, 0px);
  margin-bottom: var(--category-dropdown-margin-bottom, 0px);
  width: 100%;
}

.blog-category-dropdown-wrapper .dropdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.blog-category-dropdown-wrapper .dropdown-label {
  white-space: nowrap;
  font-size: var(--font-size-base);
}

.blog-category-dropdown-wrapper .select-dropdown-container {
  width: 704px;
}

.blog-category-dropdown-wrapper .select-dropdown-text {
  text-align: left;
  font-size: var(--font-size-base);
}

.blog-category-dropdown-wrapper .select-dropdown-container .select-dropdown-options li {
  text-align: left;
  padding: 0;
}

.blog-category-dropdown-wrapper .select-dropdown-container .select-dropdown-options li a {
  display: block;
  width: 100%;
  padding: 8px 14px;
  text-decoration: none;
  color: inherit;
  font-size: var(--font-size-base);
  font-weight: 400;
}

.blog-category-dropdown-wrapper .select-dropdown-container .select-dropdown-options li a:hover,
.blog-category-dropdown-wrapper .select-dropdown-container .select-dropdown-options li.visiting a {
  background-color: #9a9a9a;
  color: #fff;
}

.blog-category-dropdown-wrapper .select-dropdown-container > .select-dropdown {
  border-radius: 24px;
}

@media (max-width: 768px) {
  .blog-category-dropdown-wrapper .dropdown-row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .blog-category-dropdown-wrapper .select-dropdown-container {
    width: 100%;
  }
}

