/* vim: set ts=2 sw=2 sts=2 et: */

/**
 * Sticky panel common styles
 *
 * Copyright (c) 2011-present Qualiteam software Ltd. All rights reserved.
 * See https://www.x-cart.com/license-agreement.html for license details.
 */

.sticky-panel {
  position: relative;
  margin-top: 40px;
  padding: 0px;
  overflow: visible;
}

.sticky-panel .box {
  top: 0;
  background-color: #fff;
  position: absolute;
  overflow: visible;
  border-top: 1px solid #d6d6d6;
  z-index: 100;
  height: 60px;

  display: flex;
  align-items: center;
}

.sticky-panel .box.sticky {
  border-top: 1px solid #d6d6d6;
}

.sticky-panel .box .dropdown-menu button {
  font-size: 14px;
  text-align: left;
}

.btn-group > .more-action.first-visible {
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.btn-group > .more-action.last-visible {
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}