:root {
  --neon-color: hsl(186 100% 69%);
  --neon-color: hsl(99, 84%, 48%);
  --primary-text: white;
  --secondary-text: rgb(233, 231, 231);
  --muted-text: rgb(172, 169, 169);
  --alert-text: rgb(252, 116, 116);
  --main-bg: rgba(0, 0, 0, 0.85);

  --border-color: black;
  --shadow-color: black;

  --border-color: hsla(99, 93%, 21%, 0.768);
  --shadow-neon-color: hsla(99, 88%, 17%, 0.74);

}

*,
*::before,
*::after {
  box-sizing: border-box;
}


.offers,
.offer.containerx {
  color: var(--primary-text);
  background-color: var(--main-bg);
}

.offers,
.offer.containerx,
.offers label,
.offer.containerx label,
.offers input,
.offer.containerx input,
.offers select,
.offer.containerx select,
.offers button,
.offer.containerx button {
  font-size: 15px !important;
}

.offers label,
.offer.containerx label,
.offers .label,
.offer.containerx .label {
  margin: 0;
}

.content-center {
  display: flex;
  width: 100%;
  justify-content: center;
}

.title.main {
  font-size: 24px;
  font-weight: lighter;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;


  display: flex;
  flex-direction: column;
  width: fit-content;
  line-height: 1.1;
  border-width: 3px;
}




.title.main .sub {
  font-style: italic;
  font-family: cursive;
}





.offers {
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;
    padding: 2em;
    background-color: var(--main-bg);
    height: calc(100vh - 226px);
    overflow: auto;
}
@media (min-width: 1441px) {
   .offers{

   height: calc(100vh - 350px);
   }
}
@media (min-width: 768px){
       .offers{
       height: calc(100vh - 234px);
       }
}
.oderList{
overflow: auto;
height: calc(100vh - 310px);
}
@media (min-width: 625px) {
   .oderList{
   height: calc(100vh - 385px);
   }
}


@media (max-width:648px) {
  .title.main {
    font-size: 20px;
  }
}

@media (max-width:689px) {
  .offers {
    justify-content: center;
  }
}




.offer-thumbnail {
  position: relative;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  background-color: var(--main-bg);
  box-shadow: 0px 0px 4px hsl(116.05deg 88.69% 49.32%);
  width: 300px;
  transition: border .2s ease-in-out;
  display: flex;
  flex-direction: column;
}

.offer-thumbnail.selected {
  box-shadow: 0 0 8px 1px rgb(2, 198, 2), 0 0 75px 17px #00800069;
}

.offer-thumbnail .add-to-cart {
  height: 0px;
  overflow: hidden;

  position: absolute;
  top: calc(100% + .25em);
  left: -3px;
  right: -3px;

  transition: height .25s ease-in;
}

.offer-thumbnail.open .add-to-cart {

  height: 16em;
  z-index: 100;
}




.offer-thumbnail .add-to-cart .cart-content {
  padding: 1em;
  border-radius: 0px 0px 15px 15px;
  border: 1px solid var(--border-color);
  background-color: var(--main-bg);
  box-shadow: 0.5px 1px 3px var(--shadow-neon-color);
  height: 16em;
}

.offer-thumbnail.open {
  border-radius: 15px 15px 0px 0px;

}

.offer-thumbnail img {
  transition: all .2s ease-in;
}

.offer-thumbnail:hover img {
  filter: contrast(1.15);
}

.offer-thumbnail.disabled img {
  filter: grayscale(1);
}




.offer-thumbnail .content {
  padding: 1em;
  /* flex: 2; */
  flex-grow: 1;
  flex-direction: column;
}

.offer-thumbnail .actions {
  padding: 1em;
  /* align-self:flex-end; */
}

.offer-thumbnail .title {
  font-size: large;
  font-weight: bold;
  line-height: 1.5em;
}

.offer-thumbnail .subtitle {
  font-size: 85%;
  color: var(--muted-text);
  font-style: italic;
  margin-bottom: .5em;
  line-height: 1.2em;
  height: 1.2em;
  overflow: hidden;
}

.offer-thumbnail .short-description {
  width: 256px;
  margin-bottom: 1em;
  color: var(--secondary-text);
  line-height: 1.1em;
  height: 3.3em;
  overflow: hidden;
}

