/*
MARK: ACOORDION
*/
.accordion h2 {
    color:#d12b2b;
}
.accordion .block-danger-satin-inspirations span {
    display: inline-block;
    color: #d00b2b;
    font-weight: 400;
    background: #fff1f1;
    border: 1px solid red;
    border-radius: 4px;
    padding: 7px 15px;
    font-size: 17px;
}
.accordion .accordion-body {
    padding: 1.5rem 1.25rem;
}
.accordion .bloc-color {
    height: 75px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #CBCBCB;
}
.accordion .bloc-color-name {
    font-size: 15px;
    hyphens: auto;
    overflow-wrap: break-word;
}
.accordion .reference {
    font-weight: 400;
}

/*
MARK: TOOLTIP
*/
.custom-tooltip {
  position: absolute;
  background: #fdfdfd;
  color: #000;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}
.custom-tooltip.visible {
  opacity: 1;
}
.custom-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/*
MARK: TOOLTIP CONTENT
*/
.custom-tooltip table {
    border: 1px solid #e7e7e7;
}
.custom-tooltip table thead th,
.custom-tooltip table tbody td {
    padding: 5px 10px;
}
.custom-tooltip table thead th {
    background: #d00b2b;
    color: #f7f7f7;
    font-weight: normal;
}