@import url(/global/global-banner-light.css?v=3);
html * {
  background-color: black;
  color:white;
}
a:link,
a:visited {
color: black;
background-color: inherit;
}
a:hover,
a:active {
color: rgb(201, 42, 32);
background-color: inherit;
}
.button:hover,
.button:focus,
.button:active {
  background-color: rgb(201, 42, 32);
  border: solid 3px rgb(201, 42, 32);
  border-radius: 5px;
  color: rgb(245, 187, 71);
  cursor: pointer;
}
.button{
  justify-content: center;
  align-items: center;
  appearance: none;
  box-sizing: content-box;
  height: 60%;
  background-color: rgb(245, 187, 71);
  border: solid 3px rgb(245, 187, 71);
  color: rgb(201, 42, 32);
  border-radius: 5px;
  font-size: 16px;
}
.loadanimation{
  background-image: url(assets/images/mcflurry_animation.gif);
  height: 60vh;
  width: 100%;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}
.image_link {
  margin: 0px 0px 5px 0px;
  padding: 0px;
  width: auto;
}
a.linkbox_style:link,
a.linkbox_style:visited {
  color: white;
  text-decoration: none;
}
a.linkbox_style:hover {
  color: rgb(245, 187, 71);
  text-decoration: none;
  border: 0.35rem solid;
  border-radius: 1rem;
  border-color: rgb(245, 187, 71);
}
a.linkbox_style:active {
  color: rgb(201, 42, 32);
  text-decoration: none;
  border: 0.35rem solid;
  border-radius: 1rem;
  border-color: rgb(201, 42, 32);
}
.linkbox_style {
  cursor: pointer;
  display: block;
  border: 0.35rem solid transparent;
  -webkit-tap-highlight-color: rgb(245, 187, 71);
  width: auto;
  margin: 5px;
}
.linksTable {
  display: grid;
  text-align: center;
  color: white;
}
.logoNeutral {
  width: 40vw;
  cursor: pointer;
  display: inline-block;
}
.blended {
  grid-column: 1;
  grid-row: 1;
}
.icemachine {
  grid-column: 2;
  grid-row: 1;
}
.grill {
  grid-column: 1;
  grid-row: 2;
}
.espresso {
  grid-column: 2;
  grid-row: 2;
}
.hidden {
  display: none;
}
th {
  background-color: rgb(245, 187, 71);
  color: black;
  top: 0;
  position: sticky;
  font-weight: 600;
  text-align: left;
}
.myTable {
  width: 100%;
  border-collapse: collapse;
}
.dynamicContentContainer {
  width: 100%;
}
td {
  line-height: auto;
  width: fit-content;
  background-color: transparent;
}
tr {
  background-color: transparent;
}
tr:not(:first-child, :last-child){
  border-bottom: 3px solid white;
  border-top: 3px solid white;
  border-collapse: collapse;
}
tbody:nth-of-type(even){
  background-color: var(--yellowInactive);
}
button {
  height: 5vh;
  width: -webkit-fill-available;
  padding: 0px;
  font-weight: 600;
}
.close{
  background-color: var(--red) !important;
}
.warning{
  background-color: var(--yellow) !important;
}
/* Overlay Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dimmed background color */
  z-index: 9999; /* Ensure the overlay stays on top */
  display: none;
  justify-content: center;
  align-items: center;
}
wa-button {
  font-size: 10px;
}

/* Spinner Styles */
.spinner {
  border: 5px solid var(--yellowInactive); /* Spinner color */
  border-top: 5px solid var(--yellow); /* Spinner color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite; /* Spinner animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
