.cdwqm {
	text-align: center;
	margin-bottom: 1rem;
}

.page-index .cdwqm {
	margin: 1rem 0;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}


.cdwqm__inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  overflow-x: auto;
  scrollbar-width: thin;
  max-width: 90vw;
}

.cdwqm__lead {
  flex: 0 0 auto;
  padding-left: 1rem;
  color: #222;
  white-space: nowrap;
}

.cdwqm__items {
  display: flex;
  align-items: center;
  gap: 0.5rem;
	flex: 0 0 auto;
	min-width: max-content;
}

.cdwqm__item,
.cdwqm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex: 0 0 auto;
min-width: max-content;
}

.cdwqm__item {
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  color: #1f2937;
}

.cdwqm__item:hover,
.cdwqm__item:focus {
  text-decoration: none;
}

.cdwqm__icon {
  display: inline-flex;
  max-width: 70px;
  flex: 0 0 auto;
}

.cdwqm__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.cdwqm__label {
  line-height: 1.2;
  flex: 0 0 auto;
min-width: max-content;
}

.cdwqm__button.copernic-trigger { 
	flex: 0 0 auto;
	border-radius: 999px;
	background: #ff5a2a;
    padding: 0.45rem 1.15rem 0.45rem 2rem;
    color: white;
    font-weight: 400;
    background: var(--orange);  
}

.cdwqm__button:hover,
.cdwqm__button:focus {
  background: #f04d1c;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .cdwqm__inner {
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .cdwqm__button {
    padding: 0.65rem 1rem;
  }
}


.cdwqm__item--static {
  cursor: default;
}

.cdwqm__item--static:hover,
.cdwqm__item--static:focus {
  transform: none;
  box-shadow: none;
}