.offer-thumbnail .category {
  font-size: 85%;
  position: absolute;
  top: 1em;
  left: 1em;
  padding: .25em .75em;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 1px 2px 5px var(--shadow-color);

  background-image: linear-gradient(0deg,
      hsl(0deg 0% 0%) 0%,
      hsl(120deg 100% 7%) 2%,
      hsl(120deg 100% 9%) 3%,
      hsl(120deg 100% 11%) 12%,
      hsl(120deg 100% 14%) 20%,
      hsl(120deg 100% 17%) 28%,
      hsl(124deg 100% 20%) 37%,
      hsl(133deg 100% 23%) 18%,
      hsl(137deg 93% 27%) 20%);

  color: gold;


}

.offer-thumbnail .image {
  width: 300px;
  height: 180px;
  border-radius: 15px 15px 0px 0px;
}

.offer-thumbnail .image img {
  width: calc(100% - 2px);
  height: 100%;
  border-radius: 15px 15px 0px 0px;
  object-position: center center;
  object-fit: cover;
}

.offer-thumbnail .content .label {
  width: 100px;
}

.offer-thumbnail .offer-price,
.offer-thumbnail .regular-price-x,
.offer-thumbnail .regular-price {
  display: flex;
  flex-direction: row;
  gap: 0.25em;
}

.offer-thumbnail .regular-price {
  font-size: 90%;
}

/* .offer-thumbnail .offer-price .price,
.offer-thumbnail .offer-price .unit {} */

.offer-thumbnail .regular-price .price,
.offer-thumbnail .regular-price .unit {
  text-decoration: line-through;
  text-decoration-color: rgb(253, 57, 57);
  text-decoration-thickness: 2px;
}

.offer-thumbnail .special-offer {


  padding: .5em 0em;
  height: 3em;
}


.offer-count-down {
  margin-top: .07em;
  color: var(--secondary-text);
}

.offer-thumbnail .btn {
  cursor: pointer;
  padding: .5em 1.5em;
  border-radius: .25em;
  outline: none;
  border: 2px solid rgba(0, 0, 0, .85);
  background-color: rgba(0, 0, 0, .75);
  color: white;
}





.offer-thumbnail .btn:hover {
  outline: none;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, .9);
  color: greenyellow;
}

.offer-thumbnail .btn:focus {
  border-color: green;
}

.offer-thumbnail .btn:active {
  outline: none;
  border: 2px solid transparent;
  background-color: rgba(0, 0, 0, .75);
  color: white;
}





@keyframes blink {
  0% {
    opacity: 1;
  }

  40% {
    opacity: .5;
  }

  50% {
    opacity: .3;
  }

  60% {
    opacity: .6;
  }

  100% {
    opacity: 1;
  }
}


.expiring {
  animation: blink 1.5s infinite;
  color: var(--alert-text);
}

.offer .actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
}

.offer .unit-selector {
  display: flex;
  align-items: center;
  width: fit-content;

  /* padding: .5em 1em;
  border-radius: .25em;
  border: 1px solid var(--border-color); */
}

.offer .unit-selector .label {
  width: 114px;
}

input.neon-input,
.offer .unit-selector input {
  border: 2px solid var(--neon-color);
  outline: none;
  background-color: var(--main-bg);
  color: var(--neon-color);
}

.offer .unit-selector input {
  width: 3em;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}


.centered-input::-webkit-inner-spin-button,
.centered-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.centered-input {
  text-align: center;

  line-height: normal;

  padding: 5px;
  width: 150px;
}


select.neon {
  background: white;
  height: 26px;
  min-width: 110px;
  color: var(--neon-color);
  background: rgba(0,0,0,.7);
  border: 1px solid var(--neon-color);
  border-radius: 5px;
}





/* Offer details ----------------*/


.offer-details {
  margin-top: .5em;
  width: 100%;


  background-color: var(--main-bg);
}

.offer-details .banner {
  width: 100%;
  height: 300px;
  border: 1px solid var(--neon-color);
}

.offer-details .content {
  padding: 1em 2em;
}

.offer-details .title {
  font-size: 64px;
  line-height: 1em;
  line-height: 1.2em;
  margin: 0px;


}


.offer-details .banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}


.offer-details .description {
  margin-top: 2em;
}


/* neon button --------------- */

.neon-sign,
.neon-btn {
  position: relative;
  color: var(--neon-color);
  padding: 0.4em 1em;
  border: 2px solid var(--neon-color);
  border-radius: .4em;
  background: var(--main-bg);
  perspective: 1em;
  font-family: "Raleway", sans-serif;
  /* font-weight: 900; */
  letter-spacing: .1em;

  -webkit-box-shadow: inset 0px 0px 0.1em 0px var(--neon-color),
    0px 0px 0.1em 0px var(--neon-color);
  -moz-box-shadow: inset 0px 0px 0.1em 0px var(--neon-color),
    0px 0px 0.1em 0px var(--neon-color);
  box-shadow: inset 0px 0px 0.1em 0px var(--neon-color),
    0px 0px 0.1em 0px var(--neon-color);
  animation: neon-border-animation 5s linear infinite;
}

