<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slot-machine-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slot-machine{
  display: inline-block;
  position: relative;
  opacity: 0;
  height: 300px;
}
.slot-machine-container{
  width : 1200px;
  height : 300px;
  border-style : solid;
  border-color : hsl(0,10%,50%) hsl(0,20%,50%) hsl(0,10%,50%) hsl(0,20%,50%);
  border-width : 15px;
  display : flex;
  background: linear-gradient(to bottom, #696992 0%, #afb0b7 20%, #e9e9e9 35%, #8f9e90 69%, #e7e7e7 100%);
  box-shadow: inset 0 0 50px #000000;
  position: relative;
  overflow: hidden;
  float: left;
  background-clip: content-box;
}
.slot-machine-container:before{
  content: '';
  position: absolute;
  width: 100%;
  top : calc(50% - 20px);
  left: 0;
  border-style: solid;
  border-width: 20px 20px;
  border-color: transparent hsla(0,70%,50%,0.75) transparent hsla(0,70%,50%,0.75);
  height : 2px;
  background-color: rgba(250,250,250,0.5);
  overflow: hidden;
  z-index: 1;
  background-clip: content-box;
}
.slot-machine-container:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 300px;
  background : linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0) 80%,rgba(0,0,0,0.8) 100%);
}
.slot-machine-col{
  width: 100%;
}
.slot-machine-row{
  border-style: solid;
  border-color : #eee;
  border-width: 2px;
}
.slot-machine-row:after{
  content: '';
  display: block;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slot-machine .seven:after      {background-image: url("../images/seven.svg");}
.slot-machine .lemon:after      {background-image: url("../images/lemon.svg");}
.slot-machine .cherry:after     {background-image: url("../images/cherry.svg");}
.slot-machine .watermelon:after {background-image: url("../images/watermelon.svg");}
.slot-machine .banana:after     {background-image: url("../images/banana.svg");}
.slot-machine .bar:after        {background-image: url("../images/bar.svg");}
.slot-machine .prune:after      {background-image: url("../images/prune.svg");}
.slot-machine .bigwin:after     {background-image: url("../images/bigwin.svg");}
.slot-machine .orange:after     {background-image: url("../images/orange.svg");}
/*-------------=== winner style ===-------------*/
.slot-machine .winner{
  background-color: transparent;
  -webkit-transition: transform 0.1s linear,background-color 0.1s ease;
  -moz-transition: transform 0.1s linear,background-color 0.1s ease;
  -o-transition: transform 0.1s linear,background-color 0.1s ease;
  transition: transform 0.1s linear,background-color 0.1s ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.slot-machine .winner.active{
  -webkit-transition: transform 0.1s linear,background-color 0.5s ease;
  -moz-transition: transform 0.1s linear,background-color 0.5s ease;
  -o-transition: transform 0.1s linear,background-color 0.5s ease;
  transition: transform 0.1s linear,background-color 0.5s ease;
  background-color: rgba(0,0,0,0.5);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.slot-machine .winner,.slot-machine .winner:before,.slot-machine .winner:after{
  position: absolute;
  top: 0;
  left :0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  z-index: 3;
}
.slot-machine .winner:before,.slot-machine .winner:after{
  width: 100%;
  height: 100%;
  /* top : -25vw; */
}
.slot-machine .winner:before{
  background : url('../images/winner2.svg') no-repeat center;
  background-size: cover;
  -webkit-animation: rotateBackground 12s linear infinite;
  -moz-animation:    rotateBackground 12s linear infinite;
  -o-animation:      rotateBackground 12s linear infinite;
  animation:         rotateBackground 12s linear infinite;
}
.slot-machine .winner:after{
  background : url('../images/winner1.svg') no-repeat center;
  background-size: 50% 50%;
  -webkit-animation: scaleForeground 2s linear infinite;
  -moz-animation:    scaleForeground 2s linear infinite;
  -o-animation:      scaleForeground 2s linear infinite;
  animation:         scaleForeground 2s linear infinite;
}
@-webkit-keyframes rotateBackground {
  100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotateBackground {
  100% { -moz-transform: rotate(360deg); }
}
@-o-keyframes rotateBackground {
  100% { -o-transform: rotate(360deg); }
}
@keyframes rotateBackground {
  100% { transform: rotate(360deg); }
}
@-webkit-keyframes scaleForeground {
  50% { -webkit-transform: scale(0.5); }
}
@-moz-keyframes scaleForeground {
  50% { -moz-transform: scale(0.5); }
}
@-o-keyframes scaleForeground {
  50% { -o-transform: scale(0.5); }
}
@keyframes scaleForeground {
  50% { transform: scale(0.5); }
}
/*-----------------------------------------------*/
.slot-machine .handle{
  position: relative;
  float: left;
  vertical-align: top;
  height : 60px;
  margin-top : calc(50% - 20px);
  width : 15px;
  border-radius: 0 5px 5px 0/20px;
  border : 1px solid rgba(189, 160, 112, 0.5);
  background : linear-gradient(to bottom, #CD9819 0%,#f5f5f5 20%,#e2ba78 67%, #b6783d 90%, #CD9819 100%);
}
.slot-machine .handle,.slot-machine .handle:before,.slot-machine .handle:after{
  transition: all 0.2s linear;
  cursor: pointer;
}
.slot-machine .handle:before,.slot-machine .handle:after{
  content: '';
  display: block;
  position: absolute;
}
.slot-machine .handle:before{
  border-style: solid;
  border-width: 1px;
  border-color: rgba(163,126,67,0.1);
  background: linear-gradient(to right, #f5d6b1 0%, #cc9310 20%,#f1e767 60%,#f5f5f5 90%,#f1e767 100%);
  width: 8px;
  height: 80px;
  bottom: 30px;
  right: -10px;
  border-bottom-right-radius: 10px 8px;
}
.slot-machine .handle:after{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: -64px;
  right: -17px;
  border: 1px solid rgba(204,147,16,0.3);
  background: radial-gradient(ellipse at 75% 25%, #ffffff 0%,#f1e767 25%,#cc9310 60%,#feb645 91%);
}
.slot-machine .handle.active{
  background-position:0 47px;
}
.slot-machine .handle.active:before{
  height: 0px;
  border-bottom-right-radius: 2px;
  transform: translateY(5px);
}
.slot-machine .handle.active:after{
  transform: translateY(85px);
}</pre></body></html>