/*!	Theme Name: Drapes Framework  */
@font-face {
  font-family: 'Inter UI';
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/Inter-UI-Regular.woff2") format("woff2"), url("./fonts/Inter-UI-Regular.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/Inter-UI-Italic.woff2") format("woff2"), url("./fonts/Inter-UI-Italic.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/Inter-UI-Medium.woff2") format("woff2"), url("./fonts/Inter-UI-Medium.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: italic;
  font-weight: 500;
  src: url("./fonts/Inter-UI-MediumItalic.woff2") format("woff2"), url("./fonts/Inter-UI-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/Inter-UI-Bold.woff2") format("woff2"), url("./fonts/Inter-UI-Bold.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: italic;
  font-weight: 700;
  src: url("./fonts/Inter-UI-BoldItalic.woff2") format("woff2"), url("./fonts/Inter-UI-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/Inter-UI-Black.woff2") format("woff2"), url("./fonts/Inter-UI-Black.woff") format("woff");
}
@font-face {
  font-family: 'Inter UI';
  font-style: italic;
  font-weight: 900;
  src: url("./fonts/Inter-UI-BlackItalic.woff2") format("woff2"), url("./fonts/Inter-UI-BlackItalic.woff") format("woff");
}
html {
  font-family: 'Lato', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  background: #202226;
}
html body {
  color: #282b35;
}
.responsive-iframe {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 20px;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
html .wp-block-column {
  flex-basis: auto;
  min-width: 220px;
}
body {
  font-family: 'Lato', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
  color: #ef3e42;
}
a:link, a:visited {
  color: #ef3e42;
}
a:hover, a:active {
  color: #202226;
}
.grid-container {
  max-width: 80rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  border-top-color: rgba(255, 255, 255, .5);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  top: auto;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #282b35;
  border: 0;
  font-size: 14px;
  margin-top: -15px;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul li {
  color: white;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul li a {
  color: rgba(255, 255, 255, .6);
}
.dropdown.menu > li.is-dropdown-submenu-parent ul li a:hover {
  color: white;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul li a::after {
  border-left-color: rgba(255, 255, 255, .7);
}
.dropdown.menu > li.is-dropdown-submenu-parent ul ul {
  opacity: 0.9;
}
.dropdown.menu > li.is-active > a {
  color: #ef3e42;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html.ie .social-circle, html.ie .footer {
  margin-top: 0px !important;
  padding-top: 0px !important;
}
.animated {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-200px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-200px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}
.animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-200px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-200px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px);
  }
}
.animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
header {
  position: fixed;
  z-index: 5 !important;
}
header .login-links .players_links {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  header .login-links .players_links {
    display: inline-block !important;
  }
}
.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-links > li {
  display: inline-block;
  margin-bottom: 0;
}
.social-links > li > a {
  display: block;
  padding: 6px;
}
.show-for-large li.sports-wagering {
  display: none !important;
}
.off-canvas.position-right {
  background: #fff;
}
.off-canvas ul.menu.dropdown li {
  width: 100%;
  font-size: 17px;
}
.off-canvas ul.menu.dropdown li a::after {
  display: none;
}
.off-canvas ul.menu.dropdown li ul.sub-menu.submenu {
  position: relative;
  margin: 0px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul {
  margin-top: -15px;
}
.dropdown.menu > li.is-dropdown-submenu-parent ul ul {
  margin-top: 0px;
}
.social-bar {
  background: #202226;
  color: white;
  padding: 7px;
}
.social-bar > .grid-container {
  padding-top: 10px;
}
.social-bar ul > li {
  margin-bottom: 0;
  vertical-align: top;
}
.social-bar .players_circle a {
  padding: 5px 20px;
}
.social-bar .players_links a {
  padding: 10px;
}
.social-bar .dashboard a {
  padding-top: 10px;
}
.social-bar .social-links li a {
  color: white;
  padding: 10px;
}
.social-bar .social-links li a:hover {
  color: #ef3e42;
}
.social-bar .social-links li:last-child > a {
  padding: 0 15px;
}
.social-bar .social-links .button {
  margin-bottom: 0;
  padding: 14.5px 30px;
}
.social-bar .login-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-bar .login-links > li {
  display: inline-block;
}
.social-bar .login-links > li.players_circle a svg {
  width: 78px;
  height: 40px;
}
.social-bar .login-links > li > a {
  display: block;
  color: white;
  font-size: 16px;
}
.social-bar .login-links > li > a .fas {
  opacity: 0.5;
  margin-right: 2px;
}
.social-bar .login-links > li > a:hover {
  color: #ef3e42;
}
.logo-bar {
  background: #282b35;
  border-bottom-right-radius: 2000px 50px;
  border-bottom-left-radius: 2000px 50px;
  height: 100px;
}
.logo-bar ul ul {
  display: none;
}
.logo-bar .left-menu, .logo-bar .right-menu {
  margin: 0;
  list-style: none;
  padding: 0;
  font-size: 0;
}
.logo-bar .left-menu > li, .logo-bar .right-menu > li {
  display: inline-block;
  width: calc(100% / 3);
  margin-bottom: 0;
  font-size: 18px;
  vertical-align: top;
  background: transparent;
}
.logo-bar .left-menu > li > a, .logo-bar .right-menu > li > a {
  display: block;
  text-align: center;
  color: white;
  font-weight: normal;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}
@media screen and (min-width: 1200px) {
  .logo-bar .left-menu > li > a, .logo-bar .right-menu > li > a {
    font-size: 16px;
  }
}
.logo-bar .left-menu > li > a span, .logo-bar .right-menu > li > a span {
  display: inline-block;
}
.logo-bar .left-menu > li:hover > a, .logo-bar .right-menu > li:hover > a {
  color: #ef3e42;
}
.logo-bar .left-menu > li.active > a, .logo-bar .right-menu > li.active > a {
  font-weight: 900;
}
.logo-bar .left-menu > li.active:hover > a, .logo-bar .right-menu > li.active:hover > a {
  color: white;
}
.logo-bar .logo img {
  max-width: 180px;
}
.logo-bar--desktop .logo {
  text-align: center;
  position: relative;
  min-width: 180px;
}
.logo-bar--desktop .logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -1px;
}
.logo-bar--mobile .logo img {
  max-width: 120px;
  margin-top: 15px;
}
.logo-bar--mobile .mobile-button {
  background: transparent;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 30px;
}
.logo-bar--mobile .mobile-button:hover {
  background: transparent !important;
}
.logo-bar--mobile .mobile-button .fa-ellipsis-v {
  color: white;
  font-size: 22px;
  text-align: center;
  cursor: pointer;
  background: transparent;
}
.logo-bar--mobile .mobile-button::before {
  display: none;
}
.sticky.is-anchored {
  position: fixed;
  top: 0;
}
.footer {
  background: #202226;
  color: #7b7e89;
  /*
   .home & {
   margin-top: -200px;
   z-index: 0;
   padding-top: 200px;
   }
   */
}
.footer .footer-sectionals {
  padding: 25px 0;
  border-bottom: 1px solid #353535;
}
.footer .footer-sectionals > .cell {
  padding: 25px 30px;
  padding-top: 0;
  border-right: 1px solid #353535;
}
.footer .footer-sectionals > .cell:last-child {
  border-right: 0;
}
.footer .footer-sectionals h2 {
  font-size: 16px;
  color: #8c8f98;
  font-weight: 900;
}
.footer .footer-sectionals ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-sectionals ul > li > a {
  color: #d5d5d5;
  font-size: 18px;
  font-weight: bold;
}
.footer a {
  color: #d5d5d5;
}
.footer .top-sections > h2 {
  color: #a9a9a9;
  font-size: 18px;
  font-weight: bold;
  padding-left: 15px;
  margin-bottom: 0;
}
.footer .top-sections h3 {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}
.footer .top-sections .dark-bg {
  background: #191b20;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
}
.footer .top-sections > .grid-x > .cell {
  padding: 15px;
}
.footer .top-sections .news-section__content a {
  color: #ef3e42;
}
.footer .top-sections .slider-controls {
  color: #ef3e42;
}
.footer .top-sections .slider-controls svg {
  margin: 5px;
}
@media screen and (min-width: 640px) {
  .footer .top-sections .footer-ad-space {
    min-width: 500px;
  }
}
.footer .copyright {
  padding: 25px;
  padding-bottom: 0;
  text-align: center;
  font-size: 16px;
}
.footer .copyright__large {
  color: #d8d8d8;
  font-size: 18px;
  font-weight: 900;
  display: block;
  padding-top: 10px;
}
.footer .logo {
  width: 100px;
}
form input[type="submit"], .nf-field .submit-wrap input.nf-element, .button {
  background: #e4342d;
  color: white;
  border-radius: 100px;
  border: 0px;
  text-transform: none;
  font-size: 16px;
  height: auto;
  line-height: normal;
  padding: 13px 25px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 900;
  cursor: pointer;
}
form input[type="submit"]::before, .nf-field .submit-wrap input.nf-element::before, .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
  z-index: -1;
  border-radius: 0;
}
form input[type="submit"]:hover, .nf-field .submit-wrap input.nf-element:hover, .button:hover {
  color: #ef3e42;
  background: white;
}
form input[type="submit"]:hover::before, .nf-field .submit-wrap input.nf-element:hover::before, .button:hover::before {
  opacity: 1;
}
main .block .grid-container article a.primary-button {
  color: white;
  border: 2px solid #fff;
}
main .block .grid-container article a.primary-button .primary-button__title {
  display: inline-block;
  padding-right: 10px;
}
main .block .grid-container article a.primary-button:hover {
  color: #ef3e42;
  border: 2px solid #ef3e42;
}
.circle_logo {
  width: 90%;
  max-width: 320px;
  display: block;
  margin: 20px auto;
}
.hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: -100px;
  padding-top: 150px;
  padding-bottom: 350px;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 1024px) {
  .hero {
    padding-bottom: 0%;
    padding-top: 12%;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
.home .reveal-overlay .medium.reveal {
  min-height: 1px !important;
  height: auto !important;
  top: 30% !important;
}
.sectional {
  padding: 15px;
}
.sectional .sectional-content {
  margin-bottom: auto;
}
.sectional img {
  width: 100%;
  height: auto;
}
.block {
  padding: 80px 0;
}
.pagination .current {
  background: #ef3e42;
}
.games {
  list-style: none;
  padding: 0;
  margin: 0;
}
.games > li {
  padding: 15px;
}
.games > li.cell.powerball .highlighted span {
  background: #e4342d;
  color: #fff;
}
.games > li.cell.megamillions .highlighted span, .games > li.cell.megamillions .button {
  background: #004fa3;
  color: #fff;
}
.games > li.cell.megamillions .button:hover {
  color: #004fa3;
}
.games > li.cell.lottoamerica .highlighted span, .games > li.cell.lottoamerica .button {
  background: #009ada;
  color: #fff;
}
.games > li.cell.lottoamerica .button:hover {
  color: #009ada;
}
.games > li.cell.daily3 .button {
  background: #fff;
  color: #ef4135;
  border: 5px solid #eee;
}
.games > li.cell.daily4 .button {
  background: #fff;
  color: #ae59a2;
  border: 5px solid #eee;
}
.games > li.cell.cash25 .button {
  background: #fff;
  color: #4bb965;
  border: 5px solid #eee;
}
.games > li.cell.keno .button {
  background: #fff;
  color: #004fa3;
  border: 5px solid #eee;
}
.games > li .game {
  background: white;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}
.games > li .game .game-main {
  padding: 25px;
}
.games > li .game .game-title {
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  opacity: 0.8;
  margin: 0;
  padding-top: 15px;
}
.games > li .game .game-amount {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .games > li .game .game-amount {
    font-size: 24px;
  }
}
.games > li .game .game-drawing {
  padding: 5px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
@media screen and (min-width: 640px) {
  .games > li .game .game-drawing {
    padding: 15px 5px;
  }
}
.games > li .game .game-drawing__numbers {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
@media screen and (min-width: 640px) {
  .games > li .game .game-drawing__numbers {
    padding: 25px 0px;
  }
}
.games > li .game .game-drawing__numbers > li {
  display: inline-block;
}
.games > li .game .game-drawing__numbers > li > span {
  display: block;
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: rgba(0, 0, 0, .1);
  margin: 2px;
}
.games > li .game .game-cta {
  background: rgba(0, 0, 0, .05);
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 25px;
}
.games > li .game .game-cta .button {
  margin-bottom: 0;
}
.games > li .game .game-modifier {
  font-weight: bold;
}
.games > li .game .game-details-link a {
  color: #333;
  padding-bottom: 10px;
  display: block;
  font-size: 13px;
}
.games__lower div.game .game-logo {
  height: 40px;
  width: auto;
}
.games__lower .keno .game .game-logo {
  height: 150px;
}
.games:first-child > li .game .game-logo {
  height: 70px;
  width: auto;
  margin-top: 20px;
}
.games--red .button {
  background: #e2241c;
}
.games--red .button::before {
  content: '';
  background: #e2241c;
  background: linear-gradient(90deg, #e2241c 0%, #b51d16 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.social-circle {
  background: url(./img/bubbles-gray.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  padding-top: 0px;
  padding-bottom: 130px;
  margin-top: -300px;
  z-index: 3;
}
@media screen and (min-width: 640px) {
  .social-circle {
    padding-top: 200px;
    padding-bottom: 300px;
  }
}
.social-circle > .grid-container > .grid-x {
  padding-top: 80px;
}
.social-circle__slider-image {
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-circle__slider-image::after {
  content: "";
  display: table;
  clear: both;
}
.social-circle__slider-image > li {
  position: relative;
  top: 0;
  left: 100%;
  margin-left: -100%;
  float: left;
  width: 100%;
  background-size: cover;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.social-circle__slider-image > li > div {
  display: block;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.social-circle__slider-image > li > div span {
  font-size: 18px;
  color: rgba(0, 0, 0, 0);
}
.social-circle__slider-image > li > div h3 {
  font-weight: bold;
  color: rgba(0, 0, 0, 0);
  margin: 0;
  font-size: 18px;
}
.social-circle__slider-image > li > div > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.social-circle__slider-image > li > div > a > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.social-circle__slider-image > li.active-slide {
  opacity: 1;
}
.social-circle__slider-controls {
  list-style: none;
  padding: 0;
  padding-top: 20px;
  margin: 0;
}
.social-circle__slider-controls > li {
  display: inline-block;
  padding: 20px;
}
.social-circle__slider-controls > li > a {
  display: block;
  padding-bottom: 100%;
  border-radius: 200px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.social-circle__slider-controls > li > a.active-slide-control {
  opacity: 1;
  filter: grayscale(0%);
}
.social-circle__social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  padding-bottom: 15px;
}
.social-circle__social-links > li {
  display: inline-block;
}
.social-circle__social-links > li > a {
  display: block;
  /*
   width: 40px;
   height: 40px;
   */
  text-align: center;
  color: white;
  background: #757070;
  line-height: 40px;
  border-radius: 100px;
  margin: 10px;
  padding: 5px 30px;
  transition: all 0.3s ease-in-out;
}
.social-circle__social-links > li > a:hover {
  background: #ef3e42;
}
.social-circle__slider {
  position: relative;
}
.social-circle .slider-arrow {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  background: white;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .social-circle .slider-arrow {
    top: 50%;
  }
}
.social-circle .slider-arrow--left {
  left: 10px;
}
.social-circle .slider-arrow--right {
  right: 10px;
}
.new-scratchoffs {
  background: url(./img/bubbles-white.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  padding-top: 250px;
  padding-bottom: 200px;
  margin-top: -200px;
  z-index: 2;
  text-align: center;
}
.new-scratchoffs .button {
  margin-top: 50px;
}
@media screen and (min-width: 1440px) {
  .new-scratchoffs {
    padding-bottom: 300px;
  }
}
.prices {
  margin: 0;
  list-style: none;
  padding: 0;
  text-align: center;
  padding-top: 30px;
}
.prices > li {
  background: #e8e8e8;
  border-radius: 200px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.prices > li span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8e8e8e;
  font-weight: bold;
}
.prices > li.active {
  background: #3bb02e;
}
.prices > li.active span {
  color: white;
}
@media screen and (min-width: 640px) {
  .prices > li {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 10px;
  }
  .prices > li::before {
    content: '';
    position: absolute;
    z-index: -1;
    background: #e8e8e8;
    width: 25px;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
  }
  .prices > li:first-child::before {
    display: none;
  }
}
.tickets {
  padding-top: 40px;
  /*
   &:not(.active) {
   display: none;
   }
   */
}
.tickets .cell {
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .tickets .cell {
    padding: 25px;
  }
}
.tickets img {
  width: 100%;
}
.winners-circle {
  background: url(./img/bubbles-dark-gray.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  padding-top: 300px;
  padding-bottom: 150px;
  margin-top: -200px;
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .winners-circle {
    padding-bottom: 300px;
  }
}
.winners {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  /*
   winner.odd{
   &__inner{
   transform: translateY(50px);		       
   } 
   }
   */
}
.winners .winner.even .winner__inner {
  transform: translateY(60px);
}
.winners .winner.odd .winner__inner {
  transform: translateY(10px);
}
.winners .winner {
  display: inline-block;
  padding: 15px;
  padding: 100px 0;
}
.winners .winner:focus {
  outline: 0;
}
.winners .winner:focus .winner__inner {
  box-shadow: 0 2px 15px rgba(239, 62, 66, .2);
}
.winners .winner__inner {
  background: white;
  border-radius: 100%;
  overflow: hidden;
  width: 250px;
  height: 250px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .02);
  margin: 0 auto;
}
.winners .winner-logo {
  padding: 15px;
  padding-top: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  text-align: center;
}
.winners .winner-logo img {
  margin: 0 auto;
}
.winners .winner-information {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  padding: 15px;
}
.winners .winner-information__amount {
  color: #269c19;
  font-weight: 900;
}
.winners .winner-information__date {
  color: #999;
  font-style: italic;
}
.winners .winner-information__name span, .winners .winner-information__location span {
  font-weight: 900;
}
.winners .slick-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, .1);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.winners .slick-prev {
  left: 10px;
}
.winners .slick-next {
  right: 10px;
}
.special-head {
  position: relative;
  background: url(./img/dots.png) no-repeat bottom center;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 20px;
  background-size: 32px 4px;
}
.special-head--left {
  background-position: bottom left;
  text-align: left;
  font-size: 48px;
  font-weight: 100 !important;
  text-transform: none;
  margin-bottom: 30px;
}
form label {
  font-weight: 900;
  font-style: italic;
  font-size: 17px;
  text-transform: uppercase;
  color: rgba(58, 58, 58, .5);
}
form label > span {
  padding-bottom: 8px;
  display: block;
}
form label > span.ninja-forms-req-symbol {
  display: inline-block;
  padding: 0px 5px;
}
form .select-label {
  position: relative;
  cursor: pointer;
}
form .select-label .fa-chevron-down {
  position: absolute;
  bottom: 32px;
  right: 30px;
}
form select {
  border: 0;
  border-radius: 100px;
  background: #d8d8d8;
  padding: 12px 20px;
  height: auto;
}
form select:focus {
  border: 0;
}
form input[type=text] {
  border-radius: 100px;
  height: 45px;
  min-width: 250px;
  padding-left: 15px;
  border: 2px solid #dfdfdf;
  box-shadow: 0 0 0;
  transition: all 0.3s ease-in-out;
}
form input[type=text]:focus {
  outline: 0;
  border: 2px solid #ef3e42;
}
form .search-field {
  position: relative;
}
form .search-field .button {
  background: transparent;
  color: #ef3e42;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  padding: 13px 20px;
}
form .search-field .button::before {
  display: none;
}
form .search-field .button:hover {
  background: transparent;
}
.table {
  display: table;
  width: 100%;
  margin: 30px 0;
}
.table .table-row {
  display: table-row;
}
.table .table-row:nth-child(even) {
  background: #f4f4f4;
}
.table .table-row:nth-child(odd) {
  background: #fafafa;
}
.table .table-row:last-child .table-cell:first-child {
  border-bottom-left-radius: 20px;
}
.table .table-row:last-child .table-cell:last-child {
  border-bottom-right-radius: 20px;
}
.table .table-cell {
  display: table-cell;
  padding: 15px;
  vertical-align: middle;
}
.table .table-cell .mobile-header {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.table .table-cell:nth-child(even) {
  background: rgba(0, 0, 0, .02);
}
.table .table-head {
  display: table-header-group;
  background: transparent !important;
}
.table .table-head .table-cell {
  background: transparent;
  border-bottom: 2px solid #979797;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  color: #747474;
}
.table--fixed {
  table-layout: fixed;
}
.table--desktop {
  display: none;
}
.table--mobile .mobile-header {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.table--mobile .table-row:first-child .table-cell:first-child {
  border-top-left-radius: 20px;
}
.table--mobile .table-row:first-child .table-cell:last-child {
  border-top-right-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .table--desktop {
    display: table;
  }
  .table--mobile {
    display: none;
  }
}
.search-block {
  background: rgba(0, 0, 0, .1);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  /*
   margin-top: -300px;
   padding-top: 300px;
   padding-bottom: 200px;
   */
  z-index: 2;
  padding: 50px 0px;
}
.search-block__form {
  text-align: center;
}
.search-block__form select {
  background: #fff;
}
.search-block__form .grid-x {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 30px;
  padding-top: 70px;
  margin-bottom: 60px;
}
.search-block__form .grid-x .cell {
  padding: 15px;
  text-align: left;
}
.search-block__form .button--reset, .search-block__form .button--submit {
  margin: 7px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, .04);
}
.search-block__form .button--reset {
  background: white;
  color: #ef3e42;
}
.search-block__form .button--reset svg {
  margin-right: 12px;
  color: rgba(0, 0, 0, .5);
}
.search-block__form .button--submit svg {
  margin-left: 12px;
}
@media screen and (min-width: 1200px) {
  .search-block {
    padding: 100px 0px;
  }
}
.card__instant a.game {
  padding: 10px;
  display: block;
  position: relative;
}
.card__instant a.game strong, .card__instant a.game span {
  display: inline-block;
  vertical-align: middle;
}
.card__instant a.game strong, .card__instant a.game span {
  padding-right: 10px;
}
.card__instant a.game strong.title {
  color: #333;
}
.card__instant a.game img {
  display: block;
  margin: 10px 0px;
  width: 90%;
  max-width: 250px;
}
.news-circle {
  padding: 20px 0px 100px 0px;
}
.news-circle .grid-container .grid-x.grid-padding-x a.button__news {
  margin: 100px auto 0px auto;
}
html {
  background: #fff;
}
.content-wrap {
  text-align: left;
}
.content-wrap h1, .content-wrap h2, .content-wrap h3, .content-wrap h4, .content-wrap h5, .content-wrap h6 {
  font-weight: 900;
}
.content-wrap h3, .content-wrap h4, .content-wrap h5, .content-wrap h6 {
  margin-top: 45px;
}
.content-wrap h6 {
  font-weight: normal;
  margin-top: 20px;
  font-size: 14px;
}
.interior-wrap {
  /*     background: url(#{$theme-dir}img/bubbles-white-alt.svg); */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  /*     padding-bottom: 200px; */
  margin-top: -200px;
  z-index: 2;
}
.interior-wrap + .footer {
  /*         margin-top: -200px; */
  z-index: 0;
  /*         padding-top: 280px; */
}
.page-template-template-financial-report-page-php .cell ul.thumbs li {
  display: inline-block;
  max-width: 320px;
  width: 90%;
  vertical-align: top;
}
.page-template-template-financial-report-page-php .cell ul.thumbs li a img {
  height: 300px;
  width: auto;
}
body .block .grid-container article ul li h4 {
  line-height: 1em;
  margin: 10px 0px;
}
body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li {
  background-image: url('/wp-content/themes/lotto/img/plus-solid.svg');
  background-position: left center;
  background-size: 15px;
  background-repeat: no-repeat;
  line-height: 30px;
  padding-left: 30px;
}
body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li h4 {
  cursor: pointer;
}
body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li.open {
  background-image: url('/wp-content/themes/lotto/img/minus-solid.svg');
  background-position: left top;
}
body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li.open p, body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li.open ul {
  display: block;
}
body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li p, body.page-template-template-faq-page.page-template-template-faq-page-php section.block > div.grid-container > article > ul > li ul {
  display: none;
}
/* Page-Specific Stuff */
body.page-id-77 article iframe {
  width: 100%;
}
body.page.page-id-71 main .block a img {
  width: 90%;
  /* 					max-width: 480px; */
}
main .block article ul.thumbs {
  text-align: left;
}
main .block article ul.thumbs li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
main .block article ul.thumbs li a {
  display: block;
  padding: 20px 20px 20px 0px;
}
article.post-45.page .wp-block-column a {
  display: block;
  padding: 10px;
}
article.post-45.page .wp-block-column a img {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
article.post-45.page .wp-block-column a:hover img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .7);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page-template-template-interior-page.hd-sky-cam .cell.medium-4 a img {
  width: 90%;
}
body.page.page-id-77 .block article h3 {
  cursor: pointer;
  color: #e4342d;
}
body.page.page-id-77 .block article h3:hover {
  color: #000;
}
article.post-38.page ul li a {
  display: inline-block;
}
.off-canvas-wrapper {
  z-index: 1;
}
/*
 footer.footer,
 main{
 position: relative;
 z-index: 9;
 }
 */
.page.page-id-114 p a img {
  margin: 20px 0px;
}
article.post-183.page form.request-form {
  width: 90%;
  max-width: 320px;
}
.page-template-template-mediacenter-page .grid-container .cell.small-12.medium-4.large-3 h4 {
  margin-top: 20px;
}
.single-draw-games .logo--game img {
  width: 300px;
  height: auto;
}
.single-draw-games #output .tabs-content {
  overflow: scroll;
}
@media screen and (min-width: 1024px) {
  .single-draw-games #output .tabs-content {
    overflow: visible;
  }
}
.single-draw-games .search-block {
  margin: 50px 0px;
}
.single-draw-games .intro {
  /*         background: #eee; */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  /*
   margin-top: -300px;
   padding-top: 420px;
   padding-bottom: 200px;
   */
  z-index: 3;
}
.single-draw-games .intro form {
  padding-top: 50px;
}
@media screen and (min-width: 1024px) {
  .single-draw-games .intro form {
    padding-top: 0;
  }
}
.single-draw-games .intro .game-banner {
  background: #e5423b;
  border-radius: 20px;
  box-shadow: inset 0 -10px 0 #e3332b;
  position: relative;
  margin-top: 50px;
  margin-bottom: 150px;
  /*
   &__megamillions{
   background: $megamillions-blue;
   box-shadow: inset 0 -10px 0 darken($megamillions-blue,3);
   svg{
   opacity: 1 !important;
   *{
   fill: $megamillions-blue;
   opacity: 1 !important;
   }
   }
   }
   */
}
.single-draw-games .intro .game-banner > svg {
  position: absolute;
  top: 100%;
  left: 20px;
  margin-top: -15px;
  max-width: 90%;
}
@media screen and (min-width: 640px) {
  .single-draw-games .intro .game-banner > svg {
    margin-top: -10px;
  }
}
.single-draw-games .intro .game-banner .grid-x .grid-x {
  padding: 40px;
  padding-bottom: 50px;
  height: 100%;
}
.single-draw-games .intro .game-banner__contents {
  color: white;
}
.single-draw-games .intro .game-banner__contents span {
  display: block;
}
.single-draw-games .intro .game-banner__contents .button {
  margin-bottom: 0;
  margin-top: 10px;
}
.single-draw-games .intro .game-banner__contents .button--past-winners {
  background: white;
  color: #ef3e42;
}
.single-draw-games .intro .game-banner__contents .button--past-winners svg {
  margin-right: 10px;
  color: rgba(0, 0, 0, .4);
}
.single-draw-games .intro .game-banner__contents .button--history {
  padding: 0;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  background: rgba(0, 0, 0, .5);
  color: #a3a3a3;
}
.single-draw-games .intro .game-banner__contents .game-border {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
@media screen and (min-width: 1024px) {
  .single-draw-games .intro .game-banner__contents .game-border {
    border-bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, .1);
  }
  .single-draw-games .intro .game-banner__contents .button {
    margin-top: 0;
  }
}
.single-draw-games .intro .game-banner .game-jackpot .title {
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
}
.single-draw-games .intro .game-banner .game-jackpot .amount {
  font-weight: 900;
  font-size: 36px;
}
.single-draw-games .intro .game-banner .game-jackpot .power {
  font-weight: bold;
  opacity: 0.5;
}
.single-draw-games .intro .game-banner .game-drawing-results {
  font-size: 14px;
}
.single-draw-games .intro .game-banner .game-drawing-results .numbers {
  list-style: none;
  margin: 0;
  padding: 5px 0;
}
.single-draw-games .intro .game-banner .game-drawing-results .numbers > li {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  line-height: 45px;
  text-align: center;
  background: white;
  color: #ef3e42;
  margin: 5px;
  font-weight: bold;
}
.single-draw-games .intro .game-banner .game-drawing-results .numbers > li.active {
  color: white;
  background: rgba(255, 255, 255, .1);
}
.single-draw-games .intro .game-banner .game-drawing-results .usual-date {
  font-style: italic;
}
.single-draw-games .intro .game-banner .game-drawing-results .date {
  color: rgba(255, 255, 255, .5);
}
.single-draw-games .intro .game-banner .game-drawing-results .date strong {
  color: white;
  font-weight: normal;
}
.single-draw-games .winner-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.single-draw-games .winner-list li {
  padding: 10px;
  border: 1px solid black;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 250px;
}
.single-draw-games .invalid {
  border: 2px solid red;
}
.single-draw-games .draw-game-info {
  /* 		background: #fff; */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  /*
   padding-top: 350px;
   padding-bottom: 250px;
   margin-top: -200px;
   */
  z-index: 1;
  text-align: center;
}
.single-draw-games .draw-game-info .responsive-iframe {
  margin-bottom: 20px;
}
.single-draw-games .draw-game-info .game-payout .payout-table--desktop {
  display: none;
}
.single-draw-games .draw-game-info .game-payout .payout-table--mobile {
  /*
   .cell.shrink{
   -webkit-box-flex: 1;
   -webkit-flex: 1 1 auto;
   -ms-flex: 1  auto;
   flex: 1 1 auto;			            
   }	
   */
}
@media screen and (min-width: 640px) {
  .single-draw-games .draw-game-info .game-payout .payout-table--mobile {
    display: none;
  }
  .single-draw-games .draw-game-info .game-payout .payout-table--desktop {
    display: table;
  }
}
.single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-gray, .single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-plus, .single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-primary {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
}
.single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-gray svg, .single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-plus svg, .single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-primary svg {
  vertical-align: middle;
}
.single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-gray {
  background: rgba(0, 0, 0, .1);
  margin: 0px 7px 7px 0px;
}
.single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-gray:last-child {
  margin-right: 0;
}
.single-draw-games .draw-game-info .game-payout .payout-table .payout-row__cell .circle-primary {
  background: #ef3e42;
}
@media screen and (min-width: 640px) {
  .single-draw-games .draw-game-info__details .cell {
    padding: 35px;
  }
  .single-draw-games .draw-game-info .game-payout {
    padding: 35px;
  }
}
.single-draw-games .grid-container.results .grid-x.hot-cold {
  max-width: 640px;
  width: 90%;
  margin: 0px auto;
}
.single-draw-games .grid-container.results .my-hot-nums {
  max-width: 100%;
  width: 90%;
  display: block;
  margin: 0px auto;
}
.single-draw-games .grid-container.results .my-hot-nums .home-datatables td {
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .single-draw-games .grid-container.results .my-hot-nums .home-datatables td {
    font-size: 14px;
  }
}
.single-draw-games .grid-container.results .play-nums {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.single-draw-games .grid-container.results .play-nums p {
  display: block;
  min-width: 100%;
}
@media screen and (min-width: 1024px) {
  .single-draw-games .grid-container.results .play-nums p {
    min-width: 50px;
  }
}
.single-draw-games .grid-container.results .play-nums input {
  /*             border-radius: 50%; */
  width: 45px;
  height: auto;
  border: 1px solid #eee;
  margin-left: 10px;
  margin-right: 10px;
}
.single-draw-games .grid-container.results .play-nums input.highlight {
  border: 1px solid #e4342d;
}
.single-draw-games .grid-container.results .output {
  display: flex;
  width: 50%;
}
.single-draw-games .grid-container.results .output > table {
  width: 30%;
}
.single-draw-games .footer {
  /*
   margin-top: -200px;
   padding-top: 260px;
   */
  z-index: 0;
}
.single-draw-games form.analyze input[type="text"] {
  min-width: 1px;
  border-radius: 0px;
}
.single-draw-games .tabs-title > a:focus, .single-draw-games .tabs-title > a[aria-selected=true] {
  background: #ef3e42;
  color: #fff;
}
body.keno-bonus ul.numbers li.active {
  font-size: 19px;
}
body.keno-bonus .keno-game td {
  text-align: center;
  border: 1px solid #333;
  padding: 3px;
}
@media screen and (min-width: 640px) {
  body.keno-bonus .keno-game td {
    padding: 10px 3px;
  }
}
body.keno-bonus .keno-game .k-red {
  background: #e4342d;
  color: #fff;
}
body.keno-bonus .keno-search .faded-box {
  background: rgba(0, 0, 0, .2);
  padding: 20px;
  border-radius: 20px;
}
body.keno-bonus .keno-search .faded-box form {
  padding-top: 0px;
}
body.keno-bonus .keno-search > p {
  text-align: right;
  margin: 20px 0px 0px 0px;
}
body.keno-bonus .keno-search .game-banner {
  margin-top: 10px;
  margin-bottom: 0px;
}
.draw-game-search .grid-container.results table td.right {
  text-align: right;
}
.keno-b .grid-x .cell.small-12 img {
  margin: 0px 10px;
}
#output.empty {
  padding: 10px;
  text-align: center;
  background: #fff;
}
.dataTables_filter {
  float: left !important;
}
.dataTables_filter > label {
  text-align: left;
}
.dataTables_filter > label > input {
  margin-left: 0 !important;
}
.dataTables_length {
  margin-right: 10px;
}
.dataTables_wrapper .dataTables_paginate {
  text-align: left !important;
}
.dataTables_paginate {
  float: left !important;
  clear: both;
  text-align: left;
}
.scratch-offs .intro {
  background: url(./img/bubbles-gray.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  margin-top: -300px;
  padding-top: 420px;
  z-index: 3;
  padding-bottom: 200px;
}
@media screen and (min-width: 1200px) {
  .scratch-offs .intro {
    padding-bottom: 280px;
    padding-top: 380px;
  }
}
.scratch-offs .scratchoff-featured-image {
  padding: 15px;
  text-align: center;
}
.scratch-offs .scratchoff-featured-image .button {
  margin-top: 10px;
}
.scratch-offs .scratchoff-featured-info {
  padding: 15px;
}
.scratch-offs .scratchoff-featured-info h3 {
  margin-top: 0;
}
.scratchoff-demo {
  position: relative;
  z-index: 0;
  cursor: url('data:image/x-icon;base64,AAACAAEAICAQAAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAAAIAAAAAAAAAAAAAEAAAAAAAAAAAYJAAAAAAAPj4+AAAkMAAAMj4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEREREREREREREREREREREREREREREREREREREREREREREREREURERDMzERERERERERERERFEREQzMxERERERERERESJEREREREQzMxEREREREREiREREREREMzMREREREREiREREAABEREQzERERERERIkRERAAAREREMxERERERESJERAAzMwBERDMzEREREREiREQAMzMAREQzMxEREREiREREIkQzAERERDMRERERIkRERCJEMwBEREQzERERESJEREQiRDMAREREMxEREREiREREIkQzAERERDMRERERIkRERCJEMwBEREQzERERESJEREQiRDMAREREMxEREREiREREIkQzAERERDMRERERIkRERCJEMwBEREQzERERESJEREQiRDMAREREMxEREREiREREIkQzAERERDMRERERIkRERCJEMwBEREQzERERESJEREQiRDMAREREMxERERERIkREIkREAEREMzMRERERESJERCJERABERDMzEREREREiREREIiJEREQzERERERERIkRERCIiREREMxEREREREREiIkREREREMzMRERERERERIiJERERERDMzERERERERERERIiIiMzMRERERERERERERESIiIjMzERERERERERERERERERERERERERERERERERERERERERERERERERH/AA///wAP//AAAP/wAAD/wAAAP8AAAD/AAAA/wAAAPwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA/AAAA/wAAAP8AAAD/AAAA/8AAA/3AAAP9/AA//HwAP/w=='), auto;
  max-width: 320px;
  height: 195px;
}
.scratchoff-demo__unscratched {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .scratchoff-demo {
    max-width: 640px;
    height: 390px;
  }
}
.scratchoffs-list > .cell {
  padding: 15px;
}
.single-scratchoff__image {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.single-scratchoff__image img {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  body.page-template-template-page-find-a-retailer .press-search label.cell.medium-12.large-4 {
    padding-top: 35px;
  }
}
body.page-template-template-page-find-a-retailer #results {
  margin: 20px 0px;
}
body.page-template-template-page-find-a-retailer #results .cell span, body.page-template-template-page-find-a-retailer #results .cell a {
  display: block;
}
body.page-template-template-page-find-a-retailer #results .cell a {
  padding: 10px;
  margin: 10px;
  border: 1px solid #eee;
}
body.page-template-template-page-find-a-retailer #results .cell a:hover {
  background: #eee;
  border-color: #999;
}
body.page-template-template-page-find-a-retailer #results .cell a:hover span {
  color: #ef3e42;
}
body.page-template-template-page-find-a-retailer #results .cell a strong {
  color: #333;
}
body.page-template-template-page-find-a-retailer .retailer-search-container > svg {
  width: 64px;
  height: 64px;
  margin: 20px auto;
  display: none;
}
body.page-template-template-page-find-a-retailer .retailer-search-container > svg * {
  fill: #ef3e42;
}
body.page-template-template-page-find-a-retailer main.loading .retailer-search-container > svg {
  display: block;
}
body.page.page-id-154 .instant-search-container .grid-padding-x > .cell {
  padding-left: 0px;
}
body.page.page-id-154 .instant-search-container .expanded.button-group .button {
  margin-right: 10px;
  border: 1px solid #e4342d;
}
body.page.page-id-154 .instant-search-container .expanded.button-group .button.secondary {
  border: 1px solid #e9e9e9;
}
body.page.page-id-154 .instant-search-container .expanded.button-group .button.active {
  opacity: 0.5;
}
body.page.page-id-154 .instant-search-container .button.secondary {
  border: 1px solid #e9e9e9;
}
body.page.page-id-154 .instant-search-container .button:focus {
  background: #fff;
  color: #e4342d;
  outline: 0;
}
body.page.page-id-154 .instant-search-container > svg {
  width: 64px;
  height: 64px;
  margin: 20px auto;
  display: none;
}
body.page.page-id-154 .instant-search-container > svg * {
  fill: #ef3e42;
}
body.page.page-id-154 main.loading .instant-search-container > svg {
  display: block;
}
.page-template-template-page-players-circle-account form.circleManage {
  margin: 0px 0px 70px 0px;
  display: block;
}
/*# sourceMappingURL=style.css.map */