.neon-sign h1,
h1.neon-sign{
  margin: 10px 0px 0px;
}

.neon-btn {
  cursor: pointer;
  font-size: 12px!important;
  animation: none;
}

.neon-btn.secondary{
  border: 1px solid green;
}

.btn-redeem{
  animation: neon-border-animation 5s linear infinite;
}

.neon-text,
.neon-txt,
input.neon-txt {
  color: var(--neon-color);
  -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--neon-color);
  -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em var(--neon-color);
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
}

.neon-sign .neon-txt {
  animation: neon-sign-text-animation 3s linear infinite;
}

.neon-btn .neon-txt {
  animation: neon-text-animation 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: neon-faulty-letter-animation 5s linear infinite;
}

.neon-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
  filter: blur(1em);
  transform: translateY(105%) rotateX(95deg) scale(1, 0.35);
  background: var(--neon-color);
  pointer-events: none;
}

.neon-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--neon-color);
  box-shadow: 0 0 2em 0.2em var(--neon-color);
  transition: opacity 100ms linear;
}

.neon-btn:hover {
  color: var(--primary-text);
  text-shadow: none;
  animation: none;
}

.neon-btn:hover .neon-txt {
  animation: none;
}

.neon-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.neon-btn:hover:before {
  filter: blur(.3em);
  opacity: .1;
}

.neon-btn:hover:after {
  opacity: 1;
}

.neon-btn:active {
  color: var(--neon-color);

  border: 1px solid var(--neon-color);
  border-radius: .25em;
  background: var(--main-bg);
}

.neon-btn:active:before {
  opacity: .1;
}

.neon-btn:active:after {
  opacity: .1;
}

.muted-text,
.muted-txt,
.disabled-text,
.disabled-txt,
.neon-btn:disabled,
.neon-btn:disabled:hover,
.neon-btn:disabled:active {
  animation: none;
  opacity: .6;
  color: var(--muted-text);
}

.neon-btn:disabled::before,
.neon-btn:disabled::after,
.neon-btn:disabled:hover::before,
.neon-btn:disabled:hover::after,

.neon-btn:disabled:active::before,
.neon-btn:disabled:active::after {
  opacity: 0;
}


.price-details {
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  /* width: fit-content; */
}

.price-details .lines {
  height: 2.25em;
}

.price-details .line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  /* width: fit-content; */
}



.price-details .line .label {
  flex-basis: 103px;
}

.price-details .line .unit-price {
  flex-basis: 36px;
  text-align: left;
}

/* .price-details .line .quantity{}. */




.price-details .line .quantity::before {
  content: "x";
  padding: 0 .5em;
  font-family: sans-serif;
  color: var(--neon-color);
}

.price-details .line .quantity {
  flex-basis: 52px;
  display: flex;
  justify-content: space-between;
}


.price-details .line .total::before {
  content: "=";
  padding-left: 1em;
  padding-right: 0.5em;
  font-family: sans-serif;
  color: var(--neon-color);
  justify-self: flex-end;
}

