/* Vimlet panel element */
vc-headerpanel[theme="noire"] {
  display: flex;
  position: relative;
  flex-direction: column;
  /* Header */
  /* Content panel */
  /* Content top shadow div */
  /* Floating button */
  /* Close button */
}
vc-headerpanel[theme="noire"] .vc-headerpanel-header {
  display: none;
  height: 50px;
  line-height: 50px;
  padding-left: 10px;
  font-weight: bold;
  font-family: arial;
  transition: height 0.2s;
}
vc-headerpanel[theme="noire"] .vc-headerpanel-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  overflow: hidden;
  flex-basis: 0;
}
vc-headerpanel[theme="noire"] .vc-headerpanel-content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
vc-headerpanel[theme="noire"] .vc-headerpanel-shadowDrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
vc-headerpanel[theme="noire"] .vc-headerpanel-actionButton {
  display: none;
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  transition: transform 0.4s, box-shadow 0.4s;
}
vc-headerpanel[theme="noire"] .vc-headerpanel-actionButton:hover {
  transform: scale(1.1);
}
vc-headerpanel[theme="noire"] .vc-headerpanel-closeButton {
  display: none;
  position: absolute;
  top: 14px;
  right: 10px;
  font-size: 20px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
