@font-face {
      font-family: 'Icon';
      src: url('/fonts/icon.eot?52m981');
      src: url('/fonts/icon.eot?#iefix52m981') format('embedded-opentype'),
      url('/fonts/icon.woff?52m981') format('woff'),
      url('/fonts/icon.ttf?52m981') format('truetype'),
      url('/fonts/icon.svg?52m981#icon') format('svg');
      font-weight: normal;
      font-style: normal;
    }
	.calculator {
 display: none;
}

@media (max-width: 530px) {
.calculator {
 display: inline;
}
.butts, .butts-right {
 display: none;
 }
}
.screencont {
  width: 100%;
  height: 50px;
  border: none;
  background-color: #252525;
  color: #fff;
  text-align: center;
  padding-right: 20px;
  padding-left: 10px;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-bottom 0.3s ease-out, opacity 0.3s ease, visibility 0.3s ease;
}

.screencont.collapsed {
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.screencont.hidden {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
}
#distdata {
	margin: 0;
	padding: 0;
	line-height: 1.4;
	display: flex;
	align-items: center;
}

.calculator-screen {
  width: 100%;
  height: 40px;
  border: none;
  background-color: #252525;
  color: #fff;
  text-align: right;
  padding-right: 20px;
  padding-left: 10px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calculator-screen.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  margin: 0;
}

@media (max-width: 530px) {
  .calculator-screen {
    padding-right: 10px;
    padding-left: 5px;
  }
}
.calculator-keys button {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #c4c4c4;
  background-color: transparent;
  font-size: 2rem;
  color: #CAAC63;
  background-image: linear-gradient(to bottom,transparent,transparent 50%,rgba(0,0,0,.04));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 1px 0 0 rgba(255,255,255,.45), inset 0 -1px 0 0 rgba(255,255,255,.15), 0 1px 0 0 rgba(255,255,255,.15);
  text-shadow: 0 1px rgba(255,255,255,.4);
}

.spirits {
    font-size: 1.1rem !important;
}

.calculator-keys button:hover {
  background-color: #eaeaea;
}
.operator {
  color: #337cac;
}
.all-clear {
  background-color: #f0595f;
  border-color: #b0353a;
  color: #fff;
}
.all-clear:hover {
  background-color: #f17377;
}
.equal-sign {
  background-color: #2e86c0;
  border-color: #337cac;
  color: #fff;
  height: 100%;
  grid-area: 2 / 4 / 6 / 5;
}
.equal-sign:hover {
  background-color: #4e9ed4;
}
.controls-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 200px;
}

.calculator-container {
  width: 100%;
  transition: transform 0.3s ease-out;
  transform: translateX(0);
}

.calculator-container.slide-left {
  transform: translateX(-100%);
}

.calculator-keys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6px;
  padding: 0 10px 10px;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.calculator-keys.collapsed {
  max-height: 0;
  padding: 0 10px;
  overflow: hidden;
}

.toggle-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 5px 10px;
  min-height: 20px;
  position: relative;
}

.keypad-toggle {
  width: 30px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  position: relative;
  flex-shrink: 0;
  min-width: 30px;
  visibility: visible;
  opacity: 1;
}

.keypad-toggle::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 12px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 1 L6 9 L11 1' fill='none' stroke='%23CAAC63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.keypad-toggle.collapsed::before {
  transform: translateY(-50%) rotate(0deg);
}

.keypad-toggle:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 1 L6 9 L11 1' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dot-navigation {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dot-nav {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  border: 2px solid #CAAC63;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
  display: block;
}

.dot-nav.active {
  background-color: #CAAC63;
  border-color: #CAAC63;
}

.dot-nav:hover {
  border-color: #fff;
}

.dot-nav.active:hover {
  background-color: #fff;
  border-color: #fff;
}

.palette-nav {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  border: 2px solid #CAAC63;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  visibility: visible;
  opacity: 1;
  display: block;
  position: relative;
  overflow: visible;
}

.palette-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: conic-gradient(
    #ff0000 0deg 60deg,
    #ffff00 60deg 120deg,
    #00ff00 120deg 180deg,
    #00ffff 180deg 240deg,
    #0000ff 240deg 300deg,
    #ff00ff 300deg 360deg
  );
  z-index: 1;
}

.palette-nav.active {
  border-color: #CAAC63;
}

.palette-nav.active::before {
  box-shadow: 0 0 0 1px #CAAC63;
}

.palette-nav:hover {
  border-color: #fff;
}

.palette-nav.active:hover {
  border-color: #fff;
}

.palette-nav.active:hover::before {
  box-shadow: 0 0 0 1px #fff;
}

.filter-container {
  width: 100%;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #252525;
  padding: 10px 0;
  max-height: 500px;
  overflow-y: auto;
}

.filter-container.slide-in {
  transform: translateX(0);
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-group label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-select {
  padding: 8px;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  background-color: #fff;
  color: #252525;
  font-size: 0.9rem;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: #CAAC63;
}

.color-map-container {
  width: 100%;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: transparent;
  padding: 10px 0;
  overflow-y: auto;
  z-index: 1;
  visibility: hidden;
  box-sizing: border-box;
}

.color-map-container.slide-in {
  visibility: visible;
}

.color-map-container.slide-in {
  transform: translateX(0);
}

.color-map-content {
  padding: 10px;
  min-height: 100%;
}

.color-map-title {
  font-weight: bold;
  color: #CAAC63;
  text-align: center;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  padding: 10px;
}

.flavor-bars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flavor-bar {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.flavor-bar span {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
button, #mySelect, #distInput, .blueput {    background-color: white;    color: #00aeef;    border-radius: 12px;	-webkit-border-radius: 12px;	-moz-border-radius: 12px;    border: 2px solid #00aeef;	margin: 10px 5px 0px 0px;	border-color:#00aeef;	-moz-box-shadow: #00aeef;	-webkit-box-shadow: #00aeef;}
.rwd-table th {
	font-weight: 700
}