.price-details .line .total {
  flex: 1;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

.price-details .line.total {
  margin-top: 0.25em;
  padding-top: .5em;
  border-top: 1px solid var(--neon-color);
  font-weight: bolder;
  font-size: 110%;
}

.price-details .line.total .total {
  justify-content: flex-end;
}

.add-to-cart .actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.table-2 th {
  padding: .35em .5em !important;
  font-size: 16px !important;
  margin-top: .5em;
  text-align: left!important;
  background: linear-gradient(0deg, darkgreen, green, green,darkgreen);
}

.short-table th{
  padding: 4px!important;
  text-align: left!important;
  font-size: 16px;
}

.table-2 .GBG2FFLDBE,
.short-table .GBG2FFLDBE,
.short-table .com-google-gwt-user-cellview-client-CellTable-Style-cellTableSelectedRow,
.table-2 .com-google-gwt-user-cellview-client-CellTable-Style-cellTableSelectedRow {
  background: darkgreen;
  background-color: #F0E68C!important;
  color: black;
  border: none!important;
}

.table-2 .GBG2FFLDBE .GBG2FFLDCE,
.short-table .GBG2FFLDBE .GBG2FFLDCE,
.short-table .com-google-gwt-user-cellview-client-CellTable-Style-cellTableSelectedRowCell,
.table-2 .com-google-gwt-user-cellview-client-CellTable-Style-cellTableSelectedRowCell {
  border: 1px solid rgba(1, 107, 1, 0.843)!important;
  border: 1px solid darkkhaki!important;
}


.paging {
  padding: 1.5em 3em;
  display: flex;
  justify-content: center;
  background-image: url(template-01.png);
  background: rgba(0, 0, 0, .75);
  gap: .5em;
}


.page-btn {
  height: 2.5em;
  width: 2.5em;
  color: var(--neon-color);
  border: 2px solid var(--neon-color);
  border-radius: .5em;
  perspective: 1em;
  letter-spacing: .1em;
  box-shadow: inset 0px 0px 0.1em 0px var(--neon-color), 0px 0px 0.1em 0px var(--neon-color);
  background: var(--main-bg);
  font-weight: bolder;
}



.page-btn.current {
  width: 5em;
}


.skew-x-5{
  transform: skewX(-5deg);
}

.skew-x5{
  transform: skewX(5deg);
}

.paging-current{
  display: flex;
  margin: 0 5px;
}

.paging-current .page-btn{
  border-radius: 0px;
  border-left: 0!important;
  border-right: 0px!important;
}

.paging-current .pos{
  border: 2px solid var(--neon-color);
  width: 8px;
}

.paging-current .pos.left{
  border-right: 0px;
  margin-right: -5px;
  border-radius: 4px 0px 0px 4px;
}

.paging-current .pos.right{
  border-left: 0px;
  margin-left: -5px;
  border-radius: 0px 4px 4px 0px;
}




.dark-bg{
  background-color: rgba(0, 0, 0, .75);
}



.page-btn:active {
  border: 1px solid var(--neon-color);
  background: var(--main-bg);
}

.page-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
  filter: blur(1em);
  transform: translateY(105%) rotateX(95deg) scale(1, 0.35);
  background: var(--neon-color);
  pointer-events: none;
}

.page-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--neon-color);
  box-shadow: 0 0 .5em 0.2em var(--neon-color);
  transition: opacity 100ms linear;
}


.page-btn:hover {
  color: var(--primary-text);
  text-shadow: none;
  animation: none;
}

.page-btn:hover::after {
  opacity: 1;
}


select.form-control{
    font-size: 12px;
    padding: 5px!important;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 4px;
    width: 200px;
}

.form-group{
  margin-bottom: .5em;
}

.form-group.check-input{
  margin-bottom: 4px;
  width: 200px;
  border-radius: 5px;
  font-size: 12px;
  padding: 10px 0px!important;
  display: flex;
  gap:1em;
  align-items: center;
  color: white;
}

.form-group.check-input label {
  margin-left: 1em;
}

@keyframes neon-faulty-letter-animation {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 0.1;
  }

  4% {
    opacity: 0.5;
  }

  19% {
    opacity: 0.5;
  }

  21% {
    opacity: 0.1;
  }

  23% {
    opacity: 1;
  }

  80% {
    opacity: 0.5;
  }

  83% {
    opacity: 0.4;
  }

  87% {
    opacity: 1;
  }
}


@keyframes neon-sign-text-animation {
  0% {
    text-shadow: 0 0 .0125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  2% {
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  8% {
    text-shadow: 0 0 0.0125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  9% {
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  12% {
    text-shadow: 0 0 0.0125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  20% {
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  25% {
    text-shadow: 0 0 0.0375em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  30% {
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  70% {
    text-shadow: 0 0 0.04625em hsl(0 0% 100% / 0.3), 0 0 0.045em var(--neon-color);
  }

  72% {
    text-shadow: 0 0 0.025em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  77% {
    text-shadow: 0 0 0.1125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }

  100% {
    text-shadow: 0 0 0.1125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--neon-color);
  }
}

@keyframes neon-text-animation {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  8% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }

  20% {
    opacity: 1;
  }

  25% {
    opacity: 0.3;
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }

  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.9;
  }
}

@keyframes neon-border-animation {
  0% {
    opacity: 0.7;
  }

  2% {
    opacity: 1;
  }

  4% {
    opacity: 0.7;
  }

  8% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.mt-30{
  margin-top:30px;
}

/* @media only screen and (max-width: 600px) {
  .neon-btn {
    font-size: 1em;
  }
} */