/*!
 * jQuery Slot Machine v3.0.1
 * https:// github.com/josex2r/jQuery-SlotMachine
 *
 * Copyright 2014 Jose Luis Represa
 * Released under the MIT license
 */
.slotMachineNoTransition {
    transition: none !important;
}

.slotMachineBlurFast {
    filter: blur(5px);
}

.slotMachineBlurMedium {
    filter: blur(3px);
}

.slotMachineBlurSlow {
    filter: blur(2px);
}

.slotMachineBlurTurtle {
    filter: blur(1px);
}

.slotMachineGradient {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(25%, rgba(0,0,0,1)), color-stop(75%, rgba(0,0,0,1)), color-stop(100%, rgba(0,0,0,0)) );
    mask: url("data:image/svg+xml;utf8,<svg version="1.1" xmlns="http:// www.w3.org/2000/svg" width="0" height="0"><mask id="slotMachineFadeMask" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"><linearGradient id="slotMachineFadeGradient" gradientUnits="objectBoundingBox" x="0" y="0"><stop stop-color="white" stop-opacity="0" offset="0"></stop><stop stop-color="white" stop-opacity="1" offset="0.25"></stop><stop stop-color="white" stop-opacity="1" offset="0.75"></stop><stop stop-color="white" stop-opacity="0" offset="1"></stop></linearGradient><rect x="0" y="-1" width="1" height="1" transform="rotate(90)" fill="url(#slotMachineFadeMask)"></rect></mask></svg>#slotMachineFadeMask");
}

.numbersContainer{position:relative;margin:10px auto;width:550px;}
.lottoNumbersOuter{float:left;text-align:center;width:50px;}
.lottoNumbers {
  overflow: hidden;
  height: 40px;
  display: inline-block;
  /*border:1px solid #333;*/
  border-radius:50%;
  padding:5px 15px;
  background:#2580aa;
  margin-right:1px;
  
}
.lottoNumbers span {
  clear:both;
  float:left;
  line-height:30px;
  font-weight:bold;
  color:#fff;
}
.button{padding:7px 10px;}
.button:active{
  padding-top:9px;padding-bottom:5px;
}
select.picks,select:focus{padding:5px;border:1px solid #ccc;outline:0;}
select.picks.active{background:#7dc116;border:1px solid #7dc116;color:#fff;font-weight:bold;}

.button.active{background:#2580aa;color:#fff;}