<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">


/* accordion-1 */
.accordion-wpgenie{
  position: relative;
  clear: both;
  color: #000;
}
.accordion-wpgenie .head img{ max-width: 100px; max-width: 100px;}

.accordion-wpgenie .head{
  background-color: #f3f5f6;
  color: #000000;
  padding: 20px 30px;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
}

.accordion-wpgenie .arrow{
  color: #3186e1;
  font-size: 60px;
  transition: 0.25s ease;
  opacity: 0.3;
  transform: rotate(-0deg);
  background-image: url(img/angle_down_icon.png);
  background-size: contain;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  height: 64px;
  width: 64px;
}
.accordion-wpgenie .head:hover .arrow{
  background-image: url(img/angle_down_icon_h.png);
}

.accordion-wpgenie .head:hover .arrow{
  opacity: 1;
}

.accordion-wpgenie .head:hover{
  background-color: #3186e1;
}
.accordion-wpgenie .active{
  background-color: #babfc3;
}

.accordion-wpgenie .arrow-animate{
  transform: rotate(-180deg);
  opacity: 1;
}

.accordion-wpgenie .content{
  background-color: #f3f5f6;
  display: none;
  padding: 20px 30px;
  color: #222222;
}

.accordion__item {
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
}

.accordion__item h4{
 font-weight: bold;
 color: #000;
}

.accordion__item .wrapper{
  width: 100%;
  padding: 20px;
}
.accordion__item.won, .ticket-top.won{
  filter: grayscale(100%);
}

.accordion__item .content .wrapper{display: grid; grid-gap:10px; grid-template-columns: repeat(4, 1fr) !important;}

.accordion__item .content .wrapper .ticket-top{
  display: flex;
  flex-direction: column;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  justify-content: space-between;
  font-weight: 700;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);}

  .accordion__item .content .wrapper .ticket-number{ padding: 10px;}
  .accordion__item .content .wrapper .ticket-bottom{ padding: 10px; background: #3085e1; color: #ffffff; border-radius: 0 0 10px 10px;}
  .accordion__item .content .wrapper .won{color: #bcc2c7 ;}

  .accordion__item .content .wrapper .won .ticket-bottom{ padding: 10px; background: #bcc2c7; color: #ffffff; border-radius: 0 0 10px 10px;}


  .accordion-wpgenie .head .status{
    background: #aee1fd;
    padding: 5px 10px;
    border-radius: 5px;
}

.accordion-wpgenie .woocommerce-pagination{float: none;}

.accordion-wpgenie .busy {opacity: 0.3;}
</pre></body></html>