/**
* 2025 6UVES.COM
*
* NOTICE OF LICENSE
*
* This file is licenced under the Software License Agreement.
* With the purchase or the installation of the software in your application
* you accept the licence agreement
*
* @author    6UVES.COM <info@6uves.com>
* @copyright 2025 6UVES.COM
* @license   Commercial license (You can not resell or redistribute this software.)
*
*/

:root {
  --availabilitymessage-bg: rgba(239, 236, 220,1);
  --availabilitymessage-border: rgb(199, 197, 184);
  --availabilitymessage-color: inherit;
}

.availabilitymessage {
  margin: 1rem 0;
  padding: 1.55rem 1.25rem;
  border: 1px solid var(--availabilitymessage-border);
  background: var(--availabilitymessage-bg);
  color: var(--availabilitymessage-color);
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.availabilitymessage a {
  color: inherit;
  text-decoration: underline;
}

.availabilitymessage strong {
  color: inherit;
}

.availabilitymessage[style*='display:none'] {
  opacity: 0;
}
