.cookieaceptance-bar-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  width: 320px;
  height: auto;
  margin: -90px 0 0 -160px;
  border: 1px solid #ccc;
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

  .cookieaceptance-bar-notification .text {
    margin-bottom: 20px;
    line-height: 20px;
  }

  .cookieaceptance-bar-notification button {
    min-width: 60px;
    margin: 5px 0 10px;
    border: none;
    background-color: #4ab2f1;
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
  }

    .cookieaceptance-bar-notification button:hover,
    .cookieaceptance-bar-notification button:focus {
      background-color: #248ece;
    }

  .cookieaceptance-bar-notification a {
    display: block;
    color: #4ab2f1;
  }

    .cookieaceptance-bar-notification a:hover,
    .cookieaceptance-bar-notification a:focus {
      text-decoration: underline;
    }

.validation-error,
.field-validation-error {
  display: block;
  text-align: left;
  font-size: 13px;
  color: #e4434b;
  margin-top: 5px;
  white-space: normal;
}

.ticker {
  white-space: nowrap;
  overflow: hidden;
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.swiper, .swiper-wrapper, .swiper-slide {
  pointer-events: all !important;
}

.overlay-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: none; /* default hidden */
  align-items: center;
  justify-content: center;
}

  .overlay-mask.show {
    display: flex;
  }

.loader {
  border: 3px solid #ccc;
  border-top: 3px solid #10b981;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.slide-panel {
  transition: all 0.3s ease-in-out;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.4s ease-out;
}
.search-tradingentity {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.tradingentity-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
}

    .tradingentity-suggestions li {
        padding: 10px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .tradingentity-suggestions li:hover {
            background-color: #f5f5f5;
        }

    .tradingentity-suggestions button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 4px;
        cursor: pointer;
    }

.table-caption-top {
  caption-side: top;
  text-align: left;
  padding-bottom: 10px;
  font-weight: bold;
}

.scrolling-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
}

  .scrolling-wrapper::-webkit-scrollbar {
    display: none;
  }

.delivery-card {
  flex: 0 0 90%;
  min-width: 90%;
}

@media (min-width: 768px) {
  .delivery-card {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .delivery-card {
    flex: 0 0 40%;
    min-width: 40%;
  }
}