@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.d-block {
  display: block !important
}

.d-inline-block {
  display: inline-block !important
}

.d-inline {
  display: inline !important
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

.d-none {
  display: none !important
}

.v-hidden {
  visibility: hidden
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.justify-items-center {
  justify-items: center
}

.content-center {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center
}

.justify-space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.items-space-between {
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -moz-box-align: space-between;
  -ms-flex-align: space-between;
  align-items: space-between
}

.justify-items-space-between {
  justify-items: space-between
}

.content-space-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between
}

.justify-space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.items-space-around {
  -webkit-box-align: space-around;
  -webkit-align-items: space-around;
  -moz-box-align: space-around;
  -ms-flex-align: space-around;
  align-items: space-around
}

.justify-items-space-around {
  justify-items: space-around
}

.content-space-around {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around
}

.justify-space-evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.items-space-evenly {
  -webkit-box-align: space-evenly;
  -webkit-align-items: space-evenly;
  -moz-box-align: space-evenly;
  -ms-flex-align: space-evenly;
  align-items: space-evenly
}

.justify-items-space-evenly {
  justify-items: space-evenly
}

.content-space-evenly {
  -webkit-align-content: space-evenly;
  -ms-flex-line-pack: space-evenly;
  align-content: space-evenly
}

.justify-flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.items-flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.justify-items-flex-start {
  justify-items: flex-start
}

.content-flex-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start
}

.justify-flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.items-flex-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.justify-items-flex-end {
  justify-items: flex-end
}

.content-flex-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end
}

.max-width-100 {
  max-width: 100% !important
}

.m-0auto {
  margin: 0 auto
}

.m-auto {
  margin: auto !important
}

.m-0 {
  margin: 0 !important
}

.p-0 {
  padding: 0 !important
}

.font-bold {
  font-weight: bold !important
}

.text-left {
  text-align: left !important
}

.text-right {
  text-align: right !important
}

.text-center {
  text-align: center !important
}

.hr-text-or {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #000;
  text-align: center;
  height: 1.5em;
  width: 100%
}

.hr-text-or:before {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fff), to(transparent));
  background: -webkit-linear-gradient(left, transparent, #fff, transparent);
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px
}

.hr-text-or:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #fff;
  background-color: #047ada
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

body {
  line-height: 1
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

a {
  text-decoration: none
}

body,
html {
  margin: 0;
  padding: 0
}

b,
strong {
  font-weight: bold
}

html {
  left: 0;
  top: 0;
  width: 100%
}

body {
  text-align: center;
  position: relative;
  overflow-x: hidden !important
}

body:before {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  position: fixed;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

body.scroll-hidden {
  overflow: hidden
}

body.scroll-hidden:before {
  opacity: 1;
  visibility: visible;
  z-index: 999
}

body.popup-active:before {
  z-index: 1000
}

main {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  position: relative
}

.popup .popup-inner p.blueshyft-amount {
  font-size: 2rem;
  margin: auto;
  text-align: center;
  font-weight: 600
}

.popup .popup-inner p.blueshyft-text {
  font-size: 1rem;
  text-align: center
}

.popup .popup-inner p.blueshyft-code {
  font-size: 2rem;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #2c68a5;
  text-align: center
}

.popup .popup-inner #success-gif {
  -webkit-transform: scale(.01);
  -moz-transform: scale(.01);
  -ms-transform: scale(.01);
  transform: scale(.01);
  background: #209d4d;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 75%;
  height: 75%
}

.popup .popup-inner #success-gif .checkmark {
  stroke-width: 4;
  stroke: #fff;
  stroke-miterlimit: 10;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48
}

.popup .popup-inner #success-gif.active {
  -webkit-animation: circle .6s ease .2s forwards;
  animation: circle .6s ease .2s forwards
}

.popup .popup-inner #success-gif.active .checkmark {
  -webkit-animation: stroke .8s ease-out .7s forwards;
  animation: stroke .8s ease-out .7s forwards
}

@-webkit-keyframes circle {
  to {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes circle {
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes stroke {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0
  }
}

#deposit-D--payment-method-12 p,
#deposit-L--payment-method-12 p {
  margin: auto;
  font-size: 1rem;
  text-align: left;
  font-weight: 600
}

#deposit-D--payment-method-12 ul,
#deposit-L--payment-method-12 ul {
  margin: auto;
  padding: 1rem 1.5rem;
  text-align: left
}

#deposit-D--payment-method-12 ul li,
#deposit-L--payment-method-12 ul li {
  color: #2c68a5;
  list-style: disc;
  padding: 5px 0
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #7a7b78;
  max-width: 100%
}

.site-container {
  max-width: 1280px;
  margin: 0 auto
}

.print-container {
  display: none
}

.container {
  margin: 0 auto;
  width: 92.5%;
  max-width: 73.75rem
}

.container.container-large {
  width: 95%
}

.container.container-small {
  width: 80%
}

.container.container-desktop-small {
  max-width: 61.25rem
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a {
  font-family: Arial, sans-serif
}

.wf-active div,
.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active h4,
.wf-active h5,
.wf-active h6,
.wf-active p,
.wf-active li,
.wf-active a {
  font-family: "Open sans"
}

img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

h1 {
  font-size: 1.75em
}

h2 {
  font-size: 1.5em
}

h3 {
  font-size: 1.375em
}

h4 {
  font-size: 1.125em
}

h5 {
  font-size: 1em
}

h6 {
  font-size: 1em
}

p,
li {
  font-size: 1em;
  line-height: 1.4;
  font-weight: 400
}

p a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: underline
}

a {
  display: inline-block;
  -webkit-transition: color ease-in-out .2s;
  transition: color ease-in-out .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

span,
i,
b,
strong,
sup {
  font-weight: inherit;
  color: white;
  font-family: inherit
}

b,
strong {
  font-weight: 700
}

section.general-section {
  padding: 2.8125rem 0
}

section.bg-blue-gradient {
  padding: 1.5625rem 0 2.1875rem
}

.bg-blue-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
  background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%)
}

.local-hash {
  padding-top: 8.75rem;
  margin-top: -9.75rem;
  display: block
}

.el-desktop {
  display: none !important
}

.bold {
  font-weight: 700
}

.orange {
  color: #e25f2c
}

.underline {
  text-decoration: underline
}

.pointer {
  cursor: pointer
}

.wrap-word {
  word-break: break-word
}

.left {
  text-align: left
}

.right {
  text-align: right
}

.bold.underline:hover {
  opacity: .8;
  cursor: pointer
}

.blue {
  color: #2c68a5
}

.white {
  color: #fff
}

.border-bottom {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  padding: 0 5% 1rem
}

@media only screen and (max-width:680px) {
  .border-bottom {
    font-size: 1.1em
  }
}

.side-borders {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.side-borders:before,
.side-borders:after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: #2c68a5
}

.side-borders:before {
  margin-right: .625rem
}

.side-borders:after {
  margin-left: .625rem
}

.social-full {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  position: relative;
  height: 2.8125rem;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  margin-bottom: .625rem
}

.social-full span {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 2.6875rem;
  height: 2.6875rem;
  background: #fff;
  position: absolute;
  left: 1px;
  top: 1px
}

.social-full span svg {
  width: 30%
}

.social-full.facebook {
  background-color: #425893
}

.social-full.facebook span svg * {
  fill: #425893
}

.social-full.google {
  background-color: #cd5642
}

.social-full.google span svg * {
  fill: #cd5642
}

.social-full.apple {
  background-color: #58595b
}

.social-full.apple span svg {
  width: 1.8rem
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.flex-2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2
}

.flex-3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -moz-box-flex: 3;
  -ms-flex: 3;
  flex: 3
}

.flex-4 {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
  -moz-box-flex: 4;
  -ms-flex: 4;
  flex: 4
}

button {
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  outline: none
}

.section-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

button.button {
  font-size: 1em;
  font-weight: 800;
  font-family: inherit
}

.button {
  border: 2px solid transparent;
  padding: .75rem 2.5rem .875rem;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: .0625rem;
  background: transparent;
  outline: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  min-height: 2.8125rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all ease-in-out .2s !important;
  transition: all ease-in-out .2s !important;
  text-align: center;
  position: relative;
  cursor: pointer
}

.button.print svg {
  max-height: 1.5625rem;
  width: auto;
  margin: -.3125rem .9375rem -.3125rem -.3125rem
}

.button.print svg * {
  stroke-width: 3px
}

.button.button-center {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left
}

.button.button-full {
  width: 100%
}

.button.button-white {
  color: #fff;
  border-color: #fff
}

.button.button-white.active {
  background-color: #fff;
  color: #e25f2c
}

.button.button-orange {
  color: #e25f2c;
  border-color: #e25f2c
}

.button.button-orange-solid {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5993c), color-stop(51%, #f76b1c), to(#f5993c));
  background-image: -webkit-linear-gradient(left, #f5993c 0%, #f76b1c 51%, #f5993c 100%);
  background-image: linear-gradient(to right, #f5993c 0%, #f76b1c 51%, #f5993c 100%);
  border: none;
  background-size: 150% auto
}

.button.button-blue-solid {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#2da0f1), color-stop(51%, #0076d8), to(#2da0f1));
  background-image: -webkit-linear-gradient(left, #2da0f1 0%, #0076d8 51%, #2da0f1 100%);
  background-image: linear-gradient(to right, #2da0f1 0%, #0076d8 51%, #2da0f1 100%);
  border: none;
  background-size: 150% auto
}

.button.button-green-solid {
  background-image: -webkit-gradient(linear, left top, right top, from(#90bc40), color-stop(51%, #429321), to(#90bc40));
  background-image: -webkit-linear-gradient(left, #90bc40 0%, #429321 51%, #90bc40 100%);
  background-image: linear-gradient(to right, #90bc40 0%, #429321 51%, #90bc40 100%);
  background-size: 150% auto;
  color: #fff;
  border: transparent
}

.button.button-blue {
  border-color: #2c68a5;
  color: #2c68a5
}

.button.button-red {
  border-color: #d8262d;
  color: #d8262d
}

.button.button-red:hover {
  background: #d8262d;
  color: #fff
}

.button.button-icon-inline {
  position: relative;
  overflow: visible
}

.button.button-icon-inline .button-icon {
  border: 2px solid #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: .3125rem;
  position: absolute;
  left: .625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  overflow: visible
}

.button.button-icon-inline .button-icon svg {
  width: .78125rem;
  height: auto;
  max-height: .78125rem
}

.button.button-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .8125em;
  font-weight: 600;
  font-family: "Open sans";
  letter-spacing: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .75rem .625rem;
  border: none
}

.button.button-icon svg {
  display: block;
  width: 1.4375rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.4375rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.4375rem;
  flex: 0 0 1.4375rem;
  margin-right: .625rem
}

.button.button-square {
  -webkit-border-radius: 1.25rem !important;
  -moz-border-radius: 1.25rem !important;
  border-radius: 1.25rem !important
}

.button.add-quickplay {
  font-size: .625em;
  font-weight: 700;
  padding: .46875rem 1.25rem;
  line-height: 1.3
}

.button.results-expand:after {
  display: none
}

.button.button-follow {
  text-align: center;
  width: 100%;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #e25f2c;
  font-weight: 600;
  font-size: 1.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.button.button-follow svg {
  margin-left: 1.25rem;
  height: 2rem;
  width: auto
}

.button.button-follow svg * {
  fill: #2c68a5;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.tm {
  font-size: 50%;
  vertical-align: top;
  display: inline !important;
  font-weight: 600
}

.rt {
  display: inline !important
}

.remove:before {
  content: ''
}

.button.loading,
button.loading {
  position: relative;
  overflow: hidden;
  background: none
}

.button.loading:before,
button.loading:before {
  content: '';
  background: #fff;
  background-image: url("../icons/spinner.gif");
  background-size: 1.875rem;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0
}

.default-list {
  padding: 0;
  margin: 1.25rem 0 1.25rem .625rem;
  list-style: none;
  text-align: left
}

.default-list li {
  color: #2c68a5;
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: .46875rem
}

.default-list li a {
  color: #2c68a5;
  font-weight: 600;
  font-size: inherit;
  text-decoration: underline;
  display: inline-block
}

.icon-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400 !important;
  font-size: 1.375em
}

.icon-title .icon {
  width: 2rem;
  height: 2rem;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 2rem !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 2rem !important;
  flex: 0 0 2rem !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: .9375rem;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.icon-title .icon svg {
  max-width: .875rem
}

.icon-title.blue {
  color: #2c68a5
}

.icon-title.blue .icon {
  border-color: #2c68a5
}

.icon-title.blue .icon svg * {
  fill: #2c68a5
}

.icon-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.icon-text svg {
  border: 2px solid #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: .375rem;
  width: 2rem;
  height: 2rem;
  overflow: visible;
  margin-left: .625rem
}

.icon-text.icon-blue {
  border-color: #2c68a5
}

.icon-text.icon-blue svg * {
  fill: #2c68a5
}

.input-other {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.input-other.active {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

.input-other span {
  color: #2c68a5;
  margin-right: .3125rem
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input,
select,
textarea {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important
}

input:disabled,
select:disabled,
textarea:disabled {
  border-color: rgba(0, 0, 0, .3) !important;
  color: rgba(0, 0, 0, .3) !important
}

input:disabled::-webkit-input-placeholder,
select:disabled::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .3) !important
}

input:disabled::-moz-placeholder,
select:disabled::-moz-placeholder,
textarea:disabled::-moz-placeholder {
  color: rgba(0, 0, 0, .3) !important
}

input:disabled:-ms-input-placeholder,
select:disabled:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder {
  color: rgba(0, 0, 0, .3) !important
}

input:disabled::-ms-input-placeholder,
select:disabled::-ms-input-placeholder,
textarea:disabled::-ms-input-placeholder {
  color: rgba(0, 0, 0, .3) !important
}

input:disabled::placeholder,
select:disabled::placeholder,
textarea:disabled::placeholder {
  color: rgba(0, 0, 0, .3) !important
}

.password-strength .password-strength--meter {
  height: .9375rem;
  width: 95%;
  -webkit-border-radius: 1.5625rem;
  -moz-border-radius: 1.5625rem;
  border-radius: 1.5625rem;
  margin: 0 2.5% .9375rem
}

.password-strength .password-strength--validation p {
  text-align: left;
  margin: 0 0 .3125rem !important;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-align: center
}

.password-strength .password-strength--validation p svg {
  height: 1.09375rem;
  margin-right: .46875rem;
  max-width: 1.5625rem
}

.password-strength .password-strength--validation p:last-child {
  margin-bottom: .9375rem !important
}

.password-strength .password-strength--validation .password-strength--title {
  color: #e25f2c;
  font-weight: 700;
  margin: 0 0 .625rem !important
}

.toggle-password {
  position: absolute;
  right: .9375rem;
  top: .875rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: all ease-in-out .19s;
  transition: all ease-in-out .19s
}

.toggle-password * {
  fill: #2c68a5;
  -webkit-transition: all ease-in-out .1s;
  transition: all ease-in-out .1s
}

.toggle-password.active * {
  fill: #e25f2c
}

_:-ms-input-placeholder,
:root .toggle-password {
  display: none
}

@supports(-ms-ime-align:auto) {
  .toggle-password {
    display: none
  }
}

.has-placeholder {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

form h3 {
  color: #e25f2c;
  font-weight: 600;
  font-size: 1em
}

form p {
  color: #2c68a5;
  font-family: "Open sans";
  font-weight: 400;
  font-size: .875em
}

form .form-section {
  margin-top: 2.1875rem
}

form .form-section input[type="submit"] {
  margin-top: .9375rem
}

form .input-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 100%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: .75rem;
  flex-wrap: wrap
}

form .input-row .input-error {
  margin-top: .46875rem
}

form .input-row * {
  margin-bottom: 0 !important
}

form .input-row>* {
  margin-right: .3125rem;
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
  width: 0
}

form .input-row>*:last-child {
  margin-right: 0
}

form .input-row label input,
form .input-row label button {
  width: 100%
}

form .input-row button {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  cursor: pointer;
  font-weight: 600;
  font-size: .875em;
  letter-spacing: 0;
  display: inline-block
}

form .input-row button svg {
  width: 1.09375rem;
  height: 1.09375rem
}

form .input-row input[type="submit"] {
  margin-top: 0 !important;
  width: 100%;
  -webkit-appearance: none
}

form .input-row input[type="submit"]:active {
  background-color: inherit;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none
}

form .input-error {
  text-align: left;
  display: block;
  color: #d0021b;
  font-size: 14px;
  font-weight: 600;
  padding: .3125rem 1.40625rem;
  margin-bottom: .625rem;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important
}

form input,
form textarea,
form select,
form .select-dropdown {
  margin-bottom: .78125rem
}

form label {
  cursor: pointer;
  position: relative
}

form label.input-underline input,
form label.input-underline textarea {
  border: none;
  border-bottom: 2px solid #2c68a5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 75%;
  font-size: 1em
}

form label.input-underline input::-webkit-input-placeholder,
form label.input-underline textarea::-webkit-input-placeholder {
  font-weight: 700
}

form label.input-underline input::-moz-placeholder,
form label.input-underline textarea::-moz-placeholder {
  font-weight: 700
}

form label.input-underline input:-ms-input-placeholder,
form label.input-underline textarea:-ms-input-placeholder {
  font-weight: 700
}

form label.input-underline input::-ms-input-placeholder,
form label.input-underline textarea::-ms-input-placeholder {
  font-weight: 700
}

form label.input-underline input::placeholder,
form label.input-underline textarea::placeholder {
  font-weight: 700
}

form label.input-white input,
form label.input-white textarea {
  border-color: #fff;
  background-color: transparent;
  color: #fff
}

form label.input-blue input,
form label.input-blue textarea {
  border-color: #2c68a5;
  background-color: transparent;
  color: #2c68a5
}

form label.input-blue input::-webkit-input-placeholder,
form label.input-blue textarea::-webkit-input-placeholder {
  color: #2c68a5
}

form label.input-blue input::-moz-placeholder,
form label.input-blue textarea::-moz-placeholder {
  color: #2c68a5
}

form label.input-blue input:-ms-input-placeholder,
form label.input-blue textarea:-ms-input-placeholder {
  color: #2c68a5
}

form label.input-blue input::-ms-input-placeholder,
form label.input-blue textarea::-ms-input-placeholder {
  color: #2c68a5
}

form label.input-blue input::placeholder,
form label.input-blue textarea::placeholder {
  color: #2c68a5
}

form label.input-square input,
form label.input-square textarea {
  -webkit-border-radius: 1.25rem !important;
  -moz-border-radius: 1.25rem !important;
  border-radius: 1.25rem !important
}

form label.input-orange-solid input,
form label.input-orange-solid textarea,
form label.input-orange-solid button {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5993c), color-stop(51%, #f76b1c), to(#f5993c)) !important;
  background-image: -webkit-linear-gradient(left, #f5993c 0%, #f76b1c 51%, #f5993c 100%) !important;
  background-image: linear-gradient(to right, #f5993c 0%, #f76b1c 51%, #f5993c 100%) !important;
  background-size: 150% auto !important;
  border: none
}

form label.input-green-solid input,
form label.input-green-solid button {
  border: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#90bc40), color-stop(51%, #429321), to(#90bc40));
  background-image: -webkit-linear-gradient(left, #90bc40 0%, #429321 51%, #90bc40 100%);
  background-image: linear-gradient(to right, #90bc40 0%, #429321 51%, #90bc40 100%);
  background-size: 150% auto;
  color: #fff
}

form label.input-full {
  width: 100%
}

form label.input-full input,
form label.input-full textarea,
form label.input-full button {
  width: 100%
}

form label.input-wide input,
form label.input-wide button {
  padding-right: 4.6875rem;
  padding-left: 4.6875rem
}

form label.has-error {
  color: #d0021b
}

form label.has-error input,
form label.has-error textarea {
  border-color: #d0021b;
  margin-bottom: .46875rem
}

form label.has-error input::-webkit-input-placeholder,
form label.has-error textarea::-webkit-input-placeholder {
  color: #d0021b
}

form label.has-error input::-moz-placeholder,
form label.has-error textarea::-moz-placeholder {
  color: #d0021b
}

form label.has-error input:-ms-input-placeholder,
form label.has-error textarea:-ms-input-placeholder {
  color: #d0021b
}

form label.has-error input::-ms-input-placeholder,
form label.has-error textarea::-ms-input-placeholder {
  color: #d0021b
}

form label.has-error input::placeholder,
form label.has-error textarea::placeholder {
  color: #d0021b
}

form label.has-error input:before,
form label.has-error textarea:before {
  border-color: #d0021b
}

form textarea {
  background-color: transparent;
  border: 2px solid #fff;
  font-size: .875em;
  font-family: "Open sans";
  color: #fff;
  -webkit-border-radius: 1.25rem;
  -moz-border-radius: 1.25rem;
  border-radius: 1.25rem;
  padding: .625rem 1.25rem .75rem;
  outline: none;
  height: 7.8125rem;
  resize: none;
  font-weight: 600
}

form textarea::-webkit-input-placeholder {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  opacity: .64 !important
}

form textarea::-moz-placeholder {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  opacity: .64 !important
}

form textarea:-ms-input-placeholder {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  opacity: .64 !important
}

form textarea::-ms-input-placeholder {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  opacity: .64 !important
}

form textarea::placeholder {
  color: #fff;
  font-size: inherit;
  font-weight: 600;
  opacity: .64 !important
}

form button {
  display: inline-block !important;
  text-align: center
}

form input,
form button {
  outline: none;
  line-height: 1
}

form input[type="text"],
form input[type="number"],
form input[type="password"],
form input[type="email"],
form input[type="date"],
form button[type="text"],
form button[type="number"],
form button[type="password"],
form button[type="email"],
form button[type="date"] {
  background-color: transparent;
  border: 2px solid #fff;
  font-size: 14px !important;
  color: #fff;
  -webkit-border-radius: 3.125rem;
  -moz-border-radius: 3.125rem;
  border-radius: 3.125rem;
  padding: .625rem 1.25rem .75rem;
  -webkit-appearance: none;
  position: relative;
  overflow: visible;
  font-weight: 600;
  height: 45px;
  line-height: 1;
  font-family: "Open sans";
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
  margin-bottom: .5rem
}

form input[type="text"]::-webkit-input-placeholder,
form input[type="number"]::-webkit-input-placeholder,
form input[type="password"]::-webkit-input-placeholder,
form input[type="email"]::-webkit-input-placeholder,
form input[type="date"]::-webkit-input-placeholder,
form button[type="text"]::-webkit-input-placeholder,
form button[type="number"]::-webkit-input-placeholder,
form button[type="password"]::-webkit-input-placeholder,
form button[type="email"]::-webkit-input-placeholder,
form button[type="date"]::-webkit-input-placeholder {
  color: inherit;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form input[type="text"]::-moz-placeholder,
form input[type="number"]::-moz-placeholder,
form input[type="password"]::-moz-placeholder,
form input[type="email"]::-moz-placeholder,
form input[type="date"]::-moz-placeholder,
form button[type="text"]::-moz-placeholder,
form button[type="number"]::-moz-placeholder,
form button[type="password"]::-moz-placeholder,
form button[type="email"]::-moz-placeholder,
form button[type="date"]::-moz-placeholder {
  color: inherit;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form input[type="text"]:-ms-input-placeholder,
form input[type="number"]:-ms-input-placeholder,
form input[type="password"]:-ms-input-placeholder,
form input[type="email"]:-ms-input-placeholder,
form input[type="date"]:-ms-input-placeholder,
form button[type="text"]:-ms-input-placeholder,
form button[type="number"]:-ms-input-placeholder,
form button[type="password"]:-ms-input-placeholder,
form button[type="email"]:-ms-input-placeholder,
form button[type="date"]:-ms-input-placeholder {
  color: inherit;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form input[type="text"]::-ms-input-placeholder,
form input[type="number"]::-ms-input-placeholder,
form input[type="password"]::-ms-input-placeholder,
form input[type="email"]::-ms-input-placeholder,
form input[type="date"]::-ms-input-placeholder,
form button[type="text"]::-ms-input-placeholder,
form button[type="number"]::-ms-input-placeholder,
form button[type="password"]::-ms-input-placeholder,
form button[type="email"]::-ms-input-placeholder,
form button[type="date"]::-ms-input-placeholder {
  color: inherit;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form input[type="text"]::placeholder,
form input[type="number"]::placeholder,
form input[type="password"]::placeholder,
form input[type="email"]::placeholder,
form input[type="date"]::placeholder,
form button[type="text"]::placeholder,
form button[type="number"]::placeholder,
form button[type="password"]::placeholder,
form button[type="email"]::placeholder,
form button[type="date"]::placeholder {
  color: inherit;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form input[type="text"]:-ms-input-placeholder,
form input[type="number"]:-ms-input-placeholder,
form input[type="password"]:-ms-input-placeholder,
form input[type="email"]:-ms-input-placeholder,
form input[type="date"]:-ms-input-placeholder,
form button[type="text"]:-ms-input-placeholder,
form button[type="number"]:-ms-input-placeholder,
form button[type="password"]:-ms-input-placeholder,
form button[type="email"]:-ms-input-placeholder,
form button[type="date"]:-ms-input-placeholder {
  font-size: 14px !important
}

form input[type="submit"],
form button[type="submit"] {
  border: 2px solid #e25f2c;
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 3.125rem;
  -moz-border-radius: 3.125rem;
  border-radius: 3.125rem;
  color: #e25f2c;
  padding: .84375rem 1.875rem;
  font-size: 1em;
  font-weight: 600;
  font-family: "Open sans";
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  min-height: 2.8125rem;
  cursor: pointer;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

form input[type="submit"]:hover,
form button[type="submit"]:hover {
  background-color: #e25f2c;
  color: #fff
}

form input[type="image"],
form button[type="image"] {
  margin-left: 1.25rem
}

form input[type="radio"],
form input[type="checkbox"],
form button[type="radio"],
form button[type="checkbox"] {
  width: 0;
  position: relative;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden
}

form input[type="radio"]:checked+.checkbox:before,
form input[type="checkbox"]:checked+.checkbox:before,
form button[type="radio"]:checked+.checkbox:before,
form button[type="checkbox"]:checked+.checkbox:before {
  background-color: #2c68a5
}

form input[type="radio"]:checked+.checkbox:after,
form input[type="checkbox"]:checked+.checkbox:after,
form button[type="radio"]:checked+.checkbox:after,
form button[type="checkbox"]:checked+.checkbox:after {
  content: '';
  position: absolute;
  background: #fff;
  width: .3125rem;
  height: .3125rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: .53125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

form input[type="radio"]+.checkbox,
form input[type="checkbox"]+.checkbox,
form button[type="radio"]+.checkbox,
form button[type="checkbox"]+.checkbox {
  position: absolute;
  width: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0
}

form input[type="radio"]+.checkbox:before,
form input[type="checkbox"]+.checkbox:before,
form button[type="radio"]+.checkbox:before,
form button[type="checkbox"]+.checkbox:before {
  content: '';
  width: 1.375rem;
  height: 1.375rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #2c68a5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block
}

form #credit-card-number {
  font-size: 2rem
}

form .hosted-field {
  background-color: transparent;
  border: 2px solid #fff;
  font-size: 14px !important;
  -webkit-border-radius: 3.125rem;
  -moz-border-radius: 3.125rem;
  border-radius: 3.125rem;
  padding: .625rem 1.25rem .75rem;
  -webkit-appearance: none;
  position: relative;
  overflow: visible;
  font-weight: 600;
  height: 45px;
  line-height: 1;
  font-family: "Open sans";
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
  border-color: #2c68a5;
  color: #2c68a5
}

form .hosted-field::-webkit-input-placeholder {
  color: #2c68a5;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form .hosted-field::-moz-placeholder {
  color: #2c68a5;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form .hosted-field:-ms-input-placeholder {
  color: #2c68a5;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form .hosted-field::-ms-input-placeholder {
  color: #2c68a5;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form .hosted-field::placeholder {
  color: #2c68a5;
  line-height: 20px;
  font-size: inherit !important;
  opacity: .64
}

form .hosted-field:-ms-input-placeholder {
  font-size: 14px !important
}

form .hosted-fields--label {
  text-transform: uppercase;
  color: #1a1f71;
  font-weight: 600;
  font-size: .75rem;
  opacity: .75;
  line-height: 2;
  padding-left: .5rem
}

form .braintree-hosted-fields-invalid,
form .hosted-field.is-invalid {
  border: 2px solid #ed574a !important
}

form .invalid-feedback {
  display: none;
  width: 100%;
  margin: .25rem auto .5rem;
  color: #ed574a;
  padding-left: 1rem;
  font-weight: bold
}

form .invalid-feedback.show {
  display: block
}

form #submit-1001[disabled],
form #new-credit-card[disabled],
form .paypal-update-button[disabled] {
  opacity: .5;
  cursor: not-allowed
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.lottery-date-search p {
  color: #fff;
  margin-bottom: .9375rem;
  font-weight: 700
}

.lottery-date-search input,
.lottery-date-search select-dropdown {
  margin: 0 !important;
  font-family: "Open sans" !important;
  font-weight: 500 !important
}

.radio-container {
  padding: 0;
  margin: .625rem auto .9375rem !important;
  text-align: left;
  width: 90%
}

.radio-container textarea {
  width: 100%;
  margin-top: .9375rem
}

.radio-container.has-error label,
.radio-container.has-error .label-for {
  color: #d0021b
}

.radio-container.has-error label input:before,
.radio-container.has-error .label-for input:before {
  border-color: #d0021b
}

.radio-container .input-error {
  margin-top: .625rem
}

.radio-container label,
.radio-container .label-for {
  text-align: left;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-bottom: .9375rem;
  color: #2c68a5;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative
}

.radio-container label.disabled,
.radio-container .label-for.disabled {
  color: #b4b4b4
}

.radio-container label.disabled .checkbox:before,
.radio-container .label-for.disabled .checkbox:before {
  border: 2px solid #b4b4b4
}

.radio-container label.disabled input[type="radio"]:checked+.checkbox:before,
.radio-container .label-for.disabled input[type="radio"]:checked+.checkbox:before {
  background-color: #b4b4b4
}

.radio-container label:last-of-type,
.radio-container .label-for:last-of-type {
  margin-bottom: 0;
  margin-right: 0
}

.radio-container label.over-limit,
.radio-container .label-for.over-limit {
  opacity: .5;
  cursor: not-allowed
}

.radio-container label.over-limit:active,
.radio-container .label-for.over-limit:active {
  pointer-events: none
}

.radio-container label .terms-conditions-check,
.radio-container .label-for .terms-conditions-check {
  position: relative
}

.radio-container label .terms-conditions-check input[type="checkbox"],
.radio-container .label-for .terms-conditions-check input[type="checkbox"] {
  pointer-events: none
}

.radio-container label .terms-conditions-check input[type="checkbox"]:before,
.radio-container .label-for .terms-conditions-check input[type="checkbox"]:before {
  top: -5px
}

.radio-container label .terms-conditions-check input[type="checkbox"]:after,
.radio-container .label-for .terms-conditions-check input[type="checkbox"]:after {
  top: 5px !important
}

.radio-container label input,
.radio-container .label-for input {
  margin-right: 1.875rem;
  width: 0 !important
}

.radio-container label input:checked~.label-content .radio-container,
.radio-container .label-for input:checked~.label-content .radio-container {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important
}

.radio-container label .label-content,
.radio-container .label-for .label-content {
  font-size: .875em;
  margin-top: -.21875rem
}

.radio-container label .label-content span,
.radio-container .label-for .label-content span {
  color: #2c68a5;
  font-weight: 400;
  font-size: inherit;
  font-family: "Open sans";
  margin-bottom: .625rem;
  line-height: 1.4;
  display: block
}

.radio-container label .label-content .label-for,
.radio-container .label-for .label-content .label-for {
  margin-top: .625rem;
  margin-bottom: .625rem
}

.radio-container label .label-content .label-for>span,
.radio-container .label-for .label-content .label-for>span {
  margin-bottom: 0;
  margin-top: -.21875rem
}

.radio-container label .label-content .input-error,
.radio-container .label-for .label-content .input-error {
  color: #d8262d;
  padding: 0;
  font-weight: 600
}

.radio-container .radio-container {
  display: none !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.input-range {
  position: relative;
  display: inline-block;
  width: 100%
}

.input-range .input-range-container {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  height: .75rem;
  width: 100%
}

.input-range .output-range-container {
  position: absolute;
  left: 0;
  bottom: -webkit-calc(100% + .9375rem);
  bottom: calc(100% + .9375rem);
  width: 2.0625rem;
  height: 1.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #e25f2c;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  -webkit-border-radius: 2.5px;
  -moz-border-radius: 2.5px;
  border-radius: 2.5px
}

.input-range .output-range-container output {
  color: #fff;
  font-size: .75em;
  font-weight: 600
}

.input-range .output-range-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: .125rem;
  border-color: #e25f2c transparent transparent transparent
}

.input-range input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  height: .5rem;
  overflow: visible;
  margin: 0;
  background-color: #efefef;
  width: 100%;
  line-height: 1;
  outline: none
}

.input-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #fff;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
  width: 1.25rem;
  height: 1.25rem;
  -webkit-border-radius: 50%;
  border-radius: 50%
}

.input-range input[type=range]::-moz-range-progress {
  background-color: #e25f2c
}

.input-range input[type=range]::-moz-range-track {
  background-color: #e6e6e6
}

.input-range input[type=range]::-ms-fill-lower {
  background-color: #e25f2c
}

.input-range input[type=range]::-ms-fill-upper {
  background-color: #e6e6e6
}

.input-range input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -webkit-border-radius: 50px;
  border-radius: 50px
}

@supports(-ms-ime-align:auto) {
  .toggle-password {
    display: none !important
  }

  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    line-height: 1 !important
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    line-height: 1 !important
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    line-height: 1 !important
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    line-height: 1 !important
  }

  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    line-height: 1 !important
  }

  .input-range .input-range-container {
    overflow: hidden
  }

  .input-range input[type=range] {
    height: auto;
    width: 100%
  }

  .input-range input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1)
  }

  .input-range input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 10px 0;
    color: transparent
  }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .toggle-password {
    display: none !important
  }

  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    line-height: 1 !important
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    line-height: 1 !important
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    line-height: 1 !important
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    line-height: 1 !important
  }

  input::placeholder,
  textarea::placeholder,
  select::placeholder {
    line-height: 1 !important
  }

  .input-range .input-range-container {
    overflow: hidden
  }

  .input-range input[type=range] {
    height: auto;
    width: 100%;
    margin-top: 12.5px
  }

  .input-range input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1)
  }

  .input-range input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 10px 0;
    color: transparent
  }

  .input-range input[type=range]::-ms-tooltip {
    display: none
  }
}

.terms-conditions-check {
  text-align: left;
  color: #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: .625rem 0 1.5625rem;
  position: relative
}

.terms-conditions-check .input-error {
  color: #d0021b;
  padding: 0;
  margin-top: .9375rem
}

.terms-conditions-check input[type="checkbox"] {
  margin-right: 2.1875rem !important
}

.terms-conditions-check input[type="checkbox"]:checked+.checkbox:before {
  background-position: center;
  background-color: transparent;
  background-image: url(../icons/icon-check.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  -webkit-transition: none;
  transition: none
}

.terms-conditions-check input[type="checkbox"]:checked+.checkbox:after {
  display: none
}

.terms-conditions-check input[type="checkbox"]+.checkbox:before {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 0;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  width: 1.5rem;
  height: 1.5rem
}

.terms-conditions-check>span {
  line-height: 1.3;
  width: 100%;
  display: block;
  text-align: left
}

.terms-conditions-check a {
  color: inherit;
  text-decoration: underline;
  display: inline;
  font-weight: 700
}

.checkbox-offset {
  padding: 0 .3125rem 0 .625rem;
  margin-bottom: .625rem
}

#checkSavePayPal.disabled {
  opacity: .5;
  cursor: not-allowed
}

.input-tooltip {
  position: relative;
  overflow: visible
}

.input-tooltip input {
  margin-bottom: 0
}

.input-tooltip .tooltip-action {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  position: absolute;
  right: .9375rem;
  top: .78125rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible
}

.input-tooltip .tooltip-action:before {
  content: 'i';
  font-weight: 700;
  color: #2c68a5;
  font-size: .75em
}

.input-tooltip .tooltip-action.active+.tooltip-content {
  display: block
}

.tooltip-content {
  display: none;
  position: absolute;
  bottom: -webkit-calc(100% + .625rem);
  bottom: calc(100% + .625rem);
  left: 0
}

.tooltip-content.tooltip-content-ccv {
  width: 100% !important;
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: auto !important;
  flex: auto !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  border: 1px solid #2c68a5;
  background: #fff;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  overflow: hidden;
  padding: .625rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .2);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, .2)
}

.tooltip-content.tooltip-content-ccv:before {
  font-size: .8125em;
  content: 'CVV is an anti-fraud security feature. The 3 CVV numbers are located on the back of your card.';
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  margin-right: 5%;
  line-height: 1.2;
  font-weight: 700
}

.tooltip-content.tooltip-content-ccv:after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  line-height: 1.5;
  background-image: url("../icons/ICON-CCV.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  min-height: 4.6875rem
}

.tooltip-content.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

@media only screen and (min-width:980px) {
  input[type="submit"].button-orange:hover {
    background: #e25f2c;
    color: #fff
  }

  label.input-blue input[type="submit"]:hover,
  label.input-blue button:hover {
    background: #2c68a5
  }

  label.input-white input[type="submit"]:hover,
  label.input-white button:hover {
    background: #fff;
    color: #e25f2c
  }

  label.input-orange-solid input:hover,
  label.input-orange-solid button:hover,
  label.input-green-solid input:hover,
  label.input-green-solid button:hover {
    background-position: right center
  }
}

.has-float-label {
  display: block
}

.has-float-label label,
.has-float-label>span.labeltext {
  position: absolute;
  left: 20px;
  cursor: text;
  font-size: 90%;
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #e25f2c;
  font-weight: 500;
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px)
}

@supports(-ms-ime-align:auto) {

  .has-float-label label,
  .has-float-label>span.labeltext {
    top: 0
  }
}

.has-float-label input:placeholder,
.has-float-label user-select:placeholder,
.has-float-label textarea:placeholder {
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s
}

.has-float-label input:placeholder-shown:not(:focus)+*,
.has-float-label user-select:placeholder-shown:not(:focus)+*,
.has-float-label textarea:placeholder-shown:not(:focus)+* {
  font-size: 100%;
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s
}

.has-float-label input:focus,
.has-float-label user-select:focus,
.has-float-label textarea:focus {
  margin: 12px 0 !important;
  -webkit-transition: all .2s;
  transition: all .2s
}

.has-float-label input:focus~.toggle-password,
.has-float-label user-select:focus~.toggle-password,
.has-float-label textarea:focus~.toggle-password {
  top: 1.875rem !important
}

.has-float-label input:not(:focus)+*,
.has-float-label user-select:not(:focus)+*,
.has-float-label textarea:not(:focus)+* {
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s
}

@media only screen and (max-width:600px) {
  #dateInput {
    margin: 14px 0 !important
  }

  #dateInput+span {
    opacity: 1;
    -webkit-transition: all .2s;
    transition: all .2s
  }
}

.select-dropdown {
  position: relative;
  -webkit-transition: -webkit-border-radius ease-in-out 0s .2s;
  transition: -webkit-border-radius ease-in-out 0s .2s;
  transition: border-radius ease-in-out 0s .2s;
  transition: border-radius ease-in-out 0s .2s, -webkit-border-radius ease-in-out 0s .2s, -moz-border-radius ease-in-out 0s .2s;
  border: 2px solid #2c68a5;
  -webkit-border-radius: 1.5625rem;
  -moz-border-radius: 1.5625rem;
  border-radius: 1.5625rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 99
}

.select-dropdown.has-error {
  border-color: #d0021b
}

.select-dropdown.has-error .select-rendered {
  color: #d0021b
}

.select-dropdown.has-error .select-rendered:after {
  background-color: #d0021b
}

.select-dropdown input[type="text"] {
  color: #7a7b78;
  margin: 0 !important;
  width: 100%
}

.select-dropdown input[type="text"]::-webkit-input-placeholder {
  color: #7a7b78
}

.select-dropdown input[type="text"]::-moz-placeholder {
  color: #7a7b78
}

.select-dropdown input[type="text"]:-ms-input-placeholder {
  color: #7a7b78
}

.select-dropdown input[type="text"]::-ms-input-placeholder {
  color: #7a7b78
}

.select-dropdown input[type="text"]::placeholder {
  color: #7a7b78
}

.select-dropdown .select-rendered {
  border-bottom: none;
  font-size: 14px !important;
  color: #2c68a5;
  letter-spacing: .03125rem;
  padding: .8125rem 2.1875rem .875rem 1.25rem;
  position: relative;
  width: 100%;
  text-align: center;
  display: block;
  font-weight: 600;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 41px;
  line-height: 1;
  font-family: "Open sans"
}

.select-dropdown .select-rendered:after {
  content: '';
  background-color: #2c68a5;
  background-image: url(../icons/icon-angle-down.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: .9375rem;
  height: .9375rem;
  position: absolute;
  right: .625rem !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  font-weight: 800;
  overflow: visible
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .select-dropdown .select-rendered:after {
    background-size: 10px
  }
}

.select-dropdown .select-option.ZeptoPayID span {
  display: block;
  font-size: .75rem
}

.select-dropdown .select-rendered.ZeptoPayID span {
  display: none
}

.select-dropdown .select-rendered.ZeptoPayID img {
  width: 4rem !important;
  max-width: 40px !important
}

.select-dropdown .select-rendered.Blueshyft img {
  width: 6rem !important;
  max-width: 65px !important
}

.select-dropdown .select-option,
.select-dropdown .select-rendered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.select-dropdown .select-option.has-image,
.select-dropdown .select-rendered.has-image {
  padding-left: 4rem !important
}

.select-dropdown .select-option:focus,
.select-dropdown .select-rendered:focus {
  background: rgba(0, 114, 0, .2) !important;
  outline: none
}

.select-dropdown .select-option img,
.select-dropdown .select-rendered img {
  max-width: 35px !important;
  max-height: 25px;
  height: auto !important;
  width: 100%;
  margin-right: 1.875rem;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  border: none !important
}

.select-dropdown .select-option.Blueshyft,
.select-dropdown .select-rendered.Blueshyft {
  padding-left: 6rem !important
}

.select-dropdown .select-option.Paysafecard,
.select-dropdown .select-rendered.Paysafecard {
  padding-left: 6rem !important
}

.select-dropdown .select-option.Paysafecard img,
.select-dropdown .select-rendered.Paysafecard img {
  width: 5rem !important;
  max-width: 65px !important
}

.select-dropdown .select-inner {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  max-height: 0;
  overflow: hidden
}

.select-dropdown .select-options {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 400;
  position: relative;
  z-index: 0;
  max-height: 9rem;
  overflow-y: auto
}

.select-dropdown .select-options .select-option {
  text-align: center;
  padding: .625rem 1.25rem;
  position: relative;
  font-size: .875em;
  cursor: pointer;
  color: #2c68a5;
  background-color: #e9eff5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s;
  text-decoration: none !important
}

.select-dropdown .select-options .select-option.selected {
  color: #e25f2c
}

.select-dropdown .select-options .select-option.hidden {
  display: none
}

.select-dropdown .select-options .select-option:nth-of-type(even) {
  background-color: #fff
}

.select-dropdown.dropdown-active {
  -webkit-transition: all ease-in-out 0s;
  transition: all ease-in-out 0s;
  -webkit-border-radius: 1.40625rem;
  -moz-border-radius: 1.40625rem;
  border-radius: 1.40625rem
}

.select-dropdown.dropdown-active .select-rendered {
  -webkit-transition: all ease-in-out 0s;
  transition: all ease-in-out 0s
}

.select-dropdown.dropdown-active .select-rendered:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg)
}

.select-dropdown.dropdown-active .select-inner {
  max-height: 12.5rem
}

.select-dropdown.select-left .select-rendered {
  text-align: left
}

.select-dropdown.select-white {
  border-color: #fff
}

.select-dropdown.select-white * {
  background: transparent !important;
  color: #fff !important
}

.select-dropdown.select-white .select-rendered {
  border-color: #fff
}

.select-dropdown.select-white .select-rendered:after {
  background-color: #fff;
  background-image: url(../icons/icon-angle-down-blue.svg)
}

.select-dropdown.select-white .select-options .select-option {
  border-top: 1px solid #fff
}

.select-dropdown.select-white.dropdown-active .select-options {
  border-color: #fff
}

.select-dropdown.select-left .select-option,
.select-dropdown.select-left .select-rendered {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left
}

@media only screen and (min-width:980px) {
  .select-dropdown .select-options .select-option:hover {
    background: rgba(0, 114, 0, .2)
  }
}

.account-nav-funds-actions .select-dropdown .select-options,
.account-funds--bottom .select-dropdown .select-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-height: 12rem
}

.account-nav-funds-actions .select-dropdown .select-options .select-option.has-image,
.account-funds--bottom .select-dropdown .select-options .select-option.has-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;
  -moz-box-flex: 0;
  -ms-flex: 0 50%;
  flex: 0 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 10px !important;
  background-color: #fff;
  border-right: 1px solid #e25f2c;
  border-bottom: 1px solid #e25f2c
}

.account-nav-funds-actions .select-dropdown .select-options .select-option.has-image:hover,
.account-funds--bottom .select-dropdown .select-options .select-option.has-image:hover {
  background-color: #e9eff5
}

.account-nav-funds-actions .select-dropdown .select-options .select-option.has-image img,
.account-funds--bottom .select-dropdown .select-options .select-option.has-image img {
  width: 3.5rem !important;
  position: unset;
  max-height: none;
  max-width: none !important;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  margin: 5px auto !important;
  left: unset;
  top: unset
}

.account-nav-funds-actions .select-dropdown .select-options .select-option.has-image[data-methodname="Paysafecard"]>img,
.account-funds--bottom .select-dropdown .select-options .select-option.has-image[data-methodname="Paysafecard"]>img {
  width: 7rem !important
}

.account-nav-funds-actions .select-dropdown .select-options .select-option.has-image[data-methodname="Blueshyft"]>img,
.account-funds--bottom .select-dropdown .select-options .select-option.has-image[data-methodname="Blueshyft"]>img {
  width: 6rem !important
}

.account-nav-funds-actions .select-dropdown .select-options .select-option:not(.has-image),
.account-funds--bottom .select-dropdown .select-options .select-option:not(.has-image) {
  width: 100%
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

header.noborder {
  border-bottom: none
}

header #header-strip {
  text-align: center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f5993c), to(#f76b1c));
  background-image: -webkit-linear-gradient(bottom, #f5993c 0%, #f76b1c 100%);
  background-image: linear-gradient(to top, #f5993c 0%, #f76b1c 100%);
  padding: .3125rem 0
}

header #header-strip p {
  color: #fff;
  font-size: 1.0625em;
  margin: 0;
  letter-spacing: .5px
}

header #header-strip .desktop-only {
  display: block !important
}

header #header-strip .devices-only {
  display: none !important
}

@media only screen and (max-width:600px) {
  header #header-strip .desktop-only {
    display: none !important
  }

  header #header-strip .devices-only {
    display: block !important
  }
}

header .nav-cart-container {
  position: relative;
  margin-left: .3125rem
}

header .nav-cart-container .nav-cart-qty {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e25f2c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 8px;
  width: .9375rem;
  height: .9375rem;
  text-decoration: none !important;
  -webkit-transform: translate(40%, -40%);
  -moz-transform: translate(40%, -40%);
  -ms-transform: translate(40%, -40%);
  transform: translate(40%, -40%);
  font-weight: 400
}

header .nav-cart-container svg {
  margin-left: 0 !important
}

header #header-top {
  background-color: #302c29
}

header #header-top .container #header-logo {
  width: 4.375rem;
  opacity: 1
}

header #header-top .container #header-top-nav {
  list-style: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

header #header-top .container #header-top-nav>li {
  padding: .9375em .46875em
}

header #header-top .container #header-top-nav>li#header--sign-up {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5993c), to(#f76b1c));
  background-image: -webkit-linear-gradient(left, #f5993c, #f76b1c);
  background-image: linear-gradient(to right, #f5993c, #f76b1c)
}

header #header-top .container #header-top-nav>li.not-verified-li {
  padding-left: 0;
  padding-right: 0
}

header #header-top .container #header-top-nav>li:last-child {
  padding-right: 0
}

header #header-top .container #header-top-nav>* {
  color: #e3e3e3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: .875em;
  line-height: 1;
  cursor: pointer;
  position: relative
}

header #header-top .container #header-top-nav>* svg {
  width: .75rem;
  height: .75rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 .75rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 .75rem;
  flex: 0 0 .75rem;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.5px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  margin-left: .3125rem;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

header #header-top .container #header-top-nav>* img {
  width: 1.625rem;
  height: 1.625rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: .625rem;
  border: 1px solid #fff
}

header #header-top .container #header-top-nav>*.nav-active {
  color: #e25f2c;
  text-decoration: underline
}

header #header-top .container #header-top-nav>*.nav-active .nav-cart-container>svg {
  border-color: #e25f2c
}

header #header-top .container #header-top-nav>*.nav-active .nav-cart-container>svg * {
  stroke: #e25f2c !important
}

header #header-top .container #header-top-nav>*.nav-active .nav-cart-container>svg path {
  fill: #e25f2c
}

header #header-top .container #header-top-nav>* .nav-title {
  color: inherit;
  margin: 0
}

header #header-top .container #header-top-nav .top-nav--desktop-item {
  position: absolute;
  top: 70%;
  right: -.625rem;
  max-width: none;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  padding-top: .9375rem;
  -webkit-transition: opacity ease-in-out .2s;
  transition: opacity ease-in-out .2s;
  overflow: hidden;
  height: 0;
  max-width: 97.5vw
}

header #header-top .container #header-top-nav .top-nav--desktop-item .tab-content.active {
  overflow: hidden
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #2c68a5;
  width: 25rem;
  padding: 1.25rem 0 !important;
  max-height: -webkit-calc(100vh - 100px);
  max-height: calc(100vh - 100px);
  overflow: auto
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .lottery-card-account--header {
  padding-bottom: .9375rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .button {
  font-size: .8125em
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card input[type="submit"] {
  padding: .625rem 1.875rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-funds {
  padding: 0 1.25rem .9375rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-funds .choose-plays {
  padding-top: .9375rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer {
  padding: .625rem 1.25rem 0;
  margin-top: .625rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer h3 span {
  border: none;
  margin: 0 0 0 1.5625rem;
  font-size: 1em;
  color: #e25f2c
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer h3:hover {
  color: #4c4d4a !important
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer .button-orange-solid,
header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer .button-blue-solid {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  padding: .625rem;
  min-width: 10.9375rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer .button-orange-solid:hover,
header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .account-nav-funds--footer .button-blue-solid:hover {
  background-position: right center
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .logout {
  margin: .625rem 0 0;
  font-size: .875em
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .logout a {
  color: #e25f2c;
  font-weight: 600;
  margin-left: .3125rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .lottery-card .orange {
  font-size: 1.25em;
  font-weight: 600;
  margin: 1.25rem auto .625rem;
  display: inline-block
}

header #header-top .container #header-top-nav .top-nav--desktop-item:before,
header #header-top .container #header-top-nav .top-nav--desktop-item:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  bottom: -webkit-calc(100% - 1px - .9375rem);
  bottom: calc(100% - 1px - .9375rem);
  right: 1.5625rem;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  border-width: 10px
}

header #header-top .container #header-top-nav .top-nav--desktop-item:before {
  border-width: 11px;
  border-color: transparent transparent #2c68a5 transparent
}

header #header-top .container #header-top-nav .top-nav--desktop-item:after {
  border-color: transparent transparent #fff transparent
}

header #header-top .container #header-top-nav .top-nav--desktop-item .cart-empty svg {
  width: 4.6875rem;
  height: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 4.6875rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 4.6875rem;
  flex: 0 0 4.6875rem;
  margin: 0 auto;
  max-height: 4.6875rem
}

header #header-top .container #header-top-nav .top-nav--desktop-item .nav-cart {
  padding: 0 !important;
  font-size: 18px
}

header #header-top .container #header-top-nav .top-nav--desktop-item .nav-cart .cart-footer p {
  color: #4c4d4a;
  font-size: .9375em;
  margin: 0
}

header #header-top .container #header-top-nav .top-nav--desktop-item .nav-cart .cart-footer input[type="submit"] {
  font-size: 1em
}

header #header-top.not-found {
  padding: 15px 0
}

header #user-edit {
  background-color: #302c29
}

header #user-edit .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem 0 .625rem
}

header #user-edit .container a {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 49%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  font-size: .875em;
  margin-bottom: .625rem;
  padding: .625rem;
  font-weight: 700
}

header #header-bottom {
  padding: .625rem 0;
  -webkit-transition: all ease-in-out .2s .1s;
  transition: all ease-in-out .2s .1s
}

header #header-bottom .container>* {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1em;
  color: #2c68a5;
  text-decoration: underline;
  margin-right: .9375rem
}

header #header-bottom .container>*:last-child {
  margin-right: 0;
  margin-left: auto
}

header #header-bottom .container>* svg {
  height: 1.5625rem;
  max-width: 1.5625rem;
  margin-right: .3125rem
}

header #header-bottom .container>*.nav-grey {
  color: #4c4d4a;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

/* header #header-bottom .container>*.nav-grey:after {
  content: '';
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: .3125rem;
  margin-right: 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  position: relative;
  top: 2px;
  width: .8125rem;
  height: .8125rem;
  background-color: #7a7b78;
  background-image: url(../icons/icon-angle-right.svg);
  background-size: 45%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%
} */

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  header #header-bottom .container>*.nav-grey:after {
    top: 1px;
    background-size: 10px;
    width: .9375rem;
    height: .9375rem
  }
}

header #header-bottom .container>*.active {
  color: #e25f2c
}

header #header-bottom .container>*.active:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

header #header-bottom .container>*.active:after * {
  fill: #e25f2c
}

header #header-bottom .nav-desktop {
  display: none
}

header #header-nav {
  max-width: 31.25rem;
  right: -105%;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  display: block !important
}

header #header-nav.active {
  right: 0;
  position: absolute
}

header #header-nav .header-cta {
  text-align: left;
  padding: 1.5625rem 5% 1.875rem;
  background-image: -webkit-gradient(linear, right bottom, left top, from(#0a7fdd), to(#35a7f5));
  background-image: -webkit-linear-gradient(bottom right, #0a7fdd 0%, #35a7f5 100%);
  background-image: linear-gradient(to top left, #0a7fdd 0%, #35a7f5 100%)
}

header #header-nav .header-cta a {
  text-decoration: underline;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: .5px
}

header #header-nav .header-cta p {
  color: #fff;
  font-weight: 400;
  font-size: .875em;
  font-family: "Open sans";
  max-width: 80%;
  line-height: 1.5;
  margin: 0
}

header #header-nav ul {
  padding-bottom: 6.25rem !important
}

header #header-nav ul li {
  list-style: none;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #2c68a5;
  line-height: 1
}

header #header-nav ul li a {
  display: inline-block;
  font-size: 1.125em;
  color: #2c68a5;
  font-weight: 600;
  padding: .9375rem 1.875rem .9375rem 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

header #header-nav ul li a:hover {
  opacity: 1 !important
}

header #header-nav ul li a:after {
  content: '';
  background-image: url(../icons/icon-angle-right.svg);
  background-size: 45%;
  background-position: center;
  background-repeat: no-repeat;
  width: .9375rem;
  height: .9375rem;
  background-color: #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%
}

header #header-nav ul li a span {
  text-decoration: underline
}

header #header-nav ul li.support-link {
  background: #e25f2c;
  border-bottom: none
}

header #header-nav ul li.support-link a {
  color: #fff
}

header #header-nav ul li.support-link a:after {
  content: '';
  background-image: url(../icons/icon-angle-right-orange.svg);
  background-size: 45%;
  background-position: center;
  background-repeat: no-repeat;
  width: .9375rem;
  height: .9375rem;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%
}

header #absolute-header {
  position: fixed;
  width: 100%;
  height: auto;
  left: 0;
  height: 0;
  overflow-y: scroll;
  background: #fff
}

header #absolute-header .absolute-header-container {
  position: relative
}

header .nav-tab.active {
  height: 100vh
}

header #header-top-nav>li,
header .lottery-card-account--header>li {
  -webkit-transition: all ease-in-out .2s !important;
  transition: all ease-in-out .2s !important
}

header #header-top-nav>li>svg path,
header #header-top-nav>li>svg polygon,
header #header-top-nav>li .nav-cart-container>svg path,
header #header-top-nav>li .nav-cart-container>svg polygon,
header .lottery-card-account--header>li>svg path,
header .lottery-card-account--header>li>svg polygon,
header .lottery-card-account--header>li .nav-cart-container>svg path,
header .lottery-card-account--header>li .nav-cart-container>svg polygon {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.sign-in {
  padding-bottom: 2.1875rem
}

.sign-in .sign-in--header {
  background: -webkit-gradient(linear, right bottom, left top, from(#0b80de), to(#44b5fd));
  background: -webkit-linear-gradient(bottom right, #0b80de 0%, #44b5fd 100%);
  background: linear-gradient(to top left, #0b80de 0%, #44b5fd 100%);
  padding: 3.125rem 0 1.875rem
}

.sign-in .sign-in--header * {
  color: #fff
}

.sign-in .sign-in--header .h2title {
  margin: 0 auto;
  font-size: 1.375em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  font-weight: 700 !important
}

.sign-in .sign-in--header .h2title i {
  font-size: 2.125em;
  margin-right: .9375rem
}

.sign-in .sign-in--header p {
  margin-top: 0;
  font-size: .875em;
  font-weight: 400;
  font-family: "Open sans"
}

.sign-in .sign-in--header p:first-of-type {
  margin-top: 1.25rem
}

.sign-in .sign-in--header p:last-child {
  margin-bottom: 0
}

.sign-in .sign-in--error {
  margin-bottom: 1.25rem;
  color: #e25f2c;
  font-weight: 600;
  font-size: 1em
}

.sign-in .button-icon-inline {
  margin-bottom: 1.25rem;
  position: relative;
  font-weight: 700;
  padding-left: .625rem;
  padding-right: 0
}

.sign-in .button-icon-inline.button-icon-inline {
  width: 12.5rem
}

.sign-in .button-icon-inline svg * {
  stroke: #e25f2c;
  fill: #e25f2c
}

.sign-in .button-icon-inline svg polygon {
  fill: transparent !important
}

.sign-in .button-icon-inline.button-orange-solid svg,
.sign-in .button-icon-inline.button-blue-solid svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.sign-in .button-icon-inline:last-child {
  margin-bottom: 0
}

.sign-in .radio-container p {
  padding: 0;
  margin: 0 0 1.25rem
}

.sign-in p {
  color: #2c68a5;
  margin: 0 0 .9375rem;
  font-size: .875em;
  font-family: "Open sans";
  padding: 0 .625rem
}

.sign-in .button-orange-solid,
.sign-in .button-blue-solid {
  margin-bottom: .625rem;
  font-size: .9375em
}

.sign-in .button-orange-solid svg,
.sign-in .button-blue-solid svg {
  position: absolute;
  left: 1.25rem;
  overflow: visible
}

.sign-in .button-orange-solid.has-border svg,
.sign-in .button-blue-solid.has-border svg {
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  padding: .3rem
}

.sign-in .sign-in--main {
  padding: 2.1875rem .625rem 0
}

.sign-in .sign-in--main .radio-container label input {
  margin-right: 1.875rem
}

.sign-in #global--signin-form button[type="submit"],
.sign-in #global--signup-form button[type="submit"] {
  margin-top: 1.5625rem !important;
  margin-bottom: 1.5625rem !important
}

.sign-in #global--forgot-password-form button[type="submit"] {
  margin-top: .625rem !important;
  margin-bottom: 1.5625rem !important
}

.sign-in .sign-in--return {
  text-align: left;
  margin: 0
}

.sign-in .sign-in--return>* {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #2c68a5;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600
}

.sign-in .sign-in--return>* svg {
  margin-right: .625rem
}

.sign-in .sign-in--return>*:hover {
  opacity: .8
}

.sign-in .sign-in-action {
  margin-top: .625rem
}

.sign-in .sign-in-action p {
  color: #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  line-height: 1;
  font-size: .875em;
  font-family: "Open sans";
  padding: 0 !important;
  margin-bottom: .625rem
}

.sign-in .sign-in-action p span {
  color: #e25f2c;
  margin-left: .625rem;
  font-weight: 700;
  text-decoration: underline
}

.sign-in .sign-in-action p a {
  margin-left: .625rem
}

.sign-in form h3 {
  display: inline-block
}

.sign-in#sign-up input[type="submit"] {
  margin-bottom: 1.5625rem
}

.sign-in#sign-up input[type="submit"]+.sign-in-action {
  margin-bottom: 0
}

#forgot-password p {
  color: #7a7b78;
  font-size: .875em;
  text-align: left
}

#forgot-password p span,
#forgot-password p a {
  font-weight: 700
}

#forgot-password .sign-in-action p {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: .625rem
}

#forgot-password .sign-in-action p span,
#forgot-password .sign-in-action p a {
  margin-left: .3125rem;
  color: inherit
}

.nav-tab {
  display: none;
  background: #fff;
  position: fixed;
  overflow: auto !important;
  width: 100%;
  margin-top: 2px;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-overflow-scrolling: touch
}

.nav-tab .container {
  max-width: 22.5rem
}

.nav-tab.active {
  display: block;
  z-index: 999;
  background: #fff;
  padding: 1.5625rem 0 6.25rem !important
}

.nav-tab#header-nav {
  padding: 0 !important
}

body.nav-small header #header-top .container #header-logo {
  margin: 0
}

body.nav-small header #header-top .container #header-top-nav>li {
  padding-top: .625em;
  padding-bottom: .625em
}

body.nav-small header #header-top .container #header-top-nav a.not-verified {
  background: red;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  margin-left: 5px
}

body.nav-small header #header-bottom {
  padding: .625rem 0
}

.sign-in--card h3 span {
  color: inherit;
  text-decoration: underline
}

@media only screen and (min-width:760px) {
  header #header-strip {
    padding: .9375rem 0
  }

  header .nav-cart-container {
    margin-left: .625rem
  }

  header .nav-cart-container .nav-cart-qty {
    font-size: 12px;
    width: 1.25rem;
    height: 1.25rem
  }

  header #header-top .container #header-logo {
    width: 6.25rem
  }

  header #header-top .container #header-top-nav>li {
    font-size: 1.0625em;
    padding-left: .78125em;
    padding-right: .78125em
  }

  header #header-top .container #header-top-nav>li svg {
    width: .9375rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 .9375rem;
    -moz-box-flex: 0;
    -ms-flex: 0 0 .9375rem;
    flex: 0 0 .9375rem;
    height: .9375rem;
    padding: .3125rem;
    margin-left: .625rem;
    display: block
  }

  header #header-top .container #header-top-nav span.underline {
    margin-right: .3125rem
  }

  header #header-bottom {
    padding: .625rem 0
  }

  header #header-bottom .container>* {
    margin-right: 1.875rem
  }

  header #header-bottom .container .nav-desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
  }

  header #header-nav .header-nav-desktop {
    display: none
  }

  body.nav-small header #header-top .container #header-logo {
    width: 5rem
  }

  header .nav-tab {
    -webkit-overflow-scrolling: touch;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8)) !important;
    background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%) !important;
    background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%) !important
  }

  header .nav-tab#header-nav {
    background: #fff;
    background-image: none !important
  }

  header .sign-in {
    background: transparent;
    max-width: 36.25rem;
    margin: 3.125rem auto
  }

  header .sign-in .sign-in--card {
    padding: 1.5625rem 0;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    background: #fff;
    margin-bottom: 1.875rem
  }

  header .sign-in .sign-in--header {
    background: #fff;
    text-align: left;
    padding-bottom: 0;
    text-align: left
  }

  header .sign-in .sign-in--header * {
    color: #2c68a5;
    text-align: left
  }

  header .sign-in .sign-in--header p {
    color: #7a7b78;
    padding: 0
  }

  header .sign-in .sign-in--header .h2title {
    margin: 0;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  header .sign-in .sign-in--header .h2title .icon {
    border-color: #2c68a5
  }

  header .sign-in .sign-in--header .h2title .icon svg * {
    fill: #2c68a5
  }

  header .sign-in .sign-in--header .h2title .signup-icon {
    border-color: #2c68a5
  }

  header .sign-in .sign-in--header .h2title .signup-icon svg * {
    fill: transparent;
    stroke: #2c68a5
  }

  header #user-edit .container a {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%
  }
}

@media only screen and (min-width:980px) {
  header #header-top .container #header-top-nav>* .nav-title {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  header #header-top .container #header-top-nav>*:hover {
    color: #e25f2c;
    text-decoration: underline
  }

  header #header-top .container #header-logo {
    width: 7.5rem
  }

  header.cart-active #header-cart .top-nav--desktop-item {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
    height: auto !important
  }

  header #header-top-nav>li,
  header .lottery-card-account--header>li {
    -webkit-transition: all ease-in-out .2s !important;
    transition: all ease-in-out .2s !important
  }

  header #header-top-nav>li>svg path,
  header #header-top-nav>li>svg polygon,
  header #header-top-nav>li .nav-cart-container>svg path,
  header #header-top-nav>li .nav-cart-container>svg polygon,
  header .lottery-card-account--header>li>svg path,
  header .lottery-card-account--header>li>svg polygon,
  header .lottery-card-account--header>li .nav-cart-container>svg path,
  header .lottery-card-account--header>li .nav-cart-container>svg polygon {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  header #header-top-nav>li.has-hover:hover>a,
  header #header-top-nav>li.nav-active>a,
  header .lottery-card-account--header>li.has-hover:hover>a,
  header .lottery-card-account--header>li.nav-active>a {
    opacity: 1
  }

  header #header-top-nav>li.has-hover:hover>svg,
  header #header-top-nav>li.has-hover:hover .nav-cart-container>svg,
  header #header-top-nav>li.nav-active>svg,
  header #header-top-nav>li.nav-active .nav-cart-container>svg,
  header .lottery-card-account--header>li.has-hover:hover>svg,
  header .lottery-card-account--header>li.has-hover:hover .nav-cart-container>svg,
  header .lottery-card-account--header>li.nav-active>svg,
  header .lottery-card-account--header>li.nav-active .nav-cart-container>svg {
    border-color: #e25f2c !important
  }

  header #header-top-nav>li.has-hover:hover>svg path,
  header #header-top-nav>li.has-hover:hover .nav-cart-container>svg path,
  header #header-top-nav>li.nav-active>svg path,
  header #header-top-nav>li.nav-active .nav-cart-container>svg path,
  header .lottery-card-account--header>li.has-hover:hover>svg path,
  header .lottery-card-account--header>li.has-hover:hover .nav-cart-container>svg path,
  header .lottery-card-account--header>li.nav-active>svg path,
  header .lottery-card-account--header>li.nav-active .nav-cart-container>svg path {
    fill: #e25f2c;
    stroke: #e25f2c
  }

  header #header-top-nav>li.has-hover:hover>svg polygon,
  header #header-top-nav>li.has-hover:hover .nav-cart-container>svg polygon,
  header #header-top-nav>li.nav-active>svg polygon,
  header #header-top-nav>li.nav-active .nav-cart-container>svg polygon,
  header .lottery-card-account--header>li.has-hover:hover>svg polygon,
  header .lottery-card-account--header>li.has-hover:hover .nav-cart-container>svg polygon,
  header .lottery-card-account--header>li.nav-active>svg polygon,
  header .lottery-card-account--header>li.nav-active .nav-cart-container>svg polygon {
    stroke: #e25f2c
  }

  header #header-top-nav>li.has-hover:hover .top-nav--desktop-item,
  header #header-top-nav>li.nav-active .top-nav--desktop-item,
  header .lottery-card-account--header>li.has-hover:hover .top-nav--desktop-item,
  header .lottery-card-account--header>li.nav-active .top-nav--desktop-item {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
    height: auto !important
  }

  header #header-top-nav>li.has-hover:hover .top-nav--desktop-item li a:hover,
  header #header-top-nav>li.nav-active .top-nav--desktop-item li a:hover,
  header .lottery-card-account--header>li.has-hover:hover .top-nav--desktop-item li a:hover,
  header .lottery-card-account--header>li.nav-active .top-nav--desktop-item li a:hover {
    color: #e25f2c
  }

  header #header-top-nav>li.nav-active,
  header .lottery-card-account--header>li.nav-active {
    opacity: 1
  }

  header #header-bottom .nav-grey {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  header #header-bottom .nav-grey svg * {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  header #header-bottom .nav-grey:hover {
    color: #e25f2c
  }

  header #header-bottom .nav-grey:hover svg * {
    fill: #e25f2c
  }

  header .sign-in-action span {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
    cursor: pointer
  }

  header .sign-in-action span:hover {
    opacity: .7
  }

  header #user-edit .container {
    width: 65%
  }

  header #user-edit .container a {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 22%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%
  }

  body.nav-small header #header-top .container #header-logo {
    width: auto
  }
}

footer {
  position: relative
}

footer .footer-top {
  padding: 3.75rem 0 2.5rem;
  background-color: #7a7b78
}

footer .footer-top .container {
  max-width: 37.5rem
}

footer .footer-top .container img {
  width: 9.375rem;
  height: 53px;
  margin: 0 0 .625rem
}

footer .footer-top .container .secondary-logo {
  width: 80px;
  height: 80px;
  margin-left: 1.25rem
}

footer .footer-top .container p {
  color: #fff;
  font-size: .875em;
  font-family: "Open sans";
  line-height: 1.8
}

footer .footer-bottom {
  background-color: #302c29;
  padding: 1.5625rem 0
}

footer .footer-bottom .footer-nav ul {
  list-style: none;
  max-width: 17.5rem
}

footer .footer-bottom .footer-nav ul li {
  margin-bottom: .3125rem;
  margin-right: .9375rem;
  display: inline-block;
  text-align: center
}

footer .footer-bottom .footer-nav ul li a {
  color: #fff;
  text-decoration: underline;
  font-family: "Open sans";
  font-weight: 400;
  font-size: .875em
}

footer .footer-bottom .footer-nav+.copy {
  margin: .9375rem auto 0
}

footer .footer-bottom .copy {
  font-size: 12px;
  color: #fff;
  font-family: "Open sans";
  max-width: 100%
}

footer .download-buttons {
  padding-top: 2rem
}

@media only screen and (min-width:780px) {
  footer .footer-bottom .footer-nav ul {
    max-width: 100%
  }

  footer .footer-bottom .footer-nav ul li:nth-of-type(3n+3) {
    margin-right: .9375rem
  }
}

.banner {
  padding: 1rem 0;
  max-width: 80rem
}

.banner .container {
  padding: 0 2rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  min-height: 375px;
  max-width: 80rem;
  position: relative;
  width: 100%
}

.banner .container .headers {
  -webkit-box-flex: 70%;
  -webkit-flex: 70%;
  -moz-box-flex: 70%;
  -ms-flex: 70%;
  flex: 70%;
  max-width: 45rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.banner .container .headers h1 {
  max-width: 47rem;
  font-size: 4.5rem;
  text-align: left;
  margin: auto;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  z-index: 1;
  position: relative
}

.banner .container .headers span {
  font-size: 2.2rem;
  display: block;
  font-weight: 800
}

.banner .container .headers span.tag-line {
  font-size: 1.5rem;
  text-align: left;
  margin: auto;
  color: #fff;
  display: block;
  font-weight: 600;
  max-width: 45rem
}

@media screen and (max-width:1000px) {
  .banner .container .headers {
    padding: 5% 0%;
    max-width: 100%
  }

  .banner .container .headers h1 {
    text-align: center;
    font-size: 4rem
  }

  .banner .container .headers span.tag-line {
    text-align: center
  }
}

@media screen and (max-width:600px) {
  .banner {
    background: #f8f8f8 !important;
    padding: 1rem !important
  }

  .banner .container .headers h1 {
    font-size: 3rem
  }

  .banner .container .headers span.tag-line {
    font-size: 1rem;
    line-height: 1.5
  }

  .banner .container .headers p {
    font-size: 1rem
  }
}

.banner-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.banner-left img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 128px;
  height: 128px;
  margin-right: 3rem
}

.banner-left .jackpot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.banner-left .jackpot .jackpot-name {
  -webkit-transform: translate(0, .5rem);
  -moz-transform: translate(0, .5rem);
  -ms-transform: translate(0, .5rem);
  transform: translate(0, .5rem)
}

.banner-left .jackpot .jackpot-name h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, .2)
}

.banner-left .jackpot .jackpot-name h2 {
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
  text-shadow: 2px 2px 15px #000;
  font-size: 24px;
  margin: 1rem auto auto
}

.banner-left .jackpot .jackpot-play h2 {
  font-size: 46px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-family: "Open sans";
  letter-spacing: 6px
}

.banner-left .jackpot .jackpot-play h2 span {
  display: block;
  font-family: "Open sans";
  font-size: 120px
}

.banner-left .jackpot .jackpot-play .pending {
  font-size: 2rem
}

.banner-left .jackpot .jackpot-play .jackpot-pending {
  color: #fff;
  font-size: 2rem;
  font-weight: 600
}

.banner-left .jackpot .jackpot-play .currency {
  font-size: 40px;
  -webkit-transform: translate(-20px, 5px);
  -moz-transform: translate(-20px, 5px);
  -ms-transform: translate(-20px, 5px);
  transform: translate(-20px, 5px);
  position: absolute
}

@media screen and (max-width:400px) {
  .banner-left .jackpot .jackpot-play .currency {
    -webkit-transform: translate(10px, 5px);
    -moz-transform: translate(10px, 5px);
    -ms-transform: translate(10px, 5px);
    transform: translate(10px, 5px)
  }
}

.banner-left .jackpot .jackpot-play p {
  padding: 1rem;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, .2);
  margin: 0 auto;
  text-align: center
}

.banner-left .jackpot .jackpot-play .button {
  width: 100%;
  z-index: 1
}

.banner-right {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: transparent;
  z-index: 9;
  padding-right: 1rem;
  max-width: 335px
}

.banner-right h2 {
  color: #fff;
  margin: 10px auto
}

.banner-right .banner-draw {
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px 2px rgba(8, 67, 157, .4);
  -moz-box-shadow: 0 0 5px 2px rgba(8, 67, 157, .4);
  box-shadow: 0 0 5px 2px rgba(8, 67, 157, .4);
  padding: 10px 25px;
  margin-bottom: 10px;
  padding: 10px 25px;
  -webkit-border-radius: .3rem;
  -moz-border-radius: .3rem;
  border-radius: .3rem
}

.banner-right .banner-draw p {
  font-family: "Open sans";
  font-weight: 600;
  font-size: 1rem;
  margin: auto;
  line-height: 1.5;
  color: #e25f2c
}

.banner-right .banner-draw span {
  color: #2c68a5;
  margin: 2.5px 0
}

.banner-right .banner-draw .banner-draw--cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.banner-right .banner-draw .banner-draw--cart svg {
  height: 38px;
  width: 38px;
  padding-left: 5px;
  position: absolute;
  margin: 15px auto auto;
  -webkit-transform: scale(0) translate(0, 0);
  -moz-transform: scale(0) translate(0, 0);
  -ms-transform: scale(0) translate(0, 0);
  transform: scale(0) translate(0, 0);
  -webkit-animation: scaleUp .2s ease-in-out .05s;
  animation: scaleUp .2s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.banner-right .banner-draw .banner-draw--cart svg path.st0 {
  fill: #e25f2c;
  stroke-width: 0
}

.banner-right .banner-draw .banner-draw--cart .icon-check-circle {
  stroke: #209d4d;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0)
}

.banner-right .banner-draw>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.banner-right .banner-draw.active {
  -webkit-animation: scaleCard .75s ease-in-out 0s;
  animation: scaleCard .75s ease-in-out 0s
}

.banner-right .banner-draw.active .icon-cart {
  -webkit-animation: cartAnimation .75s ease-in-out .05s;
  animation: cartAnimation .75s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

.banner-right .banner-draw.active .icon-cart #cart-arrow {
  -webkit-transform: scaleY(1.5);
  -moz-transform: scaleY(1.5);
  -ms-transform: scaleY(1.5);
  transform: scaleY(1.5);
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

.banner-right .banner-draw.active .icon-check-circle {
  -webkit-animation-name: dash;
  animation-name: dash;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

.banner-right .banner-draw:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, .85)
}

.banner-right .download-app h2 {
  padding: .5rem;
  margin: 0 auto;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
  background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  font-weight: 500;
  font-size: 1.1rem
}

.banner-right .download-app .download-links {
  padding: .8rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(142, 186, 216, .5)
}

#banner-default .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/home/home-bay-desktop.jpg") center right no-repeat
}

#banner-default .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #banner-default .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #banner-default .container {
    background: url("../images/home/home-bay-mobile.jpg") center right no-repeat
  }

  #banner-default .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

#banner-home .container {
  background: url("../images/home/home-ausday-22.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-home .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/home/home-ausday-22.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/home/home-ausday-22.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/home/home-ausday-22.jpg") 0% 0 no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-home .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/home/home-ausday-22-mobile.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/home/home-ausday-22-mobile.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/home/home-ausday-22-mobile.jpg") 95% 0 no-repeat !important;
    margin: auto
  }
}

@media screen and (max-width:600px) {
  #banner-home .container {
    background-position: center
  }
}

#banner-euro-super .container {
  background: url("../images/lottery-banners/superdraw-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/superdraw-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/superdraw-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/superdraw-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-euro-super .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/superdraw-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-euro-super .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/superdraw-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/superdraw-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/superdraw-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/superdraw-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/superdraw-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/superdraw-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

@media screen and (max-width:1024px) {
  #banner-euro-super .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, transparent), color-stop(0%, transparent), to(transparent)), url("../images/lottery-banners/superdraw-tablet-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, transparent 53%, transparent 0%, transparent), url("../images/lottery-banners/superdraw-tablet-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, transparent 53%, transparent 0%, transparent), url("../images/lottery-banners/superdraw-tablet-zero.jpg") right top no-repeat
  }
}

#banner-euro-super .tax-free {
  display: none;
  width: 148px;
  height: 114px;
  position: absolute;
  top: 55%;
  left: 35%
}

#banner-euro .container {
  background: url("../images/lottery-banners/euromillions-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/euromillions-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/euromillions-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/euromillions-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-euro .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/euromillions-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/euromillions-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/euromillions-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/euromillions-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/euromillions-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/euromillions-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-euro .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/euromillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/euromillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/euromillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/euromillions-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/euromillions-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/euromillions-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-eurj .container {
  background: url("../images/lottery-banners/eurojackpot-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/eurojackpot-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/eurojackpot-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/eurojackpot-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-eurj .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/eurojackpot-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/eurojackpot-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/eurojackpot-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/eurojackpot-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/eurojackpot-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/eurojackpot-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-eurj .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/eurojackpot-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-uspb .container {
  background: url("../images/lottery-banners/us-powerball-zero.jpg?v=3") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-uspb .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/us-powerball-zero.jpg?v=3") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-uspb .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/us-powerball-mobile-zero.jpg?v=3") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-usmm .container {
  background: url("../images/lottery-banners/megamillions-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/megamillions-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/megamillions-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/megamillions-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-usmm .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/megamillions-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/megamillions-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/megamillions-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/megamillions-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/megamillions-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/megamillions-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-usmm .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/megamillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/megamillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/megamillions-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/megamillions-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/megamillions-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/megamillions-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-irel .container {
  background: url("../images/lottery-banners/irish-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/irish-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/irish-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/irish-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-irel .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/irish-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/irish-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/irish-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/irish-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/irish-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/irish-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-irel .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/irish-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/irish-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/irish-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/irish-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/irish-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/irish-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-uklo .container {
  background: url("../images/lottery-banners/uk-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/uk-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/uk-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/uk-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-uklo .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/uk-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/uk-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/uk-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/uk-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/uk-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/uk-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-uklo .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/uk-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/uk-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/uk-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/uk-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/uk-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/uk-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-uklo .container {
  padding: 1rem
}

#banner-uklo .banner-label {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #e52a30;
  color: #fff;
  max-width: 200px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-right-radius: 10px;
  font-family: "Open sans";
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 9
}

#banner-uklo #lottery-game--banner-info {
  margin: 2rem auto;
  padding: 2rem 30px 1rem;
  position: relative;
  overflow: visible
}

#banner-uklo #lottery-game--banner-info:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4rem;
  top: -2rem;
  left: 0;
  background-image: url("../icons/new.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center
}

#banner-uklo #lottery-game--banner-info .center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

#banner-uklo #lottery-game--banner-info p {
  font-size: .875em;
  color: #2c68a5;
  line-height: 1.7;
  text-align: left
}

#banner-uklo #lottery-game--banner-info h2 {
  font-size: 40px;
  color: #2c68a5
}

#banner-uklo .banner-draw--cart span {
  padding-right: 1.5625rem
}

#banner-uklo .banner-draw--cart .icon-cart {
  top: 3px;
  right: 10px
}

#banner-uklo .popular p {
  margin-left: 0;
  font-size: 1rem
}

#banner-uklo .popular h3 {
  color: #2c68a5;
  font-size: 1rem;
  margin: 2.5px 0
}

#banner-prim .container {
  background: url("../images/lottery-banners/primitiva-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/primitiva-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/primitiva-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/primitiva-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-prim .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/primitiva-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/primitiva-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/primitiva-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/primitiva-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/primitiva-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/primitiva-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-prim .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/primitiva-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/primitiva-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/primitiva-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/primitiva-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/primitiva-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/primitiva-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-superenalotto .container {
  background: url("../images/lottery-banners/sena-zero.jpg") center right no-repeat;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(35%, rgba(0, 0, 0, 0)), color-stop(140%, transparent)), url("../images/lottery-banners/sena-zero.jpg") center right no-repeat;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/sena-zero.jpg") center right no-repeat;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 35%, transparent 140%), url("../images/lottery-banners/sena-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-superenalotto .container {
    padding: 1rem 0;
    margin: 1rem auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/sena-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/sena-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, transparent), url("../images/lottery-banners/sena-zero.jpg") 0% 0 no-repeat;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(53%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/sena-zero.jpg") right top no-repeat;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/sena-zero.jpg") right top no-repeat;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/sena-zero.jpg") right top no-repeat
  }
}

@media screen and (max-width:600px) {
  #banner-superenalotto .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/sena-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/sena-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/sena-mobile-zero.jpg") 95% 0 no-repeat !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), to(transparent)), url("../images/lottery-banners/sena-mobile-zero.jpg") right top no-repeat !important;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/sena-mobile-zero.jpg") right top no-repeat !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 0%, transparent), url("../images/lottery-banners/sena-mobile-zero.jpg") right top no-repeat !important;
    background-position-x: 85% !important;
    margin: auto
  }
}

#banner-superenalotto #lottery-game--banner-info {
  margin: 2rem auto;
  padding: 2rem 30px 1rem;
  position: relative;
  overflow: visible
}

#banner-superenalotto #lottery-game--banner-info:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4rem;
  top: -2rem;
  left: 0;
  background-image: url("../icons/new.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center
}

#banner-superenalotto #lottery-game--banner-info .center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

#banner-superenalotto #lottery-game--banner-info p {
  font-size: .875em;
  color: #2c68a5;
  line-height: 1.7;
  text-align: left
}

#banner-superenalotto #lottery-game--banner-info h2 {
  font-size: 40px;
  color: #2c68a5
}

#banner-superenalotto .banner-draw--cart span {
  padding-right: 1.5625rem
}

#banner-superenalotto .banner-draw--cart .icon-cart {
  top: 2px;
  right: 10px
}

#banner-superenalotto .popular p {
  margin-left: 0;
  font-size: 1rem
}

#banner-superenalotto .popular h3 {
  color: #2c68a5;
  font-size: 1rem;
  margin: 2.5px 0
}

#banner-about .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/about-top.jpg") center right no-repeat
}

#banner-about .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #banner-about .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #banner-about .container {
    background: url("../images/about-top.jpg") center right no-repeat
  }

  #banner-about .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

#banner-about .container {
  background-size: cover !important;
  background-position: center center !important
}

#banner-about h1 {
  max-width: 45rem;
  text-align: left;
  line-height: 1;
  z-index: 1;
  position: relative
}

#about-betting-banner .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/landing/about-betting-banner-desktop.jpg") center right no-repeat
}

#about-betting-banner .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #about-betting-banner .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #about-betting-banner .container {
    background: url("../images/landing/about-betting-banner-mobile.jpg") center right no-repeat
  }

  #about-betting-banner .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

#about-betting-banner .container {
  background-size: cover !important;
  background-position: center center !important
}

#about-betting-banner h1 {
  font-size: 2rem;
  text-align: left;
  margin: auto;
  line-height: 1;
  z-index: 1;
  position: relative
}

#about-betting-banner .banner-right {
  max-width: unset !important
}

#about-betting-banner .banner-content--container {
  position: initial
}

@media screen and (max-width:1100px) {
  #about-betting-banner .banner-left {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  #about-betting-banner .banner-right {
    display: none
  }
}

.banner-combo {
  padding: 0 !important
}

.banner-combo .container {
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  background: url("../images/lottery-banners/combos-mobile-zero.jpg?v=2") center/cover no-repeat
}

@media screen and (min-width:768px) {
  .banner-combo .container {
    min-height: 272px;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(35%, transparent), color-stop(70%, transparent)), url("../images/lottery-banners/combos-zero.jpg?v=2") center right/auto 110% no-repeat !important;
    background: -webkit-linear-gradient(left, transparent 0%, transparent 35%, transparent 70%), url("../images/lottery-banners/combos-zero.jpg?v=2") center right/auto 110% no-repeat !important;
    background: linear-gradient(to right, transparent 0%, transparent 35%, transparent 70%), url("../images/lottery-banners/combos-zero.jpg?v=2") center right/auto 110% no-repeat !important
  }

  .banner-combo .container h1 {
    font-size: 3rem
  }
}

@media screen and (max-width:768px) {
  .banner-combo .container {
    min-height: 150px;
    padding-bottom: 2rem
  }
}

@media screen and (min-width:1180px) {
  .banner-combo .container .headers {
    margin-left: 4rem
  }
}

.banner-syndicates {
  padding: 0 !important
}

.banner-syndicates .container {
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  background: url("../images/lottery-banners/syndicates-mobile-zero.jpg") center/cover no-repeat
}

@media screen and (min-width:768px) {
  .banner-syndicates .container {
    min-height: 272px;
    background: url("../images/lottery-banners/syndicates-zero.jpg") center no-repeat !important
  }

  .banner-syndicates .container h1 {
    font-size: 3rem
  }
}

@media screen and (max-width:768px) {
  .banner-syndicates .container {
    min-height: 150px;
    padding-bottom: 2rem
  }
}

@media screen and (min-width:1180px) {
  .banner-syndicates .container .headers {
    margin-left: 4rem
  }
}

.banner-systems {
  padding: 0 !important
}

.banner-systems .container {
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  background: url("../images/lottery-banners/system-mobile-zero.jpg") center/cover no-repeat
}

@media screen and (min-width:768px) {
  .banner-systems .container {
    min-height: 272px;
    background: url("../images/lottery-banners/system-zero.jpg") center center no-repeat !important
  }

  .banner-systems .container h1 {
    font-size: 3rem
  }
}

@media screen and (max-width:768px) {
  .banner-systems .container {
    min-height: 150px;
    padding-bottom: 2rem
  }
}

@media screen and (min-width:1180px) {
  .banner-systems .container .headers {
    margin-left: 4rem
  }
}

#banner-rules .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/game-rules-cover.png") center right no-repeat
}

#banner-rules .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #banner-rules .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #banner-rules .container {
    background: url("../images/game-rules-cover.png") center right no-repeat
  }

  #banner-rules .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

#banner-rules .container {
  min-height: 12.5rem !important;
  background-size: cover !important;
  background-position: center center !important
}

@media screen and (max-width:600px) {
  #banner-rules .container {
    min-height: 150px !important
  }
}

.banner-draws {
  text-align: left;
  z-index: 9;
  padding-left: 40px;
  background: transparent;
  padding-right: 3rem
}

@media screen and (max-width:1000px) {
  .banner-draws {
    background: transparent
  }
}

.banner-draws>h2 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  max-width: 360px
}

.banner-draws .banner-draw {
  width: 100%;
  cursor: pointer;
  padding: 15px 30px;
  margin-bottom: 20px;
  max-width: 360px;
  display: block;
  margin-left: 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.banner-draws .banner-draw .banner-draw--cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #2c68a5;
  position: relative
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .banner-draws .banner-draw .banner-draw--cart {
    position: static
  }
}

.banner-draws .banner-draw .banner-draw--cart span {
  padding-right: 1.5625rem
}

.banner-draws .banner-draw .banner-draw--cart svg {
  margin-left: .5rem;
  width: 19px;
  height: 15px
}

.banner-draws .banner-draw .banner-draw--cart svg path.st0 {
  fill: #e25f2c;
  stroke-width: 0
}

.banner-draws .banner-draw>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.banner-draws .banner-draw>div>* {
  font-size: 16px !important;
  margin: 2.5px 0
}

.banner-draws .banner-draw>div svg {
  height: 15px;
  width: auto;
  position: absolute;
  margin: auto
}

.banner-draws .banner-draw>div svg.icon-cart {
  -webkit-transform: scale(0) translate(0, 0);
  -moz-transform: scale(0) translate(0, 0);
  -ms-transform: scale(0) translate(0, 0);
  transform: scale(0) translate(0, 0);
  -webkit-animation: scaleUp .2s ease-in-out .05s;
  animation: scaleUp .2s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.banner-draws .banner-draw>div svg.icon-cart.new-svg {
  height: 38px;
  width: 38px;
  margin-top: 15px;
  padding-left: 5px
}

.banner-draws .banner-draw>div svg.icon-cart.new-svg g path {
  fill: #e25f2c;
  stroke: #e25f2c
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .banner-draws .banner-draw>div svg.icon-cart.new-svg {
    left: 70%;
    top: 0
  }
}

.banner-draws .banner-draw>div svg.icon-check-circle {
  stroke: #209d4d;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0)
}

.banner-draws .banner-draw>div svg.icon-check-circle.new-svg {
  height: 38px;
  width: 38px;
  margin-top: 25px;
  margin-left: 25px;
  padding-left: 5px
}

.banner-draws .banner-draw>p {
  margin: 2.5px 0
}

.banner-draws .banner-draw h3 {
  color: #2c68a5;
  line-height: 1.6
}

.banner-draws .banner-draw:hover {
  opacity: 1
}

.banner-draws .banner-draw.active {
  -webkit-animation: scaleCard .75s ease-in-out 0s;
  animation: scaleCard .75s ease-in-out 0s
}

.banner-draws .banner-draw.active .icon-cart {
  -webkit-animation: cartAnimation .75s ease-in-out .05s;
  animation: cartAnimation .75s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

.banner-draws .banner-draw.active .icon-cart #cart-arrow {
  -webkit-transform: scaleY(1.5);
  -moz-transform: scaleY(1.5);
  -ms-transform: scaleY(1.5);
  transform: scaleY(1.5);
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

.banner-draws .banner-draw.active .icon-check-circle {
  -webkit-animation-name: dash;
  animation-name: dash;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

@supports(-ms-ime-align:auto) {
  .banner-draws .banner-draw.active .icon-cart {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
  }

  .banner-draws .banner-draw.active .icon-check-circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 200;
    -webkit-transition: all ease-in-out .4s .4s;
    transition: all ease-in-out .4s .4s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .banner-draws .banner-draw.active .icon-cart {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: none;
    animation: none;
    -webkit-transition: none;
    transition: none;
    display: none
  }

  .banner-draws .banner-draw.active .icon-check-circle {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none
  }
}

.banner-draws .banner-draw:hover {
  background-color: rgba(255, 255, 255, .85)
}

@media only screen and (max-width:1000px) {
  .banner-draws {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px
  }

  .banner-draws h2 {
    margin-top: 0;
    padding-top: 1rem;
    margin: 0 auto 2rem
  }

  .banner-draws .banner-draw {
    max-width: 320px;
    display: block;
    margin: 0 auto 1rem
  }
}

@media screen and (max-width:1000px) {
  .banner-left .jackpot .jackpot-name h1 {
    text-align: center
  }

  .banner {
    padding: 0;
    background: none
  }

  .banner-left {
    display: block;
    margin: auto
  }

  .banner-left img {
    position: static;
    margin: auto;
    width: 5rem;
    height: 5rem
  }

  .banner-left .jackpot-name {
    -webkit-transform: translate(0, .5rem);
    -moz-transform: translate(0, .5rem);
    -ms-transform: translate(0, .5rem);
    transform: translate(0, .5rem)
  }

  .banner-left .jackpot-name h1 {
    margin: auto;
    -webkit-transform: translate(0, -.5rem);
    -moz-transform: translate(0, -.5rem);
    -ms-transform: translate(0, -.5rem);
    transform: translate(0, -.5rem)
  }

  .banner-right {
    padding: 20px 0 0;
    margin: auto
  }
}

@media screen and (max-width:600px) {
  #banner-home-superdraw .tax-free {
    display: none
  }

  #banner-draws {
    display: none
  }

  #banner-uklo h1 {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
  }
}

.futureball {
  background: -webkit-gradient(linear, left top, right top, from(#f66c1c), color-stop(70%, #fea500), color-stop(70%, #fb8e0c), to(#fb8e0c));
  background: -webkit-linear-gradient(left, #f66c1c 0%, #fea500 70%, #fb8e0c 70%, #fb8e0c 100%);
  background: linear-gradient(to right, #f66c1c 0%, #fea500 70%, #fb8e0c 70%, #fb8e0c 100%)
}

@media screen and (max-width:1080px) {
  .futureball {
    background: -webkit-gradient(linear, left top, right top, from(#f66c1c), to(#fea500));
    background: -webkit-linear-gradient(left, #f66c1c 0%, #fea500 100%);
    background: linear-gradient(to right, #f66c1c 0%, #fea500 100%)
  }
}

.futureball .banner {
  padding: 0;
  margin: 0 auto;
  min-height: 400px !important;
  max-height: none !important
}

.futureball .banner.section-image .banner-image {
  left: 20%
}

.futureball .banner-logo--container {
  padding-bottom: 2rem
}

.futureball .banner-logo--container.image-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.futureball .banner-logo--container.image-side>img {
  position: static;
  width: 10rem;
  margin-right: 1rem
}

@media screen and (max-width:560px) {
  .futureball .banner-logo--container.image-side>img {
    max-width: 65%
  }
}

.futureball .banner-logo--container.image-side .future-logo h1 {
  font-size: 24px
}

.futureball .banner-logo--container .future-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 3rem;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

@media only screen and (min-width:980px) {
  .futureball .banner-logo--container .future-logo {
    -webkit-transform: translateY(-2rem);
    -moz-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
    margin: 0
  }
}

.futureball .banner-logo--container .future-logo img {
  max-width: 3rem;
  margin-right: 1rem
}

@media only screen and (min-width:980px) {
  .futureball .banner-logo--container .future-logo img {
    max-width: 5rem
  }
}

.futureball .banner-logo--container .future-logo h1 {
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 0;
  margin-top: 32px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, .2)
}

.futureball .banner-logo--container .banner-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.futureball .banner-logo--container .banner-content .button-container {
  margin: 0;
  font-size: 18px
}

@media only screen and (max-width:1080px) {
  .futureball {
    background: -webkit-gradient(linear, left top, right top, from(#f66c1c), to(#fea500));
    background: -webkit-linear-gradient(left, #f66c1c 0%, #fea500 100%);
    background: linear-gradient(to right, #f66c1c 0%, #fea500 100%)
  }

  .futureball .container {
    display: block;
    background-image: none;
    width: 92.5% !important;
    max-width: 100% !important
  }

  .futureball .banner {
    padding-bottom: 0 !important
  }

  .futureball .banner.section-image .banner-image {
    left: 0
  }

  .futureball .banner .banner-logo--container.image-side {
    display: block;
    text-align: center
  }

  .futureball .banner .banner-logo--container.image-side img {
    margin-right: 0;
    width: auto
  }

  .futureball .banner .banner-logo--container.image-side .future-logo {
    margin-top: 1rem
  }

  .futureball .banner .banner-logo--container.image-side .future-logo h1 {
    margin-left: 0;
    margin-top: 1rem
  }
}

.futureball {
  position: relative
}

.futureball .banner {
  max-height: 23rem;
  min-height: 23rem
}

.futureball .banner .banner-image {
  left: 50%
}

.futureball .section.thick {
  padding: 5rem 0
}

@media only screen and (min-width:980px) {
  .futureball .banner {
    max-height: 23rem;
    min-height: 23rem
  }
}

@media only screen and (min-width:1080px) {
  .futureball .banner .container {
    max-width: 73.75rem;
    width: 92.5%
  }
}

.futureball p {
  font-size: 18px;
  line-height: 1.5
}

.futureball .blue-bg {
  background-color: #037bdb
}

.futureball .two-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%
}

@media screen and (max-width:1050px) {
  .futureball .two-col {
    width: 100%;
    max-width: 80rem
  }
}

.futureball .two-col .col {
  width: 45%;
  text-align: left
}

@media screen and (max-width:1050px) {
  .futureball .two-col .col {
    width: 100%;
    margin: 1rem 0
  }
}

.futureball .two-col .col {
  width: 45%;
  text-align: left
}

@media screen and (max-width:1050px) {
  .futureball .two-col .col {
    width: 100%;
    margin: 1rem 0
  }
}

.futureball .orange-gradient {
  background: -webkit-linear-gradient(267deg, #f6711f 6%, #ffa954 100%);
  background: linear-gradient(183deg, #f6711f 6%, #ffa954 100%)
}

.futureball .orange-gradient .white-boxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.futureball .orange-gradient .white-boxes .col {
  background-color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  padding: 20px
}

@media screen and (max-width:980px) {
  .futureball .orange-gradient .white-boxes .col {
    width: 100%;
    max-width: 80rem;
    margin: 1rem 0
  }
}

.futureball .orange-text {
  color: #f66c1c
}

.futureball .blue-text {
  color: #2096eb
}

.futureball .button-container {
  text-align: center;
  margin-top: 60px
}

.futureball .green-full {
  color: #fff;
  background-color: #4bc90b;
  font-size: 18px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2)
}

.futureball .green-full:hover {
  background-color: #349a00
}

.futureball .banner-logo--container {
  padding-bottom: 2rem
}

.futureball .banner-logo--container .future-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 3rem;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

@media only screen and (min-width:980px) {
  .futureball .banner-logo--container .future-logo {
    -webkit-transform: translateY(-2rem);
    -moz-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
    margin: 0
  }
}

.futureball .banner-logo--container .future-logo img {
  max-width: 3rem;
  margin-right: 1rem
}

@media only screen and (min-width:980px) {
  .futureball .banner-logo--container .future-logo img {
    max-width: 5rem
  }
}

.futureball .banner-logo--container .future-logo h3 {
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 0;
  margin-top: 32px
}

.futureball .banner-logo--container .banner-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.futureball .banner-logo--container .banner-content .button-container {
  margin: 0;
  font-size: 18px
}

.futureball .popular-tab {
  display: inline-block;
  padding: 7px 27px;
  padding-bottom: 9px;
  color: #fff;
  letter-spacing: .5px;
  background-color: #f9993b;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 16px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2)
}

.futureball .white-border--container {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff
}

.futureball .white-border--container h3 {
  margin: 0;
  color: #fff;
  font-size: 26px
}

.futureball .plays-container.three-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 4rem
}

@media screen and (max-width:900px) {
  .futureball .plays-container.three-col {
    padding: 1rem 0
  }
}

.futureball .plays-container.three-col .col {
  width: 31%;
  margin: 20px 0;
  text-align: left;
  position: relative;
  padding: 2rem 3rem
}

@media screen and (max-width:900px) {
  .futureball .plays-container.three-col .col {
    width: 47%
  }
}

@media screen and (max-width:600px) {
  .futureball .plays-container.three-col .col {
    width: 100%
  }
}

.futureball .plays-container.three-col .col:nth-child(2) .popular-tab {
  position: absolute;
  top: -15px;
  right: 15px
}

.futureball .plays-container.three-col .col h4 {
  font-size: 26px;
  margin: 0 0 .4rem 0
}

.futureball .plays-container.three-col .col p {
  font-size: 20px;
  margin: 0
}

.futureball .white-box--shadow {
  background-color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  padding: 20px;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px
}

.futureball .white-box--shadow .cart-icon {
  max-width: 2.2rem;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem
}

.futureball .lottery-signup .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.futureball .lottery-signup .container .signup-item {
  margin-right: 20px
}

.futureball .lottery-signup .container .signup-item.s-button {
  margin: 0;
  padding-left: 60px
}

.futureball .app-content--section .two-col.wide-left {
  -webkit-box-align: inherit;
  -webkit-align-items: inherit;
  -moz-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit
}

.futureball .content-block h3 {
  font-size: 28px
}

.futureball .content-block p {
  font-size: 18px
}

.futureball .content-block .two-col {
  width: 100%
}

.futureball .division-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.5rem
}

.futureball .division-text p {
  font-size: 16px;
  font-weight: 700;
  color: #045b9c;
  margin: 0;
  margin-right: 1rem
}

.futureball .division-bottom {
  text-align: center;
  font-size: 14px;
  color: #7f7f7f
}

.futureball .white-box--shadow.numbers {
  padding: 4rem
}

@media screen and (max-width:900px) {
  .futureball .white-box--shadow.numbers {
    padding: 2rem 0
  }
}

.futureball .number-title {
  margin: 0 0 3rem;
  color: #1b90e8;
  font-size: 26px;
  letter-spacing: 1px
}

@media screen and (max-width:600px) {
  .futureball .number-title {
    margin-bottom: 1.5rem;
    font-size: 22px
  }
}

.futureball .number-container {
  margin: 0;
  margin-bottom: 3rem;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media screen and (max-width:900px) {
  .futureball .number-container {
    margin-bottom: 2rem
  }
}

@media screen and (max-width:600px) {
  .futureball .number-container {
    margin-bottom: 1rem
  }
}

.futureball .number-container li {
  list-style: none;
  margin: 0 .5rem;
  padding: 0
}

@media screen and (max-width:900px) {
  .futureball .number-container li {
    list-style: none;
    margin: 0 .5rem;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
  }
}

@media screen and (max-width:860px) {
  .futureball .number-container li {
    padding: 0;
    text-align: center;
    margin: 2% 1%
  }
}

@media screen and (max-width:500px) {
  .futureball .number-container li {
    margin: 2% .5%
  }
}

.futureball .number-container li .circle-number {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: 700
}

@media screen and (max-width:860px) {
  .futureball .number-container li .circle-number {
    margin: auto;
    width: 3rem;
    height: 3rem
  }
}

@media screen and (max-width:600px) {
  .futureball .number-container li .circle-number {
    width: 2.5rem;
    height: 2.5rem
  }
}

@media screen and (max-width:500px) {
  .futureball .number-container li .circle-number {
    width: 2.25rem;
    height: 2.25rem
  }
}

.futureball .number-container li .circle-number.orange {
  background-color: #f66c1c
}

.futureball .number-container li .circle-number.blue {
  background-color: #1b90e8
}

.futureball .view-all {
  font-size: 20px
}

.futureball .small-top--content {
  max-width: 45rem;
  margin: auto;
  margin-bottom: 4rem;
  text-align: left
}

.futureball .small-top--content .orange-text {
  color: #f66c1c;
  font-weight: normal;
  margin-bottom: 2rem;
  font-size: 26px
}

@media screen and (max-width:1080px) {
  .futureball .banner-logo--container {
    padding-top: 2rem
  }

  .futureball .banner {
    padding: 2rem 0;
    max-height: none
  }

  .futureball .banner .banner-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 170% !important;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    max-width: none;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(0%);
    transform: translateX(0%)
  }

  .futureball .banner .container {
    width: 100%;
    max-width: 90%;
    z-index: 2;
    position: relative
  }

  .futureball .banner-logo--container .future-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2rem 0 2rem 0
  }
}

@media only screen and (max-width:1080px) and (max-width:450px) {
  .futureball .banner-logo--container .future-logo {
    margin-bottom: 10px
  }
}

@media screen and (max-width:1080px) {
  .futureball .banner-logo--container .future-logo img {
    max-width: 5rem;
    margin-right: 1rem
  }
}

@media only screen and (max-width:1080px) and (max-width:450px) {
  .futureball .banner-logo--container .future-logo img {
    max-width: 3.5rem
  }
}

@media screen and (max-width:1080px) {
  .futureball .banner-logo--container .future-logo h3 {
    font-size: 30px
  }
}

@media only screen and (max-width:1080px) and (max-width:450px) {
  .futureball .banner-logo--container .future-logo h3 {
    margin-top: 0;
    font-size: 23px;
    letter-spacing: 1px
  }
}

@media screen and (max-width:1080px) {
  .futureball .banner-logo--container .banner-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .futureball .banner-logo--container .banner-content .button-container {
    margin: 0;
    font-size: 18px
  }
}

@media screen and (max-width:730px) {
  .futureball .banner-logo--container .future-logo img {
    max-width: 4rem
  }

  .futureball .banner-logo--container .future-logo {
    margin-top: 0
  }

  .futureball .banner-logo--container {
    padding-top: 0
  }
}

@media only screen and (min-width:1560px) {
  .futureball .banner.section-image .banner-image {
    left: 20%
  }
}

.futureball .futureball-banner {
  max-height: none;
  padding: 30px 0 0 !important;
  background: -webkit-gradient(linear, left top, right top, from(#f66c1c), to(#fea500));
  background: -webkit-linear-gradient(left, #f66c1c 0%, #fea500 100%);
  background: linear-gradient(to right, #f66c1c 0%, #fea500 100%)
}

.futureball .futureball-banner .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-image: url("../images/lottery-banners/futureball-banner.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 78%;
  padding-bottom: 45px;
  max-width: 66rem
}

@media only screen and (max-width:980px) {
  .futureball .futureball-banner .container {
    display: block;
    background-image: none;
    text-align: center;
    width: 92.5% !important
  }

  .futureball .futureball-banner .container h1 {
    font-size: 56px !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px
  }

  .futureball .futureball-banner .container h1 .currency {
    position: static !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    font-size: 34px !important;
    margin-right: 10px;
    width: auto
  }

  .futureball .futureball-banner .container h1 span {
    font-size: 26px !important;
    width: 100%
  }

  .futureball .futureball-banner .container .button-container {
    text-align: center !important
  }

  .futureball .futureball-banner .container .image-side {
    margin: 0 auto
  }

  .futureball .futureball-banner .container ul {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .futureball .futureball-banner .container ul li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block
  }
}

.futureball .futureball-banner .banner-logo--container {
  width: 150px;
  margin-right: 75px
}

.futureball .futureball-banner .banner-content h1 {
  font-size: 140px;
  max-width: none;
  line-height: 1
}

.futureball .futureball-banner .banner-content h1 span {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 26px
}

.futureball .futureball-banner .banner-content h1 .currency {
  position: absolute;
  top: 0;
  left: -10px;
  -webkit-transform: translate(-100%, 25%);
  -moz-transform: translate(-100%, 25%);
  -ms-transform: translate(-100%, 25%);
  transform: translate(-100%, 25%);
  font-size: 56px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5)
}

.futureball .futureball-banner .banner-content ul {
  padding: 0;
  margin: 0
}

.futureball .futureball-banner .banner-content ul li {
  font-size: 18px;
  list-style: none;
  position: relative;
  padding-left: 1rem;
  color: #fff
}

.futureball .futureball-banner .banner-content ul li:before {
  content: url("../icons/checkmark.svg");
  margin-right: 10px;
  margin-left: -10px
}

.futureball .futureball-banner .banner-content .button-container {
  text-align: left;
  margin-top: 38px
}

.futureball .futureball-banner .banner-content .button-container .button {
  margin-top: 0;
  padding: 15px 33px;
  font-size: 18px;
  font-weight: 600
}

.futureball .futureball-banner .banner-content .button-container p {
  font-size: 14px;
  margin: 10px 15px 0;
  font-weight: 600
}

.columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 40px;
  margin-top: 40px;
  border-top: 1px solid #fff
}

.columns .col {
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 20px
}

.columns .col h2 {
  text-align: center;
  font-size: 20px;
  color: #e25f2c;
  margin: 0 0 18px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.columns .col h2 img {
  margin-left: 10px;
  height: 45px;
  width: auto;
  margin-left: 15px
}

.columns .col>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px
}

.columns .col p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  font-size: 14px;
  color: #2c68a5;
  margin: 0
}

.columns .col p:last-of-type {
  font-weight: 600
}

.columns .col .futureballs {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.columns .col .futureballs span {
  height: 25px;
  width: 25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #fb8e0c;
  margin-right: 5px
}

.columns .col .futureballs span.blue {
  background-color: #2c68a5
}

.columns .col .futureballs span:last-of-type {
  margin: 0
}

.columns .col:last-of-type {
  margin-right: 0
}

.columns .col:last-of-type h2 {
  margin-bottom: 35px
}

.columns .col:last-of-type>div {
  margin-bottom: 22px
}

.columns .col:last-of-type p:first-of-type {
  -webkit-box-flex: .5;
  -webkit-flex: .5;
  -moz-box-flex: .5;
  -ms-flex: .5;
  flex: .5
}

.general-content--columns {
  text-align: left;
  padding: 68px 0 45px;
  margin-top: 0
}

.general-content--columns .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.general-content--columns .col {
  padding: 0;
  margin-right: 80px
}

.general-content--columns .col h2 {
  margin-bottom: 21px
}

.general-content--columns .col h2 img {
  width: 33px;
  height: 33px
}

.general-content--columns .col p {
  margin-bottom: 10px
}

.general-content--columns .col:last-of-type {
  margin-right: 0
}

.general-content--columns .col:last-of-type h2 {
  margin-bottom: 25px
}

.general-content--columns ul {
  padding: 0;
  margin: 0
}

.general-content--columns ul li {
  font-size: 14px;
  color: #2c68a5;
  margin: 0 0 10px;
  list-style: none;
  position: relative;
  padding-left: 1rem
}

.general-content--columns ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 9px;
  height: 7px;
  background-image: url("../icons/orange-checkmark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

@media screen and (max-width:1350px) {
  .columns .col {
    padding: 30px 25px
  }

  .columns .col>div {
    margin: 0 0 15px
  }

  .columns .col .futureballs {
    min-width: 172px
  }

  .columns .col .futureballs span {
    width: 20px;
    height: 20px
  }

  .columns .col:last-of-type p:first-of-type {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-width: 60px
  }
}

@media screen and (max-width:1020px) {
  .columns .col>div {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px
  }

  .columns .col>div .futureballs {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 5px 0 0
  }
}

@media screen and (max-width:768px) {
  .columns {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 0 0
  }

  .columns .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 92.5%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 92.5%;
    flex: 0 0 92.5%;
    margin: 0 auto 20px !important
  }

  .columns .col h2 {
    text-align: center;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .columns .col h2 img {
    position: static;
    margin: 0 auto 15px;
    width: 60px;
    height: auto
  }

  .columns .col.info-col {
    padding: 30px 15px
  }

  .columns .col.info-col>div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
  }

  .columns .col.info-col>div p {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    text-align: left
  }

  .columns .col.info-col>div p+p {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%
  }

  .columns .col>div {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    text-align: center
  }

  .columns .col>div p {
    text-align: center;
    display: block
  }

  .columns .col>div>* {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .columns .col>div .futureballs {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -moz-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .columns .col:last-of-type {
    margin: 0
  }
}

@media screen and (max-width:765px) {
  .general-content--columns {
    padding: 40px 0 0
  }

  .general-content--columns .container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .general-content--columns .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 40px;
    text-align: center
  }

  .general-content--columns .col p {
    text-align: left
  }

  .general-content--columns .col ul li {
    padding: 0;
    text-align: left
  }

  .general-content--columns .col ul li:before {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: inline-block;
    margin-right: 5px
  }
}

@media screen and (max-width:550px) {
  .columns .col {
    padding: 30px 10px
  }

  .columns .col>div .futureballs {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .columns .col .container-small {
    width: 92.5%
  }

  .columns .col:last-of-type h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .columns .col:last-of-type h2 img {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    left: 0
  }
}

@media screen and (max-width:425px) {
  .columns .col:last-of-type h2 {
    font-size: 18px;
    margin-bottom: 20px
  }

  .columns .col:last-of-type h2 img {
    height: 35px;
    width: 35px
  }
}

@media screen and (max-width:320px) {
  .columns .col>div p {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center
  }
}

.lottery-numbers {
  overflow: visible
}

.lottery-numbers-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.lottery-numbers-container.numbers-container-column .lottery-numbers {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 95%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 95%;
  flex: 0 0 95%;
  margin-bottom: .3125rem
}

.lottery-numbers-container.numbers-container-column .lottery-numbers .lottery-number {
  width: -webkit-calc((100% - (6*.1875rem))/7);
  width: calc((100% - (6*.1875rem))/7);
  max-width: 100%
}

.lottery-numbers-container.numbers-container-column .lottery-numbers:last-of-type {
  margin-bottom: 0
}

.lottery-numbers-container>p {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
  -moz-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  font-size: 1em !important;
  font-weight: 700;
  margin: 0 0 .625rem;
  line-height: 1
}

.lottery-numbers-container .lottery-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

.lottery-numbers-container .lottery-numbers.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-numbers-container .lottery-numbers .lottery-number {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625em;
  position: relative;
  margin: .3125rem .1875rem 0 0;
  background: #e25f2c;
  width: 2.03125rem;
  min-width: 1.875rem;
  max-width: 8.5vw;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.lottery-numbers-container .lottery-numbers .lottery-number>span {
  height: 0;
  display: block;
  padding-top: 100%;
  position: relative
}

.lottery-numbers-container .lottery-numbers .lottery-number>span>span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%
}

.lottery-numbers-container .lottery-numbers .lottery-number.number {
  background-color: #e25f2c
}

.lottery-numbers-container .lottery-numbers .lottery-number.lucky {
  background-color: #38a4d0
}

.lottery-numbers-container .lottery-numbers .lottery-number.lucky.ireluk {
  background-color: #4c4d4a !important
}

.lottery-numbers-container .lottery-numbers .lottery-number.instant {
  background: #84bf45
}

.lottery-numbers-container .lottery-numbers .lottery-number.superstar {
  background-color: #38a4d0
}

.lottery-numbers-container .lottery-numbers .lottery-number.reintegro {
  background-color: #38a4d0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2
}

.lottery-numbers-container .lottery-numbers .lottery-number.bonus {
  background-color: #4c4d4a;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row {
  margin-bottom: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .flex-container .flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number {
  width: -webkit-calc((100% - (8*.1875rem))/9);
  width: calc((100% - (8*.1875rem))/9);
  font-size: initial
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number>span {
  font-size: initial
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number>span>span {
  font-size: .875em
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number.joker {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number.joker.half {
  height: 15px;
  border: 1px solid #e25f2c
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-row .lottery-number.joker.empty {
  background: none;
  border: 1px solid #e3e3e3
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-results .lottery-number.number {
  color: #f48b30;
  background: transparent
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-results .lottery-number.number.selected {
  background-color: #f48b30;
  color: #fff
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-results .lottery-number.blue {
  background-color: #38a4d0
}

.lottery-numbers-container .lottery-numbers.lottery-numbers-results .lottery-number.grey {
  background-color: #4c4d4a
}

.lottery-numbers-container.selected-numbers-container {
  display: grid;
  margin: 0 auto !important
}

.lottery-numbers-container.selected-numbers-container:nth-child(odd) {
  background: rgba(27, 144, 232, .1)
}

.lottery-numbers-container.selected-numbers-container:nth-child(even) {
  background: rgba(27, 144, 232, .2)
}

.lottery-numbers-container.selected-numbers-container.title-selected-container,
.lottery-numbers-container.selected-numbers-container:first-child {
  margin: 1rem auto !important;
  background: none
}

.lottery-numbers-container.selected-numbers-container p {
  margin: 0;
  text-align: left;
  padding: 5px 0 0 5px
}

.lottery-numbers-container.selected-numbers-container p.title-selected {
  font-weight: normal;
  min-width: 230px
}

.lottery-numbers-container.selected-numbers-container .lottery-numbers .lottery-numbers-row {
  min-width: 231px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.lottery-numbers-container.selected-numbers-container .lottery-numbers .lottery-number {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0
}

.lottery-numbers-container.selected-numbers-container .lottery-numbers .lottery-number.lucky {
  border: none
}

.lottery-numbers-container.selected-numbers-container .lottery-numbers .lottery-number span>span {
  font-size: 1.2rem !important;
  font-weight: 400
}

.lottery-numbers-container .results-type-joker {
  margin: 1rem 0 0;
  font-size: 1em !important;
  font-family: "Open sans"
}

@media only screen and (min-width:768px) {
  .lottery-numbers-container .lottery-numbers {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
  }
}

.matched-ticket {
  max-width: 500px;
  margin: 0 auto
}

.matched-ticket #matched-ticket-image {
  width: 100%
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0;
  margin: .5rem auto;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav.disabled {
  display: none
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav .matched-ticket-nav-button {
  cursor: pointer;
  color: #2c68a5;
  font-weight: 600
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav .matched-ticket-nav-button.disabled {
  visibility: hidden
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav #matched-ticket-nav-numbers span {
  color: #7a7b78;
  font-weight: 600;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-indent: -2px;
  font-size: .9em
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav #matched-ticket-nav-numbers span.selected {
  background: #2c68a5;
  color: #fff
}

.matched-ticket .matched-ticket-controls .matched-ticket-nav svg {
  fill: #2c68a5 !important;
  color: #2c68a5;
  width: .9375rem;
  height: .9375rem;
  vertical-align: text-top
}

.matched-ticket .matched-ticket-controls #matched-ticket-print {
  margin: .5rem auto 1rem
}

@media print {
  .matched-ticket {
    height: 98vh
  }

  .matched-ticket .matched-ticket-controls {
    display: none
  }

  .matched-ticket #matched-ticket-image {
    width: auto;
    height: 100%
  }
}

#cart {
  padding: 1.5625rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
  background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%)
}

.nav-cart {
  padding: 0 !important
}

.cart-items {
  padding: 0 1.25rem 1.25rem
}

.cart-items .empty-cart {
  padding: .625rem .625rem .625rem 0;
  color: #7a7b78;
  text-align: right;
  display: block;
  font-size: .85rem;
  text-decoration: underline;
  cursor: pointer
}

.cart-items .empty-cart:hover {
  color: #d8262d
}

.cart-items .cart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e3e3e3
}

.cart-items .cart-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.cart-items .cart-item .remove-cart-item {
  cursor: pointer
}

.cart-items .cart-item .remove-cart-item svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 100% !important;
  margin-left: .625rem;
  max-height: 1.25rem
}

.cart-items .cart-item .remove-cart-item svg path {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.cart-items .cart-item .remove-cart-item svg:hover * {
  stroke: #d8262d;
  opacity: 1
}

.cart-items .cart-item .lottery-flag {
  margin: 0;
  width: 2.5rem;
  height: auto;
  margin-right: .9375rem
}

.cart-items .cart-item .cart-item--main {
  text-align: left;
  margin-right: auto
}

.cart-items .cart-item .cart-item--main h4 {
  margin: 0 0 .1875rem;
  font-weight: 600;
  font-size: .875em
}

.cart-items .cart-item .cart-item--main span.ticket {
  background: #e25f2c
}

.cart-items .cart-item .cart-item--main p {
  font-size: .625em;
  font-weight: 600;
  opacity: .6;
  color: #7a7b78;
  margin: 0
}

.cart-items .cart-item p {
  margin: 0;
  color: #4c4d4a;
  font-weight: 700;
  opacity: .8
}

.cart-items .cart-item i {
  margin-left: .625rem;
  font-size: 1.375em;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

#header-cart-mobile .no-sides .cart-items .empty-cart {
  padding: 0 0 .625rem 0
}

.card-container {
  display: block
}

.cart-footer {
  border-top: 1px solid #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem
}

.cart-footer p {
  margin-bottom: 0 !important;
  color: #4c4d4a !important;
  font-weight: 700;
  font-size: 1em;
  opacity: .8
}

.cart-footer input {
  margin-bottom: 0
}

.cart-footer a.button {
  margin-top: 0
}

#checkout .container {
  padding: 1.25rem 0
}

#checkout .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

#checkout .has-duplicate {
  background: rgba(216, 38, 45, .2)
}

#checkout p,
#checkout h3,
#checkout h4 {
  margin: 0;
  padding: 0;
  color: #2c68a5
}

#checkout h4.checkout-lottery-name {
  line-height: 1.2
}

#checkout span.checkout-syndicate-tag {
  color: #7a7b78;
  font-weight: 600;
  opacity: .6
}

#checkout .org,
#checkout .orange-text {
  color: #e25f2c !important
}

#checkout .combined-jackpot-title {
  color: #e25f2c;
  font-size: 1em;
  font-family: "Open sans"
}

#checkout .taleft {
  text-align: left
}

#checkout .taright {
  text-align: right
}

#checkout .half {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

#checkout .half .item {
  width: 48%
}

#checkout .trigger {
  padding-right: 2rem;
  display: inline;
  position: relative;
  color: #2c68a5;
  line-height: 2
}

#checkout .trigger:before,
#checkout .trigger:after {
  -webkit-transition: .5s ease all;
  transition: .5s ease all
}

#checkout .trigger:before {
  content: 'Show draw dates'
}

#checkout .trigger:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: .9rem;
  height: .9rem;
  top: .2rem;
  background: url("../icons/icon-angle-down.svg");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: .9375rem;
  width: .9375rem;
  margin-left: .625rem;
  margin-top: .15625rem
}

#checkout .trigger.syndicates-trigger:before {
  content: 'Show numbers'
}

#checkout .active .trigger:before {
  content: 'Hide draw dates'
}

#checkout .active .trigger:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

#checkout .cart-header {
  padding: 1rem 0;
  position: relative
}

#checkout .cart-header .empty-cart {
  display: block;
  text-align: right;
  width: 100%;
  color: #fff;
  text-decoration: underline;
  padding: 5px 10px 0;
  cursor: pointer;
  font-size: .85rem
}

#checkout .cart-header>h1 {
  color: #fff;
  font-size: 1.875rem;
  text-align: left;
  font-weight: 600;
  width: 92.5%;
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 0 1.5625rem
}

#checkout .cart-header>h1:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  margin-top: .9375rem
}

#checkout .cart-header .cart-empty {
  padding: 2rem
}

#checkout .cart-header .cart-empty svg {
  width: 6rem;
  height: 6rem
}

#checkout .cart-header .cart-empty .cart-empty-title {
  font-size: 1.375em;
  line-height: 1.3
}

#checkout .cart-header .cart-empty p {
  font-size: 1em
}

#checkout .lottery-card {
  padding: 2rem;
  margin-bottom: 1rem
}

#checkout .lottery-card.checkout-card {
  max-width: 100%
}

#checkout .lottery-card.checkout-card .top {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f1f1
}

#checkout .lottery-card.checkout-card .top .logo {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem
}

#checkout .lottery-card.checkout-card .top .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

#checkout .lottery-card.checkout-card .top p {
  font-size: .9rem;
  margin-bottom: .5rem
}

#checkout .lottery-card.checkout-card .top .remove {
  position: absolute;
  top: 0;
  right: 0
}

#checkout .lottery-card.checkout-card .top .remove svg g {
  -webkit-transition: .5s ease all;
  transition: .5s ease all
}

#checkout .lottery-card.checkout-card .top .remove:hover {
  cursor: pointer
}

#checkout .lottery-card.checkout-card .top .remove:hover svg g {
  stroke: red;
  opacity: 1
}

#checkout .lottery-card.checkout-card .details {
  padding: 1rem 0 0 !important;
  margin: 0 !important
}

#checkout .lottery-card.checkout-card .details h1,
#checkout .lottery-card.checkout-card .details p.lottery-price--jackpot-pending {
  font-size: 2.375em;
  line-height: 1.3;
  color: #e25f2c;
  margin: 0;
  font-weight: bold
}

#checkout .lottery-card.checkout-card .details #dates .trigger:before,
#checkout .lottery-card.checkout-card .details #dates2 .trigger:before {
  content: 'Show draw dates'
}

#checkout .lottery-card.checkout-card .details #dates.active .trigger:before,
#checkout .lottery-card.checkout-card .details #dates2.active .trigger:before {
  content: 'Hide draw dates'
}

#checkout .lottery-card.checkout-card .details .draw-dates {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 0;
  margin: 1rem 0;
  max-height: 0;
  overflow: hidden
}

#checkout .lottery-card.checkout-card .details .draw-dates span {
  display: inline-block;
  font-size: .8rem;
  opacity: .7;
  color: #2c68a5;
  margin: .2rem
}

#checkout .lottery-card.checkout-card .details .active .draw-dates {
  max-height: 1800px;
  -webkit-transition: all ease .5s;
  transition: all ease .5s
}

#checkout .lottery-card.checkout-card .details .number-list .single {
  margin: 1rem 0
}

#checkout .lottery-card.checkout-card .details .number-list .single h4 {
  margin-left: .5rem;
  font-weight: 400
}

#checkout .lottery-card.checkout-card .details .number-list .single .numbers {
  position: relative;
  margin-top: .5rem;
  width: 100%;
  padding: .5rem;
  background: #f3f9fe
}

#checkout .lottery-card.checkout-card .details .number-list .single .numbers span {
  color: #2c68a5;
  padding-right: .75rem;
  font-size: 1.2rem;
  font-weight: 100
}

#checkout .lottery-card.checkout-card .details .number-list .single .numbers .edit {
  position: absolute;
  right: .5rem;
  top: .5rem
}

#checkout .lottery-card.checkout-card .details .number-list .single .numbers .edit svg:hover {
  cursor: pointer
}

#checkout .lottery-card.checkout-card .details #multiplier.number-list .single .flex svg g {
  opacity: 1
}

#checkout .lottery-card.checkout-card .details #multiplier.number-list .single .flex svg path {
  fill: #41b304 !important
}

#checkout .lottery-card.checkout-card .details #multiplier.number-list .single .flex svg circle {
  stroke: #41b304 !important
}

#checkout .lottery-card.checkout-card .details #multiplier .trigger:before {
  content: 'Show all games' !important
}

#checkout .lottery-card.checkout-card .details #multiplier.active .trigger:before {
  content: 'Hide all games' !important
}

#checkout .lottery-card.checkout-card .details #multiplier.active .all-games {
  max-height: 1800px;
  -webkit-transition: all ease .5s;
  transition: all ease .5s
}

#checkout .lottery-card.checkout-card .details #multiplier .multiplier {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.2rem;
  font-weight: 200;
  color: #41b304;
  margin: 0
}

#checkout .lottery-card.checkout-card .details #multiplier .multiplier svg {
  margin-left: .5rem
}

#checkout .lottery-card.checkout-card .details #multiplier .all-games {
  max-height: 0;
  overflow: hidden
}

#checkout .lottery-card.checkout-card .details .card-total {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  padding-top: 0
}

#checkout .lottery-card.checkout-card .details .card-total .button {
  padding: .55rem .8rem .65rem .6rem !important;
  font-weight: 200;
  font-size: .9rem
}

#checkout .lottery-card.checkout-card .details .card-total .button.disabled {
  pointer-events: none;
  opacity: .5
}

#checkout .lottery-card.checkout-card .details .card-total .button.remove-multi,
#checkout .lottery-card.checkout-card .details .card-total .button.remove-joker {
  color: #2c68a5;
  padding: 0 .8rem .65rem 0 !important;
  border: none !important
}

#checkout .lottery-card.checkout-card .details .card-total .button.remove-multi svg,
#checkout .lottery-card.checkout-card .details .card-total .button.remove-joker svg {
  width: 100%;
  margin-right: .5rem
}

#checkout .lottery-card.checkout-card .details .card-total .button.remove-multi svg path,
#checkout .lottery-card.checkout-card .details .card-total .button.remove-joker svg path {
  stroke: #41b304
}

#checkout .lottery-card.checkout-card .details .card-total .button.remove-multi svg polyline,
#checkout .lottery-card.checkout-card .details .card-total .button.remove-joker svg polyline {
  color: #41b304
}

#checkout .lottery-card.checkout-card .details .card-total .button.remove-multi img.multi-close,
#checkout .lottery-card.checkout-card .details .card-total .button.remove-joker img.multi-close {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: .5rem
}

#checkout .lottery-card.checkout-card .details .card-total h3 {
  font-size: 1.6rem;
  font-weight: 100
}

#checkout .lottery-card.checkout-card .details .card-total h3 span {
  font-weight: 400
}

#checkout .lottery-card.checkout-card .details .total,
#checkout .lottery-card.checkout-card .details .mob-total {
  width: 100%
}

#checkout .lottery-card.checkout-card .details .total h3,
#checkout .lottery-card.checkout-card .details .mob-total h3 {
  font-size: 1.6rem;
  font-weight: 100;
  margin-left: 1rem;
  min-width: 100px
}

#checkout .lottery-card.checkout-card .details .total h3 span,
#checkout .lottery-card.checkout-card .details .mob-total h3 span {
  font-size: 1.2rem;
  color: #e25f2c
}

#checkout .lottery-card.checkout-card .details .total {
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

#checkout .lottery-card.checkout-card .details .total .three-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 3rem;
  position: relative;
  top: -10px
}

@supports(-ms-ime-align:auto) {
  #checkout .lottery-card.checkout-card .details .total .three-col {
    max-width: 150px
  }
}

#checkout .lottery-card.checkout-card .details .total .three-col .col {
  width: 33% !important
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .add-syndicate,
#checkout .lottery-card.checkout-card .details .total .three-col.stepper .minus-syndicate {
  width: 2rem !important;
  height: 2rem !important;
  background: #e25f2c;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .minmaxsyndicate {
  pointer-events: none;
  opacity: .5
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .minus span {
  position: absolute;
  top: 10%
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num {
  background: #e25f2c;
  width: 4rem !important;
  height: 4rem !important;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  border-radius: .5rem;
  margin: 0 .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num h3 {
  border: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  margin: 0;
  padding: 0;
  font-size: 2rem !important;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  height: auto;
  color: #fff;
  line-height: 1.1
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  #checkout .lottery-card.checkout-card .details .total .three-col.stepper .num h3 {
    max-width: 60px !important
  }
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num span {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: normal
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num span:first-child {
  font-size: 2rem
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num span:last-child {
  font-size: .7rem;
  text-transform: uppercase
}

#checkout .lottery-card.checkout-card .details .total .three-col.stepper .num h5 {
  margin: 0;
  color: #fff
}

#checkout .lottery-card.checkout-card .details .mob-total {
  display: none;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #f1f1f1
}

#checkout .lottery-card.checkout-card .details .mob-total h3 {
  margin-bottom: 0
}

#checkout .lottery-card-account {
  max-width: 40rem !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none
}

#checkout .lottery-card-account h3 {
  color: #e25f2c
}

#checkout .lottery-deck--quickplay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

#checkout .lottery-deck--quickplay .lottery-card {
  margin-bottom: .9375rem;
  position: relative;
  padding: 1.5625rem 1.25rem .9375rem 1.25rem;
  min-width: 0
}

#checkout .lottery-deck--quickplay .lottery-card .orange {
  font-weight: 600;
  font-size: 1.125em;
  margin: 0
}

#checkout .lottery-deck--quickplay .lottery-card p {
  font-size: .875em;
  margin: .3125rem 0 .625rem;
  text-align: left
}

#checkout .lottery-deck--quickplay .lottery-card img {
  width: 2.1875rem;
  height: auto;
  position: absolute;
  top: 1.5625rem;
  right: 1.5625rem
}

#checkout .lottery-deck--quickplay .lottery-card .add-quickplay {
  color: #e25f2c;
  font-size: .75em;
  display: block;
  text-decoration: underline
}

#checkout .checkout-footer {
  padding: 2rem 0 0 0
}

#checkout .checkout-footer .cart-total {
  padding: 3.125rem 0;
  max-width: 320px;
  margin: auto
}

#checkout .checkout-footer .cart-total,
#checkout .checkout-footer .cart-total .flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

#checkout .checkout-footer .cart-total .funds {
  display: block;
  width: 100%;
  max-width: 80rem
}

#checkout .checkout-footer .cart-total .funds p {
  margin: .9375rem 0 0;
  font-weight: 400;
  font-size: 1em;
  color: #e25f2c;
  font-weight: 600
}

#checkout .checkout-footer .cart-total span.total-cost {
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
  padding: 1.09375rem 1.5625rem;
  margin: 0
}

#checkout .checkout-footer .cart-total p {
  margin: .9375rem 0 0
}

#checkout .checkout-footer .cart-total h3 {
  margin: 0 0 .9375rem;
  font-size: 1.375em;
  color: #e25f2c
}

#checkout .cart-purchase p {
  color: #e25f2c !important;
  font-weight: 600;
  font-size: 1em
}

#checkout .cart-purchase button {
  margin-bottom: .3125rem;
  width: 13.75rem;
  font-size: 1em;
  line-height: 1;
  padding: .9375rem 0
}

#checkout .checkout-payment-container {
  display: none
}

#checkout .checkout-payment-container.added {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background: #fff;
  border: 1px solid #ccc;
  padding: .5rem 1rem;
  max-width: 98%;
  margin: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #eee
}

#checkout .checkout-payment-container p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

#checkout .checkout-payment-container #checkout-payment-mindeposit,
#checkout .checkout-payment-container #checkout-payment-mindeposit-amount {
  padding: 0
}

#checkout .checkout-payment-container span {
  color: #e25f2c;
  padding: 5px
}

#checkout .flex-column-single #g-explainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

#checkout .flex-column-single #g-symbol {
  width: 100%;
  height: 100%;
  margin: auto 1%;
  padding: 1% 0;
  max-width: 28px;
  min-width: 28px;
  max-height: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  background-color: #38a4d0
}

.lottery-card.cart-empty {
  padding: 1.5625rem;
  margin-bottom: .3125rem
}

.lottery-card.cart-empty .cart-empty-title {
  color: #e25f2c;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0;
  margin: 1.25rem 0 .625rem
}

.lottery-card.cart-empty .cart-empty-title span {
  font-weight: 600;
  font-size: 100%;
  vertical-align: baseline
}

.lottery-card.cart-empty p {
  color: #7a7b78;
  font-size: .6875em;
  font-weight: 400
}

.lottery-card.cart-empty .button {
  margin-top: .9375rem
}

.lottery-card.lottery-card-results .game-container {
  margin: 0 auto;
  margin: 0 0 0 auto !important;
  width: 50%
}

.lottery-card.lottery-card-results .game-container.multiplier-container .game-number-line svg * {
  opacity: 1
}

.lottery-card.lottery-card-results .game-container.multiplier-container .game-number-line svg circle {
  stroke: #41b304
}

.lottery-card.lottery-card-results .game-container.multiplier-container .game-number-line svg path {
  fill: #41b304
}

.lottery-card.lottery-card-results .game-container>h3 {
  text-align: left
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines {
  margin-top: 1rem
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .flex svg {
  display: none
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .flex p.game-count {
  padding: 0 0 0 .625rem !important;
  font-size: 1rem !important;
  font-weight: 400;
  text-align: left;
  margin: 0 !important
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line {
  border-bottom: 1px solid #e3e3e3
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container {
  margin: 0
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container .lottery-numbers .lottery-number {
  background-color: none;
  background: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  color: #e25f2c;
  margin: 0
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container .lottery-numbers .lottery-number.number {
  background-color: none
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container .lottery-numbers .lottery-number.number span {
  font-weight: 400
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container .lottery-numbers .lottery-number.lucky span {
  font-weight: 400;
  color: #38a4d0
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-numbers-container .lottery-numbers .lottery-number.primitiva-lucky {
  display: block
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions {
  display: block;
  right: 10px
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions img {
  display: inline-block;
  width: 15px;
  height: 15px;
  cursor: pointer
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .primitiva-custom-numbers {
  display: block
}

.lottery-card.lottery-card-results .game-container .play-now--game .game-number-lines .game-number-line .custom-numbers--action .button {
  margin: 1rem 0 !important
}

.lottery-card.lottery-card-results .game-container .play-now--game .number-lines-expand {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -moz-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  text-decoration: none;
  font-weight: 500;
  margin-left: 1%
}

.lottery-card.lottery-card-results .game-container.USPB .play-now--game .game-number-lines .flex svg,
.lottery-card.lottery-card-results .game-container.USMM .play-now--game .game-number-lines .flex svg {
  position: relative;
  display: block;
  top: 3px
}

.lottery-card.lottery-card-results .game-container .card-total h4.multiplier {
  color: #41b304 !important;
  font-size: 1.2rem;
  font-weight: 200
}

.lottery-card.lottery-card-results .game-container .card-total h4.multiplier svg {
  margin-left: .5em
}

#account-payment-methods {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left
}

#account-payment-methods>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 10px 5px;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  cursor: pointer
}

#account-payment-methods>li.active {
  -webkit-box-shadow: 0 0 4px 2px #2c68a5;
  -moz-box-shadow: 0 0 4px 2px #2c68a5;
  box-shadow: 0 0 4px 2px #2c68a5
}

#account-payment-methods>li.disabled {
  opacity: .8;
  pointer-events: none;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3')
}

#account-payment-methods>li.Visa {
  background: -webkit-gradient(linear, left top, left bottom, from(#2f1191), to(#2f1191));
  background: -webkit-linear-gradient(top, #2f1191, #2f1191);
  background: linear-gradient(to bottom, #2f1191, #2f1191)
}

#account-payment-methods>li.Visa a {
  color: #fff !important
}

#account-payment-methods>li.Visa .payment-content .expiry-message {
  color: #fff !important
}

#account-payment-methods>li.Mastercard {
  background: -webkit-gradient(linear, left top, left bottom, from(#972429), to(#63191d));
  background: -webkit-linear-gradient(top, #972429, #63191d);
  background: linear-gradient(to bottom, #972429, #63191d)
}

#account-payment-methods>li.Mastercard a {
  color: #fff !important
}

#account-payment-methods>li.Mastercard .cc-name,
#account-payment-methods>li.Mastercard .cc-expiry {
  color: #1a1f71 !important
}

#account-payment-methods>li.Mastercard .payment-content .expiry-message {
  color: #fff !important
}

#account-payment-methods .payment-expand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-decoration: none !important;
  margin: auto;
  height: 3rem
}

#account-payment-methods .payment-expand.active {
  opacity: 1 !important
}

#account-payment-methods .payment-expand.active+.payment-content {
  margin-top: .5rem;
  margin-bottom: 1rem;
  display: block
}

#account-payment-methods .payment-expand.active+.payment-content.ccard {
  max-height: 450px !important
}

#account-payment-methods .payment-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

#account-payment-methods .payment-content #bt-form.disabled,
#account-payment-methods .payment-content #bt-form-manage.disabled {
  opacity: .8;
  pointer-events: none;
  -webkit-filter: blur(3px);
  filter: blur(3px)
}

#account-payment-methods .payment-content button[type="submit"] {
  margin: 1rem auto;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

#account-payment-methods .payment-content button[type="submit"].update-button {
  margin: 0 !important
}

#account-payment-methods .credit-card-layout {
  max-width: 80%;
  margin: auto;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px
}

#account-payment-methods .credit-card-layout.updateCard {
  margin-top: 5px
}

#account-payment-methods .credit-card-layout .cc-number {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1f71;
  display: none
}

#account-payment-methods .credit-card-layout .cc-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 80%
}

#account-payment-methods .credit-card-layout .cc-name-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

#account-payment-methods .credit-card-layout .cc-name {
  color: #1a1f71;
  font-size: 1.1rem
}

#account-payment-methods .credit-card-layout .title {
  text-transform: uppercase;
  color: #1a1f71;
  font-weight: 600;
  font-size: .75rem;
  opacity: .6
}

#account-payment-methods .credit-card-layout .cc-date-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

#account-payment-methods .credit-card-layout .cc-expiry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1a1f71;
  font-size: 1.1rem
}

#account-payment-methods .instructions {
  color: #fff
}

#account-payment-methods a {
  display: block;
  width: 100%;
  color: #333;
  font-weight: bold
}

#account-payment-methods img {
  max-width: 3rem;
  margin-right: 1rem;
  opacity: 1;
  vertical-align: middle
}

#account-payment-methods img.payment-visa {
  margin-right: .5rem
}

#account-payment-methods #paypal-button,
#account-payment-methods #paypal-button-save {
  width: 320px;
  margin: auto
}

#account-withdrawl-methods #paypal-button-withdraw {
  width: 320px;
  margin: auto
}

#account-withdrawl-methods>li.disabled {
  opacity: .8;
  pointer-events: none;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3')
}

@media screen and (max-width:768px) {
  #checkout .lottery-card.checkout-card .details .total .three-col {
    position: initial;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .5rem auto
  }
}

@media screen and (max-width:768px) {
  #checkout h4 {
    line-height: 1
  }

  #checkout .cart-header {
    padding: 1rem 0
  }

  #checkout .cart-header h1 {
    color: #fff;
    font-size: 2em;
    text-align: center;
    padding: 0;
    margin: 0 !important
  }

  #checkout .bg-blue-gradient .half .item {
    text-align: center;
    width: 100%
  }

  #checkout .bg-blue-gradient .half .item .total {
    display: block
  }

  #checkout .bg-blue-gradient .lottery-card {
    max-width: 100% !important;
    max-width: 50rem !important
  }

  #checkout .bg-blue-gradient .lottery-card .game-container {
    width: 100%;
    margin: 1rem auto auto !important
  }

  #checkout .bg-blue-gradient .lottery-card .game-container .lottery-numbers {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: 0;
    flex: 0
  }

  #checkout .bg-blue-gradient .lottery-card .game-container .number-lines-expand {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
  }

  #checkout .bg-blue-gradient .lottery-card.checkout-card .details .total h3,
  #checkout .bg-blue-gradient .lottery-card.checkout-card .details .mob-total h3 {
    margin: 0 auto
  }

  #checkout .bg-blue-gradient .lottery-card.checkout-card .details .draw-dates {
    margin: 0
  }

  #checkout .bg-blue-gradient .lottery-card.checkout-card .top {
    padding-bottom: 1rem
  }

  #checkout .checkout-footer {
    padding: 0
  }

  #checkout .checkout-footer .cart-total {
    padding: 0
  }

  #checkout .checkout-footer .checkout-footer--bottom .cart-payment-details .container {
    padding: 0 !important
  }

  #checkout .checkout-footer .checkout-footer--bottom .cart-payment-details .container .lottery-card {
    padding: 0 0 1rem !important;
    width: 100%;
    overflow: hidden;
    max-width: 100% !important;
    margin-bottom: 0;
    min-width: 18.75rem
  }

  #checkout .checkout-footer .checkout-footer--bottom .cart-payment-details .container .lottery-card.lottery-card-account h3 {
    font-size: 1.375em;
    font-family: "Open sans";
    margin: 0 auto !important
  }

  #checkout .checkout-footer .checkout-footer--bottom .cart-payment-details+.cart-purchase {
    padding: 1.875rem 0
  }

  #checkout .checkout-footer .checkout-footer--bottom .container-small {
    padding: 0 !important
  }

  #checkout .checkout-footer .checkout-footer--bottom .container-small .regulation-digits {
    margin: 1.25rem 0
  }

  #checkout .checkout-footer .checkout-footer--bottom .checkout-add-games {
    background: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
    background: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    background: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    padding: 1.875rem 0 1.875rem
  }
}

@media screen and (max-width:600px) {
  #checkout .checkout-card {
    padding: 1rem
  }

  #checkout .checkout-card .number-list h3,
  #checkout .checkout-card .number-list .single {
    text-align: left
  }

  #checkout .checkout-card .card-total {
    text-align: center
  }

  #checkout .checkout-card .card-total .button {
    font-size: .9rem;
    margin-bottom: 0 !important
  }

  #checkout .checkout-card .card-total h3,
  #checkout .checkout-card .card-total h4 {
    margin: 1.5rem auto 0;
    text-align: center
  }

  #checkout .checkout-card .card-total .multiplier {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
  }

  #checkout .checkout-card.syndicates .details .mob-total {
    display: block
  }

  #checkout .checkout-card.syndicates .details h3.org {
    margin-bottom: 1rem
  }

  #checkout .checkout-card.syndicates .details h3.combined-jackpot-title {
    margin-bottom: 0
  }

  #checkout #account-payment-methods .credit-card-layout {
    max-width: 100% !important
  }

  #checkout #account-payment-methods .credit-card-layout .cc-meta {
    max-width: 100% !important
  }

  #checkout .checkout-payment-container.added {
    max-width: 100%;
    padding: .5rem
  }

  #checkout .checkout-payment-container p {
    font-size: .85rem
  }
}

@media screen and (max-width:500px) {
  #checkout .lottery-card.checkout-card .top .taleft {
    display: block;
    text-align: center
  }

  #checkout .lottery-card.checkout-card .top .taleft .logo {
    margin: auto
  }

  #checkout .lottery-card.checkout-card .top h4.checkout-lottery-name {
    line-height: 1.5
  }

  #checkout .lottery-card.checkout-card .top span.is-label {
    margin: 1px auto auto
  }

  #checkout .lottery-card.checkout-card .details h1 {
    font-size: 1.875em;
    margin: 0
  }

  #checkout .lottery-card.checkout-card .details .draw-dates {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  #checkout .lottery-card.checkout-card .details .draw-dates span {
    width: 40%;
    font-size: .875rem
  }

  #checkout .lottery-card.checkout-card .expand .tables .title span {
    display: block
  }

  #checkout .lottery-card.checkout-card .card-total {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
  }
}

@media screen and (max-width:340px) {
  .game-number-lines .game-number-line .number-line--numbers {
    padding-right: 0 !important
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions {
    right: 0 !important
  }
}

@media only screen and (min-width:860px) {
  .cart-total {
    padding: 0 !important
  }

  .checkout-footer--bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
    background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 1rem 0 3rem 0;
    margin: 2rem auto auto auto
  }

  .checkout-footer--bottom .card-container {
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    max-width: 53.75rem;
    width: 92.5%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 3.125rem auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .checkout-footer--bottom .card-container .container-small {
    max-width: 73.75rem;
    padding: 0
  }

  .checkout-footer--bottom .card-container .regulation-digits {
    margin: auto
  }

  .cart-payment-details {
    background: #fff;
    padding: 1rem 0
  }

  .cart-payment-details .container {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0
  }

  .cart-payment-details .container .lottery-card {
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: visible;
    padding: 0 !important
  }

  .cart-payment-details .container .lottery-card h3 {
    text-align: left;
    margin: 0 0 .625rem !important
  }

  .cart-payment-details .container .lottery-card .select-dropdown {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .cart-payment-details .container .lottery-card .tab-content.active {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: visible
  }

  .cart-payment-details .container .lottery-card .tab-content.active .input-row {
    width: 100%
  }

  .cart-payment-details .container .lottery-card .tab-content.active .terms-conditions-check {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .cart-payment-details .container .lottery-card .tab-content.active input {
    font-size: .75em
  }

  .cart-payment-details+.cart-purchase {
    margin-top: 2rem;
    border-left: 1px solid #2c68a5;
    margin-left: 1.5625rem;
    padding-left: 1.5625rem
  }

  .cart-purchase {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-top: 1.875rem
  }

  #checkout-voucher.active {
    margin-top: 1.875rem
  }

  .checkout-add-games {
    background: none;
    padding-top: 0
  }
}

.express-checkout {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.express-checkout.active {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

.express-checkout>.container {
  padding: 3.125rem 1.5625rem;
  text-align: center
}

.express-checkout>.container h3 {
  line-height: 1.4
}

.express-checkout .checkout-balance {
  background: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
  background: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  background: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  width: 100%
}

.express-checkout .checkout-balance p {
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-size: 1.125em;
  margin: 0;
  padding: .9375rem 0
}

.express-checkout .checkout-balance p span {
  display: block;
  font-weight: 700;
  font-size: 125%
}

.express-checkout .checkout-actions {
  background: #fff;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1.875rem 3.125rem !important;
  text-align: center;
  overflow: hidden;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px
}

.express-checkout .checkout-actions p {
  color: #2c68a5;
  font-weight: 700
}

.express-checkout .checkout-actions p span {
  display: block;
  color: #e25f2c;
  font-size: 125%
}

.express-checkout .checkout-actions .button {
  margin-bottom: .9375rem;
  width: 12.5rem
}

.express-checkout .checkout-actions .button:last-of-type {
  margin-bottom: 0
}

.lottery-card {
  background-color: #fff;
  padding: 1.5625rem .625rem;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  overflow: hidden;
  position: relative;
  max-width: 22.5rem;
  margin: 0 auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%
}

.lottery-card.card-gradient {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#f5993c), to(#f76b1c));
  background-image: -webkit-linear-gradient(top left, #f5993c 0%, #f76b1c 100%);
  background-image: linear-gradient(to bottom right, #f5993c 0%, #f76b1c 100%);
  text-align: center;
  padding: 3.125rem 1.875rem
}

.lottery-card.card-gradient p {
  color: #fff;
  font-size: 1.125em
}

.lottery-card.card-gradient h2 {
  font-size: 1.875em;
  line-height: 1.3
}

.lottery-card .card-banner {
  width: 170px;
  background: #d8262d;
  position: absolute;
  top: 21px;
  left: -40px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  padding: .3125rem 0;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  z-index: 99;
  color: #fff !important
}

.lottery-card .card-banner.joker {
  background: #84bf45
}

.lottery-card .card-trash {
  position: absolute;
  right: .9375rem;
  top: .9375rem;
  width: 1.4375rem;
  height: 1.4375rem;
  cursor: pointer;
  z-index: 99
}

.lottery-card .title {
  color: #e25f2c;
  font-size: 2.625em;
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: 0
}

.lottery-card .icon-return:before {
  content: url("../icons/icon-return.svg");
  position: absolute;
  top: .9375rem;
  right: .9375rem;
  cursor: pointer
}

.lottery-card .lottery-card--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.875rem
}

.lottery-card .lottery-card--header img {
  width: 2.5625rem;
  height: 2.5625rem;
  margin: 0 .9375rem 0 0
}

.lottery-card .lottery-card--header h2 {
  margin: 0 0 .3125rem
}

.lottery-card .lottery-card--header p {
  font-size: 1em;
  font-weight: 700;
  margin: 0
}

.lottery-card .lottery-card--content {
  max-width: 95%;
  margin: 0 auto
}

@supports(-ms-ime-align:auto) {
  .lottery-card .lottery-card--content {
    max-width: 75%
  }
}

.lottery-card .lottery-flag {
  margin: 0 auto 1.25rem;
  display: block
}

.lottery-card h2 {
  font-size: 1.25em;
  color: #2c68a5;
  font-weight: 700;
  letter-spacing: .03125rem;
  margin: 0 0 .3125rem
}

.lottery-card h3 {
  font-size: 1.25em;
  color: #e25f2c;
  line-height: 1.4;
  margin: 0 0 1.5625rem
}

.lottery-card p {
  color: #2c68a5;
  font-size: 1.125em;
  margin: 0 0 .625rem;
  font-family: "Open sans"
}

.lottery-card p a {
  color: inherit;
  text-decoration: underline;
  display: inline
}

.lottery-card p.orange {
  color: #e25f2c;
  font-size: .8125em
}

.lottery-card .card-icon svg {
  margin: 0 auto 1.5625rem;
  display: block;
  height: 3.125rem;
  width: auto
}

.lottery-card .lottery-card--amount {
  color: #e25f2c;
  font-size: 2.375em;
  margin: 0 0 .625rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1;
  font-family: "Open sans"
}

.lottery-card .lottery-card--amount .lottery-card--currency {
  position: relative;
  top: -.625rem;
  right: 0 !important
}

.lottery-card .lottery-card--amount.extra-tag {
  max-width: 95%;
  font-size: 1.5625em !important
}

.lottery-card .lottery-card--amount-pending {
  font-size: 1.75em !important;
  padding-top: .625rem
}

.lottery-card .lottery-card--amount-thin {
  color: #e25f2c;
  font-size: 2.625em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  margin: 1.25rem 0
}

.lottery-card .lottery-card--amount-thin span {
  font-size: 45%;
  margin-right: .3125rem
}

.lottery-card .lottery-card--currency {
  color: inherit;
  font-size: 50%;
  position: absolute;
  right: 100%;
  margin-right: .3125rem;
  line-height: 1.3;
  font-weight: 700
}

.lottery-card .button {
  margin-top: 1rem
}

.lottery-card .read-more {
  margin-top: .9375rem;
  color: #2c68a5;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card.lottery-card-offset {
  margin-bottom: -4.6875rem;
  position: relative;
  top: -4.6875rem
}

.lottery-card.lottery-card-transparent {
  background: transparent
}

.lottery-card.lottery-card-transparent .flipper {
  background: transparent;
  border: 2px solid #fff
}

.lottery-card.lottery-card-left {
  text-align: left
}

.lottery-card.no-sides {
  padding: 1.5625rem 0 !important
}

.lottery-card.no-sides .card-container {
  padding: 0 .625rem
}

.lottery-card.lottery-card-contact {
  padding: 2.5rem 1.25rem
}

.lottery-card.lottery-card-contact img {
  max-width: 12.5rem
}

.lottery-card.lottery-card-contact h3 {
  font-family: "Open sans";
  font-size: 1.375em;
  font-weight: 600;
  margin: 1.875rem 0 .625rem
}

.lottery-card.lottery-card-contact p {
  font-size: .875em;
  font-weight: 400;
  font-family: "Open sans";
  color: #2c68a5;
  line-height: 1.5
}

.lottery-card.lottery-card-contact p a {
  color: inherit;
  font-size: inherit;
  text-decoration: none
}

.lottery-card.lottery-card-contact p span {
  font-weight: 600
}

.lottery-card.lottery-card-contact>a {
  font-size: .875em;
  font-weight: 600;
  font-family: "Open sans";
  color: #2c68a5;
  line-height: 1.3;
  text-decoration: underline;
  max-width: 13.75rem
}

.lottery-card.lottery-card-privacy {
  text-align: left;
  padding: 1.25rem .9375rem
}

.lottery-card.lottery-card-privacy h3,
.lottery-card.lottery-card-privacy p {
  font-family: "Open sans";
  font-size: .875em;
  font-weight: 600;
  color: #4c4d4a
}

.lottery-card.lottery-card-privacy h3 {
  margin: 0 0 .3125rem
}

.lottery-card.lottery-card-privacy p {
  font-weight: 400;
  margin-bottom: 1.25rem
}

.lottery-card.lottery-card-privacy p.bold {
  font-weight: 600
}

.lottery-card.lottery-card-privacy p a {
  color: inherit;
  line-height: 1;
  text-decoration: underline
}

.lottery-card.lottery-card--basic {
  padding: 1.5625rem .625rem !important
}

.lottery-card.lottery-card--basic *:last-child {
  margin-bottom: 0
}

.lottery-card.lottery-card-pending {
  background-color: #e3e3e3
}

.lottery-card.lottery-card--grey {
  text-align: left
}

.lottery-card.lottery-card--grey .radio-container {
  margin: 1.5625rem 0 0 !important
}

.lottery-card.lottery-card--grey .radio-container.over-limit {
  opacity: .5;
  cursor: not-allowed
}

.lottery-card.lottery-card--grey .radio-container.over-limit:active {
  pointer-events: none
}

.lottery-card.lottery-card--grey .radio-container.draw-reintegro {
  margin: auto auto auto !important;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.lottery-card.lottery-card--grey .radio-container.draw-reintegro label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%
}

.lottery-card.lottery-card--grey p {
  color: #7a7b78;
  margin: 0;
  font-size: 1em;
  font-weight: 600
}

.lottery-card.lottery-card--grey p.orange {
  color: #e25f2c;
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: .9375rem
}

.lottery-card.lottery-card--grey.flip .card-flip:before,
.lottery-card.lottery-card--grey.flip .card-flip:hover {
  background-color: transparent !important
}

.lottery-card.lottery-card--grey .flipper {
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1)
}

.lottery-card.lottery-card--grey .flipper .card-flip {
  top: 1.71875rem
}

.lottery-card.lottery-card--grey .flipper .lottery-card-front,
.lottery-card.lottery-card--grey .flipper .lottery-card-back {
  padding: 1.5625rem 5.3125rem 1.875rem 1.875rem
}

.lottery-card.lottery-card--grey .flipper .lottery-card-back {
  background-color: rgba(0, 0, 0, .05)
}

.lottery-card.lottery-card--works {
  background-color: transparent;
  border: 2px solid #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 1.875rem;
  font-size: 16px
}

.lottery-card.lottery-card--works svg,
.lottery-card.lottery-card--works img {
  margin: 0 auto 1.25rem;
  height: 3.125rem;
  min-width: 3.125rem
}

.lottery-card.lottery-card--works img {
  height: 2.5rem;
  margin-bottom: 1.875rem
}

.lottery-card.lottery-card--works p {
  color: #fff;
  font-size: 1.125em;
  margin: 0
}

.lottery-card.lottery-card-flip-reintegro {
  margin-top: 1rem;
  margin-bottom: 1rem
}

.lottery-card.lottery-card-flip-reintegro .lottery-card-front {
  padding: 1.5625rem !important
}

.lottery-card.lottery-card-flip-reintegro.hidden {
  display: none
}

.lottery-card.lottery-card-flip-reintegro.shown {
  display: block
}

.lottery-card.lottery-card-flip-reintegro p.orange {
  max-width: 95%
}

.lottery-card--combo {
  margin-bottom: .625rem
}

.lottery-card--combo p {
  font-weight: 600
}

.lottery-card--combo h2 {
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card--combo .col:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 15px
}

.lottery-card--combo .col:first-child img {
  max-width: 7rem
}

@media only screen and (max-width:600px) {
  .lottery-card--combo .col:first-child img {
    max-width: 5rem
  }
}

.lottery-card--combo .lottery-combo--jackpot-title {
  margin: .625rem 0 0;
  color: #e25f2c;
  font-size: 1em
}

.lottery-card--combo .lottery-card--amount {
  padding: 0;
  margin: 0 0 .625rem 0
}

.lottery-card--combo .close-time {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-family: "Open sans";
  font-weight: 400
}

.lottery-card--combo .info-icon {
  margin-left: .625rem
}

.lottery-card--combo .info-data {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height ease-in-out .2s;
  transition: max-height ease-in-out .2s
}

.lottery-card--combo .info-data p {
  margin: 0;
  font-weight: 400;
  font-size: .875em
}

@media only screen and (min-width:860px) {
  .lottery-card--combo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2rem
  }

  .lottery-card--combo h2 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .lottery-card--combo .col {
    text-align: left
  }

  .lottery-card--combo .col:first-child {
    width: 10%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 0
  }

  .lottery-card--combo .col:nth-child(2) {
    width: 40%
  }

  .lottery-card--combo .col:nth-child(3) p:first-child {
    margin: 0;
    padding-bottom: .625rem
  }

  .lottery-card--combo .col:nth-child(3) p:last-child {
    margin: 0;
    padding-top: .625rem
  }

  .lottery-card--combo .col .button {
    margin: 0
  }

  .lottery-card--combo .lottery-card--amount {
    margin: 0
  }
}

.lottery-card--row {
  border-top: 1px solid #fff;
  margin-top: 2.5rem;
  padding-top: 1.25rem
}

.lottery-card--row .container>h3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  color: #fff;
  font-size: 1.375em;
  letter-spacing: .5px;
  font-weight: 400;
  margin-bottom: 1.875rem
}

.lottery-card--row .container .lottery-card {
  margin-bottom: .9375rem
}

.lottery-card--row .container .lottery-card p.lottery-card--amount {
  font-size: 2em
}

@media only screen and (min-width:415px) {
  .lottery-card {
    min-width: 18.75rem
  }

  .lottery-card .devices-only {
    display: none !important
  }
}

@media only screen and (min-width:560px) {
  .lottery-card.lottery-card-offset {
    margin-bottom: -20vw;
    top: -20vw
  }
}

@media only screen and (min-width:768px) {
  .lottery-card--row .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 39.375rem
  }

  .lottery-card--row .container .lottery-card {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%
  }
}

@media only screen and (min-width:980px) {
  a.lottery-card:hover {
    opacity: 1
  }

  a.lottery-card:hover .button.button-orange {
    background-color: #e25f2c;
    color: #fff
  }

  a.lottery-card:hover .dropdown-link {
    opacity: .6
  }
}

@media only screen and (min-width:1280px) {
  .lottery-card--row .container {
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .lottery-card--row .container .lottery-card {
    max-width: 17.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 17.5rem;
    -moz-box-flex: 0;
    -ms-flex: 0 0 17.5rem;
    flex: 0 0 17.5rem;
    min-width: 0;
    margin: 0
  }
}

@-webkit-keyframes flipOpacity {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes flipOpacity {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@media only screen and (max-width:980px) {
  .account-draws .sort-container {
    width: 50% !important;
    grid-template-columns: auto !important
  }

  .account-draws .sort-container .draws-sort {
    margin: 10px auto auto !important
  }

  .lottery-card {
    min-width: 18.75rem !important;
    max-width: 100%
  }

  .lottery-card .desktop-only {
    display: none !important
  }

  .lottery-card .devices-only {
    display: block !important
  }

  .lottery-card.lottery-card-results .draw-card--header {
    display: grid !important;
    margin: 0 auto !important
  }

  .lottery-card.lottery-card-results .draw-card--header img.lottery-flag {
    margin: 0 auto 1rem auto
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details {
    text-align: center;
    margin: auto !important
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details .devices-only {
    display: block;
    margin-top: 10px
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details .devices-only .draw-card--winnings>div {
    min-width: 17rem !important
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details .devices-only.button {
    margin: 10px auto
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details .devices-only a {
    text-align: center;
    display: block;
    line-height: 1.5
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details p {
    text-align: center;
    font-size: 1rem
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details p.lottery-price {
    font-size: 2rem
  }

  .lottery-card.lottery-card-results .results-content.active {
    margin: 1rem auto !important
  }

  .lottery-card.lottery-card-results .results-content .lottery-card-flip,
  .lottery-card.lottery-card-results .results-content .majorwin {
    display: none
  }

  .lottery-card.lottery-card--combo .close-time {
    margin: .375rem 0 1rem
  }
}

.lottery-deck-tab .select-dropdown {
  margin: 0 0 1.25rem
}

.lottery-deck {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: visible;
  width: 100%
}

.lottery-deck.lottery-slider--slider {
  display: block;
  padding: 0 !important
}

.lottery-deck .lottery-card.lottery-deck--card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48.5%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 48.5%;
  flex: 0 0 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem;
  min-width: 0;
  max-width: 100%
}

.lottery-deck .lottery-card.lottery-deck--card .lottery-flag {
  width: 2.375rem;
  height: 2.375rem;
  margin-bottom: .625rem
}

.lottery-deck .lottery-card.lottery-deck--card h2 {
  font-size: 1.125em;
  line-height: 1.2;
  margin: 0 0 .9375rem
}

.lottery-deck .lottery-card.lottery-deck--card .lottery-card--amount {
  font-size: 1.375em
}

.lottery-deck .lottery-card.lottery-deck--card .lottery-card--amount span {
  right: 75%
}

.lottery-deck .lottery-card.lottery-deck--card .add-quickplay {
  margin-top: auto
}

.lottery-deck .lottery-card.lottery-deck--card .cart-qp {
  color: #e25f2c;
  font-size: 1.375em;
  font-weight: 900;
  font-family: "Open sans";
  margin: 0 0 .625rem;
  line-height: 1
}

.lottery-deck .lottery-card.lottery-deck--card .read-more {
  margin-top: auto
}

.lottery-deck .lottery-card.lottery-deck--card .timer {
  font-size: .75em !important;
  margin-top: auto
}

.lottery-deck .lottery-card.lottery-deck--card .timer+.button {
  margin-top: 0
}

.lottery-deck .lottery-card.lottery-deck--card .timer svg {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 .9375rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 .9375rem;
  flex: 0 0 .9375rem;
  margin-right: .625rem
}

.lottery-deck .lottery-card.lottery-deck--card:nth-of-type(even) {
  margin-right: 0
}

.lottery-deck .lottery-card.lottery-deck--card .flipper {
  padding: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .card-flip {
  -webkit-transition: opacity ease-in 0s !important;
  transition: opacity ease-in 0s !important
}

.lottery-deck .lottery-card.lottery-deck--card .flipper h3 {
  color: #fff;
  font-size: .8125em;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: .9375rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .flip-trigger {
  color: #fff;
  text-decoration: underline;
  font-size: .875em;
  font-weight: 400;
  margin-top: auto;
  top: .625rem;
  right: .625rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-front {
  padding: .9375rem .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back {
  margin-top: 2.5rem;
  background: #fff;
  padding: 0 .625rem .9375rem;
  font-size: initial;
  width: 100%;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back p {
  color: #e25f2c;
  font-weight: 400;
  font-size: .8125em
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back .lottery-numbers-container {
  margin-bottom: .625rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back .lottery-numbers-container p {
  font-size: .75em !important;
  margin-bottom: .3125rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back .lottery-numbers-container .lottery-numbers {
  margin-bottom: .15625rem
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back .lottery-numbers-container .lottery-numbers .lottery-number {
  margin: 0 .0625rem 0 0;
  width: -webkit-calc((100% - (6*.0625rem))/7);
  width: calc((100% - (6*.0625rem))/7)
}

.lottery-deck .lottery-card.lottery-deck--card .flipper .lottery-card-back .lottery-numbers-container .lottery-numbers .lottery-number span {
  font-size: .625em
}

.lottery-deck .lottery-card.lottery-deck--card.flip .card-flip {
  left: .625rem !important;
  top: .625rem !important
}

.lottery-deck .lottery-card.lottery-deck--card .timer-countdown {
  font-size: 10px
}

.lottery-deck.lottery-deck--quickplay {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -moz-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important
}

.lottery-deck.lottery-deck--quickplay.my-numbers .lottery-card .play-game--draws .draw-multipliers {
  margin: 0 !important
}

.lottery-deck.lottery-deck--quickplay.my-numbers .lottery-card .play-game--draws .radio-container {
  padding: 0
}

#play-now--quick-play .container .play-game--quickplay>h2 {
  color: #fff;
  margin-bottom: 1.875rem;
  font-weight: 400;
  font-size: 1.375em;
  letter-spacing: .5px
}

#play-now--quick-play .container .play-game--quickplay>p {
  color: #fff;
  margin: 1.25rem 0 1.5625rem
}

.is-superdraw #play-now--quick-play .play-game .button {
  margin-bottom: 1.5rem
}

.lottery-card--quickplay {
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
  padding: 1.25rem 1.875rem;
  cursor: pointer;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  min-width: 0;
  margin: 0 0 1.25rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.lottery-card--quickplay.popular {
  overflow: visible
}

.lottery-card--quickplay.popular:before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(10%, -60%);
  -moz-transform: translate(10%, -60%);
  -ms-transform: translate(10%, -60%);
  transform: translate(10%, -60%);
  background-color: #f8e71c;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  color: #e25f2c;
  font-size: 14px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 7.5px 15px;
  letter-spacing: 1px
}

.lottery-card--quickplay p {
  font-weight: 600;
  margin: 0;
  font-family: "Open sans"
}

.lottery-card--quickplay p.orange {
  font-size: 1.375em;
  letter-spacing: 0
}

.lottery-card--quickplay.multiplier p {
  padding-left: 2.1875rem
}

.lottery-card--quickplay .card-banner {
  top: .8125rem;
  left: -2.9375rem
}

.lottery-card--quickplay .icon-cart,
.lottery-card--quickplay img {
  position: absolute;
  right: .625rem;
  top: .625rem;
  width: 3.125rem;
  height: auto;
  max-height: 3.125rem;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scaleUp .2s ease-in-out .05s;
  animation: scaleUp .2s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}

.lottery-card--quickplay .icon-cart ellipse,
.lottery-card--quickplay img ellipse {
  display: none
}

.lottery-card--quickplay .icon-cart #cart-arrow,
.lottery-card--quickplay img #cart-arrow {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1)
}

.lottery-card--quickplay img {
  width: 2.1875rem;
  top: 1.15625rem;
  right: 1.15625rem
}

.lottery-card--quickplay .icon-check-circle {
  stroke: #209d4d;
  position: absolute;
  right: 1.40625rem;
  top: 1.53125rem;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0)
}

.lottery-card--quickplay .add-quickplay {
  color: #e25f2c;
  text-align: center;
  font-size: .6875em;
  margin: .9375rem auto 0;
  text-decoration: underline;
  display: block
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {

  .lottery-card--quickplay .icon-cart,
  .lottery-card--quickplay img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }
}

.lottery-card--quickplay.active {
  -webkit-animation: scaleCard .75s ease-in-out 0s;
  animation: scaleCard .75s ease-in-out 0s
}

.lottery-card--quickplay.active .icon-cart,
.lottery-card--quickplay.active img {
  -webkit-animation: cartAnimation .75s ease-in-out .05s;
  animation: cartAnimation .75s ease-in-out .05s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}

.lottery-card--quickplay.active .icon-cart #cart-arrow,
.lottery-card--quickplay.active img #cart-arrow {
  -webkit-transform: scaleY(1.5);
  -moz-transform: scaleY(1.5);
  -ms-transform: scaleY(1.5);
  transform: scaleY(1.5);
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

.lottery-card--quickplay.active .icon-check-circle {
  -webkit-animation-name: dash;
  animation-name: dash;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

@supports(-ms-ime-align:auto) {

  .lottery-card--quickplay.active .icon-cart,
  .lottery-card--quickplay.active img {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
  }

  .lottery-card--quickplay.active .icon-check-circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 200;
    -webkit-transition: all ease-in-out .4s .4s;
    transition: all ease-in-out .4s .4s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {

  .lottery-card--quickplay.active .icon-cart,
  .lottery-card--quickplay.active img {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: none;
    animation: none;
    -webkit-transition: none;
    transition: none;
    display: none
  }

  .lottery-card--quickplay.active .icon-check-circle {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none
  }
}

.lottery-card--quickplay.over-limit {
  opacity: .5;
  cursor: not-allowed
}

.lottery-card--quickplay.over-limit:active {
  pointer-events: none
}

.lottery-card--quickplay.is-systementry {
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: auto !important;
  flex: auto !important;
  max-width: 840px;
  margin: auto auto 2rem
}

.lottery-card--quickplay .systementry-box {
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: auto !important;
  flex: auto !important;
  max-width: 860px;
  margin: auto .8rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

@supports(-ms-ime-align:auto) {
  .lottery-card--quickplay .systementry-box {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
  }
}

@media only screen and (max-width:980px) {
  .lottery-card--quickplay .systementry-box {
    max-width: 625px
  }
}

@media only screen and (max-width:700px) {
  .lottery-card--quickplay .systementry-box {
    display: block;
    max-width: 100%;
    margin: 1rem auto 1rem -1rem
  }

  .lottery-card--quickplay .systementry-box .icon-cart {
    top: 1.625rem !important
  }
}

.lottery-card--quickplay #play-custom-text {
  display: block;
  max-width: 100%;
  padding-left: .5rem;
  border-left: 3px solid #e25f2c;
  color: #7a7b78;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5
}

@media only screen and (max-width:700px) {
  .lottery-card--quickplay #play-custom-text {
    margin-left: -1rem
  }
}

.lottery-card--quickplay .is-label {
  padding: 5px;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 150px;
  font-size: .9rem;
  letter-spacing: 1px;
  position: absolute;
  min-width: 100px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0
}

.lottery-card--quickplay .is-label.sysentry {
  background: #e25f2c
}

.popular {
  overflow: visible
}

.popular:before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(10%, -60%);
  -moz-transform: translate(10%, -60%);
  -ms-transform: translate(10%, -60%);
  transform: translate(10%, -60%);
  background-color: #f8e71c;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
  color: #e25f2c;
  font-size: 14px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 7.5px 15px;
  letter-spacing: 1px
}

@media only screen and (min-width:420px) {
  .lottery-deck .lottery-card.lottery-deck--card .timer-countdown {
    font-size: 1.0625em
  }
}

@media only screen and (min-width:540px) {
  .button.add-quickplay {
    font-size: .75em;
    padding: .625rem .3125rem
  }
}

@media only screen and (min-width:680px) and (max-width:979px) {
  .lottery-card--quickplay {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.875rem;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.875rem;
    flex: 0 0 16.875rem;
    max-width: 16.875rem;
    margin-right: 1.25rem
  }

  .lottery-card--quickplay:nth-of-type(2n+2) {
    margin-right: 0
  }
}

@media only screen and (min-width:980px) {
  #play-now--quick-play .container {
    max-width: 100%;
    width: 100%
  }

  .lottery-card--quickplay {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.5625rem;
    -moz-box-flex: 0;
    -ms-flex: 0 0 16.5625rem;
    flex: 0 0 16.5625rem;
    max-width: 16.5625rem;
    margin-right: 1.25rem;
    cursor: pointer
  }

  .lottery-card--quickplay:nth-of-type(3n+3) {
    margin-right: 0
  }

  .lottery-card--quickplay:hover {
    background-color: rgba(255, 255, 255, .85)
  }

  .lottery-card--quickplay:hover .icon-cart,
  .lottery-card--quickplay:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
  }

  .lottery-card--quickplay.active {
    background-color: #fff
  }

  .lottery-card--quickplay.active:hover {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
  }
}

@-webkit-keyframes cartAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
}

@keyframes cartAnimation {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0)
  }
}

@-webkit-keyframes scaleCard {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scaleCard {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
  }

  50% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05)
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 200
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 200
  }
}

@-webkit-keyframes scaleUp {
  to {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scaleUp {
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1)
  }
}

.results-type {
  font-weight: 700;
  color: #2c68a5 !important
}

.results-type span {
  color: #e25f2c
}

.lottery-card.lottery-card--results {
  max-width: 37.5rem
}

.lottery-card.lottery-card--results .lottery-numbers-container {
  margin-bottom: .625rem
}

.lottery-card.lottery-card--results .lottery-numbers-container .lottery-numbers .lottery-number {
  max-width: 10vw
}

.lottery-card.lottery-card-results {
  margin: 1rem auto 2rem auto;
  text-align: center
}

@-webkit-keyframes snow {
  from {
    background-position: 0
  }

  to {
    background-position: 0 -50px
  }
}

@keyframes snow {
  from {
    background-position: 0
  }

  to {
    background-position: 0 -50px
  }
}

.lottery-card.lottery-card-results .flipper>.flip-trigger {
  display: none
}

.lottery-card.lottery-card-results.flip .flip-trigger {
  right: auto !important;
  left: .625rem !important;
  display: block
}

.lottery-card.lottery-card-results.flip .game-type {
  display: none !important
}

.lottery-card.lottery-card-results p {
  font-size: 1em
}

.lottery-card.lottery-card-results:last-of-type {
  margin-bottom: 0
}

.lottery-card.lottery-card-results .lottery-date {
  color: inherit;
  display: block;
  line-height: 1.5
}

.lottery-card.lottery-card-results .draw-card--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 1rem;
  max-width: 100%;
  padding: 0 2rem
}

.lottery-card.lottery-card-results .draw-card--header.win {
  background-image: url("../images/confetti-bg.png");
  -webkit-animation: snow 10s linear infinite alternate;
  animation: snow 10s linear infinite alternate
}

@keyframes snow {
  from {
    background-position: 0
  }

  to {
    background-position: 0 400px
  }
}

.lottery-card.lottery-card-results .draw-card--header .lottery-flag {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 1rem;
  margin-top: 2rem
}

.lottery-card.lottery-card-results .draw-card--header .draw-details {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: .625rem
}

.lottery-card.lottery-card-results .draw-card--header .draw-details h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #7a7b78;
  margin: 0 0 .0625rem;
  line-height: 1
}

.lottery-card.lottery-card-results .draw-card--header .draw-details .lottery-price {
  margin: 0;
  font-size: 2.375em;
  font-weight: 800;
  color: #e25f2c;
  line-height: 1.2;
  font-family: "Open sans"
}

.lottery-card.lottery-card-results .draw-card--header .draw-details .lottery-price .syndicate-shares {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
  color: #2c68a5;
  font-weight: 500
}

.lottery-card.lottery-card-results .draw-card--header .draw-details .syndicate-tag {
  color: #7a7b78;
  font-weight: 600;
  opacity: .6
}

.lottery-card.lottery-card-results .draw-card--header .draw-details span.free-ticket {
  position: relative;
  margin-top: 1px;
  border: 2px solid #209d4d;
  background: #fff;
  color: #209d4d;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  padding: .5em 1em;
  font-size: .75rem;
  font-weight: 600;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px
}

.lottery-card.lottery-card-results .draw-card--header .draw-details span.free-ticket:before {
  content: '';
  position: absolute;
  top: 4px;
  height: 1em;
  width: .5em;
  border: 2px solid #209d4d;
  left: -2px;
  -webkit-border-radius: 0 1em 1em 0;
  -moz-border-radius: 0 1em 1em 0;
  border-radius: 0 1em 1em 0;
  border-left-color: #209d4d;
  background-color: #209d4d
}

.lottery-card.lottery-card-results .draw-card--header .draw-details span.free-ticket:after {
  content: '';
  position: absolute;
  top: 4px;
  height: 1em;
  width: .5em;
  border: 2px solid #209d4d;
  right: -2px;
  -webkit-border-radius: 1em 0 0 1em;
  -moz-border-radius: 1em 0 0 1em;
  border-radius: 1em 0 0 1em;
  border-right-color: #fff
}

.lottery-card.lottery-card-results .draw-card--header .draw-details .lottery-price--jackpot-pending {
  font-size: 1.25em;
  padding-bottom: .125em
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details {
  display: grid;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .draw-result {
  font-weight: 700;
  margin: auto 0 0;
  font-size: 1.2rem
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .draw-result.win {
  color: #e25f2c
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .draw-result.no-win {
  color: #7a7b78
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .draw-result.pending {
  color: #7a7b78
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .draw-result span {
  display: block
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details .button {
  justify-self: end
}

.lottery-card.lottery-card-results .draw-card--header .ticket-details span {
  line-height: 1.5
}

.lottery-card.lottery-card-results .draw-card--header .draw-result {
  margin-top: 0
}

.lottery-card.lottery-card-results .lottery-numbers-container {
  margin-bottom: .625rem
}

.lottery-card.lottery-card-results .lottery-numbers-container .lottery-numbers .lottery-number {
  font-size: initial
}

.lottery-card.lottery-card-results .lottery-numbers-container .lottery-numbers .lottery-number>span {
  font-size: initial
}

.lottery-card.lottery-card-results .lottery-numbers-container .lottery-numbers .lottery-number>span>span {
  font-size: .875em
}

.lottery-card.lottery-card-results .lottery-numbers-container:last-of-type {
  margin-bottom: 0
}

.lottery-card.lottery-card-results .draw-card--winnings {
  background-image: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
  background-image: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  background-image: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem
}

.lottery-card.lottery-card-results .draw-card--winnings h2 {
  color: #fff !important
}

.lottery-card.lottery-card-results .draw-card--winnings p {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  margin: 0;
  font-size: .875em;
  font-weight: 700;
  padding: .9375rem 3.75rem;
  line-height: 1
}

.lottery-card.lottery-card-results .draw-card--winnings p>span {
  font-size: 137.5%;
  margin-top: .625rem;
  font-weight: 800;
  letter-spacing: .5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card.lottery-card-results .draw-card--winnings p>span .currency {
  font-size: 75%;
  margin-right: .125rem
}

.lottery-card.lottery-card-results .draw-card--winnings p.winnings-details {
  text-align: left;
  display: block;
  margin: .625rem 0;
  font-weight: 400;
  font-size: 1.0625em
}

.lottery-card.lottery-card-results .draw-card--winnings p.winnings-details span {
  font-size: inherit;
  display: inline;
  font-weight: inherit;
  text-decoration: underline
}

.lottery-card.lottery-card-results .draw-card--footer {
  margin: 1.5625rem 0
}

.lottery-card.lottery-card-results .draw-card--footer h4 {
  color: #e25f2c;
  font-size: 1.375em;
  margin: 0 0 .3125rem
}

.lottery-card.lottery-card-results .draw-card--footer h5 {
  color: #e25f2c
}

.lottery-card.lottery-card-results .draw-card--footer p {
  color: #2c68a5;
  font-size: .875em;
  font-weight: 400
}

.lottery-card.lottery-card-results .results-expand {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: -.625rem;
  line-height: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer
}

.lottery-card.lottery-card-results .results-expand:after {
  content: '';
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: .3125rem;
  margin-right: 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  top: 3px;
  width: .8125rem;
  height: .8125rem;
  background-color: #2c68a5;
  background-image: url(../icons/icon-angle-right.svg);
  background-size: 45%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .lottery-card.lottery-card-results .results-expand:after {
    top: 1px;
    background-size: 10px;
    width: .9375rem;
    height: .9375rem
  }
}

.lottery-card.lottery-card-results .results-expand.active:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

.lottery-card.lottery-card-results .results-expand.active span {
  color: #2c68a5;
  font-weight: bold
}

.lottery-card.lottery-card-results .results-expand.results-expand-sysentry {
  text-decoration: underline !important;
  padding-bottom: 1rem
}

.lottery-card.lottery-card-results .results-content {
  text-align: center;
  max-width: 95%;
  margin: 1rem auto auto
}

.lottery-card.lottery-card-results .results-content>p {
  font-size: 1em !important;
  font-weight: 500;
  margin: 0 0 .9375rem;
  line-height: 1
}

.lottery-card.lottery-card-results .results-content>p.results-type {
  font-weight: 700;
  line-height: 2
}

.lottery-card.lottery-card-results .results-content>p.results-type.results-type-joker {
  margin-top: 2rem
}

.lottery-card.lottery-card-results .results-content>p.results-type.results-type-joker span {
  padding: 0 5px;
  background-color: #84bf45;
  color: #fff
}

.lottery-card.lottery-card-results .results-content .results-expand {
  margin-top: 0;
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important
}

.lottery-card.lottery-card-results .results-content .results-expand.active,
.lottery-card.lottery-card-results .results-content .results-expand:after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container {
  display: grid;
  grid-row-gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: 30px auto;
  margin: 2rem auto auto
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-icon {
  max-width: 25px
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings {
  justify-self: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p {
  margin: 0 auto;
  font-size: .875em;
  font-weight: 600;
  margin: 0 5px
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p:first-child {
  margin: 0 auto
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p .joker-number {
  padding: 1px 5px;
  letter-spacing: 1px;
  color: #e25f2c
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p .joker-number.selected {
  background-color: #e25f2c;
  color: #fff
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p .joker-number mark {
  background-color: #84bf45;
  color: #fff;
  padding: 0 0 0 2px
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p .joker-number mark:last-child {
  padding: 0 2px 0 2px
}

.lottery-card.lottery-card-results .results-content .joker-winnings-container .joker-winnings p span.instant-win-numbers {
  background: #84bf45;
  padding: 5px;
  color: #fff
}

.lottery-card.lottery-card-results .results-content .purchase-meta {
  max-width: 95%;
  margin: 1rem auto;
  display: grid;
  justify-items: end;
  grid-row-gap: 0
}

.lottery-card.lottery-card-results .results-content .purchase-meta span {
  line-height: 1.2;
  display: block
}

.lottery-card.lottery-card-results .results-content .purchase-meta span.free-ticket {
  position: relative;
  margin-top: 1px;
  border: 2px solid #209d4d;
  background: #fff;
  color: #209d4d;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  padding: .5em 1em;
  font-size: .68rem;
  font-weight: 600;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px
}

.lottery-card.lottery-card-results .results-content .purchase-meta span.free-ticket:before {
  content: '';
  position: absolute;
  top: 4px;
  height: 1em;
  width: .5em;
  border: 2px solid #209d4d;
  left: -2px;
  -webkit-border-radius: 0 1em 1em 0;
  -moz-border-radius: 0 1em 1em 0;
  border-radius: 0 1em 1em 0;
  border-left-color: #209d4d;
  background-color: #209d4d
}

.lottery-card.lottery-card-results .results-content .purchase-meta span.free-ticket:after {
  content: '';
  position: absolute;
  top: 4px;
  height: 1em;
  width: .5em;
  border: 2px solid #209d4d;
  right: -2px;
  -webkit-border-radius: 1em 0 0 1em;
  -moz-border-radius: 1em 0 0 1em;
  border-radius: 1em 0 0 1em;
  border-right-color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables {
  padding: 1rem 0 0
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .flex h5 {
  margin: 1rem 0 !important
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .flex.title {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number {
  padding: 0;
  width: 100%;
  height: 100%;
  margin: auto 1%;
  padding: 1% 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  max-width: 28px;
  min-width: 28px;
  max-height: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number {
  color: #f48b30;
  background: transparent
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number.selected {
  background-color: #f48b30;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number.selected.instant {
  background-color: #f48b30;
  background-image: -webkit-linear-gradient(135deg, #84bf45 50%, #f48b30 50%);
  text-shadow: 0 0 1px #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number.selected.reintegro {
  background-color: #38a4d0;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number.selected.bonus {
  background-color: #4c4d4a
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.number.selected.jolly {
  background-color: #4c4d4a
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.lucky {
  background-color: transparent;
  color: #38a4d0
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.lucky.selected {
  background-color: #38a4d0;
  color: #fff;
  border: none
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.lucky.selected:before {
  color: #38a4d0
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.instant {
  background-color: #84bf45;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.superstar {
  background-color: #38a4d0;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.superstar.instant {
  background-color: #38a4d0;
  background-image: -webkit-linear-gradient(135deg, #84bf45 50%, #38a4d0 50%);
  text-shadow: 0 0 1px #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.bonus {
  background-color: #4c4d4a;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.reintegro {
  color: #38a4d0
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.jolly {
  background-color: #4c4d4a;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.jolly.instant {
  background-color: #4c4d4a;
  background-image: -webkit-linear-gradient(135deg, #84bf45 50%, #4c4d4a 50%);
  text-shadow: 0 0 1px #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.game-number {
  color: #7a7b78;
  font-weight: normal
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.IREL.lucky,
.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col li .lottery-number.UKLO.lucky {
  background-color: #4c4d4a !important;
  color: #fff
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col:nth-child(n+5) {
  padding-top: 2rem
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .instant-win {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  line-height: 2;
  color: #7a7b78
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .instant-win span:first-child {
  margin-right: 5px
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .info-data {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height ease-in-out .2s;
  transition: max-height ease-in-out .2s;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: .875em
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .bonus-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 20px
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .bonus-grid p {
  color: #fff;
  background: #84bf45;
  margin: 0;
  font-weight: 600;
  font-size: .875em !important;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  padding: 5px;
  text-align: center
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .bonus-grid p:first-child {
  padding: 5px 5px 5px 10px
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .bonus-grid p:last-child {
  padding: 5px 10px 5px 5px
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col p {
  margin: 0
}

.lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col p.divisionwin {
  font-weight: bold;
  width: 100%;
  font-size: .875em !important
}

.lottery-card.lottery-card-results .results-content.syndicates .selected-numbers-container.title-selected-container {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  max-width: 100%;
  margin: 0
}

@media screen and (max-width:1000px) {
  .lottery-card.lottery-card-results .results-content.syndicates .four-col {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .lottery-card.lottery-card-results .results-content.syndicates .four-col .col {
    width: 100%;
    padding: 0
  }

  .lottery-card.lottery-card-results .results-content.syndicates .four-col .col.bonus-container:nth-child(n+2) {
    padding-top: 1rem
  }

  .lottery-card.lottery-card-results .results-content.syndicates .four-col .col.bonus-container ul li:last-child {
    border-bottom: 2px solid #e3e3e3 !important
  }

  .lottery-card.lottery-card-results .results-content.syndicates .four-col .col ul {
    border-right: none !important;
    padding: 0 !important;
    max-width: 280px;
    margin: auto
  }

  .lottery-card.lottery-card-results .results-content.syndicates .four-col .col ul li:last-child {
    border-bottom: none !important
  }
}

@media screen and (max-width:768px) {
  .lottery-card.lottery-card-results .results-content.syndicates .tables .four-col {
    display: block
  }

  .lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col {
    width: 100%
  }

  .lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col.bonus-container:nth-child(n+2) {
    padding-top: 2rem
  }

  .lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col ul {
    padding: 0
  }

  .lottery-card.lottery-card-results .results-content.syndicates .tables .four-col .col .bonus-grid {
    margin-bottom: 1rem
  }
}

.lottery-card.lottery-card-results .results-content.SYN .lottery-numbers-container.selected-numbers-container.title-selected-container {
  margin: 0 auto !important
}

.lottery-card.lottery-card-results .results-content.SENA h3 {
  color: #2c68a5;
  margin: 0;
  text-align: left
}

.lottery-card.lottery-card-results .results-content.SENA h3+p {
  text-align: left
}

.lottery-card.lottery-card-results .results-content .scroll-msg {
  font-style: italic;
  line-height: 2
}

.lottery-card.lottery-card-results .draw-dates {
  border-top: 1px solid #e5e5e5
}

.lottery-card.lottery-card-results .draw-dates h4 {
  color: #2c68a5 !important;
  font-size: 1em !important;
  font-weight: 600 !important;
  margin: .625rem 0 .9375rem !important
}

.lottery-card.lottery-card-results .draw-dates .draw-date {
  margin: 0;
  font-size: 1em;
  font-family: "Open sans";
  font-weight: 400
}

.lottery-card.lottery-card-results .draw-date-single {
  margin: 0;
  font-size: 1em;
  font-family: "Open sans";
  font-weight: 400
}

.lottery-card .draw-date-single {
  margin: 0;
  font-size: 1em;
  font-family: "Open sans";
  font-weight: 400
}

.lottery-card .number-lines-expand {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card .subtotal {
  color: #e25f2c !important;
  font-size: 1.375em !important;
  font-weight: 400;
  font-family: "Open sans" !important;
  text-align: center;
  margin: 1.25rem 0 0
}

.lottery-card .currency-exchange {
  color: #4c4d4a !important;
  font-size: .875em;
  text-align: left;
  margin: 0 auto;
  font-weight: 700;
  max-width: 480px;
  margin-top: .625rem
}

.lottery-card .currency-exchange.small {
  text-align: justify;
  font-size: .75rem;
  font-weight: 500
}

.lottery-card .order-number {
  margin-top: 1.25rem !important;
  font-weight: 400 !important
}

.results-actions {
  padding: .625rem;
  margin: 1.25rem auto auto;
  background-color: #fff;
  width: 95%;
  max-width: 49.6875rem;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.results-actions .disclaimer {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: .3125rem 0 !important
}

.results-actions p {
  color: #7a7b78 !important;
  font-size: .75em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  margin: .625rem 1% !important
}

.results-actions p svg {
  width: 1.5625rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.5625rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.5625rem;
  flex: 0 0 1.5625rem;
  height: 1.5625rem;
  margin-right: .625rem
}

.results-actions p.active {
  color: #e25f2c !important
}

.results-actions p.active svg {
  stroke: #e25f2c
}

.results-actions p.active svg.icon-check-circle path {
  fill: inherit
}

.results-actions p.active svg ellipse {
  stroke: #e25f2c
}

.results-actions p.active svg path {
  fill: #e25f2c;
  stroke: #e25f2c
}

.results-expand {
  position: relative;
  line-height: 1;
  display: flex-inline;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none !important;
  margin-top: 1.25rem
}

.results-expand span {
  text-decoration: underline
}

.results-expand:after {
  content: '';
  background-image: url(../icons/icon-angle-down.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: .9375rem;
  width: .9375rem;
  left: -webkit-calc(100% + 1.25rem);
  left: calc(100% + 1.25rem);
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  margin-left: 1.25rem;
  margin-top: 1px
}

.results-expand.active:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.results-expand.active+.results-content {
  margin-top: 1.5625rem;
  display: block
}

.results-expand.active+.results-content.no-slide {
  max-height: 100% !important;
  max-width: 80%;
  margin: 1rem auto
}

.results-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

.results-content.no-slide {
  display: none
}

.results-content .game-types {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 18.75rem;
  margin: 0 auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.results-content .game-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400 !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.results-content .game-type svg {
  margin-left: .3125rem
}

.results-content .game-type svg * {
  stroke: #e25f2c
}

.division-results {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left !important
}

.division-results div {
  margin-right: .9375rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.division-results div span {
  display: block;
  margin-top: .625rem;
  font-size: .875em;
  color: #312c29;
  font-family: "Open sans";
  font-weight: 400
}

.division-results div span.division-title {
  color: #2c68a5;
  margin-bottom: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-weight: 700
}

.division-results div:last-child {
  margin-right: 0
}

.division-results>* {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 1%
}

.division-results .flex-2 {
  -webkit-box-flex: 1.5;
  -webkit-flex: 1.5;
  -moz-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5
}

@media only screen and (min-width:860px) {
  .lottery-card.lottery-card-results .lottery-card-back {
    padding-top: 0
  }
}

@media only screen and (min-width:980px) {
  .lottery-card.lottery-card--results>.lottery-numbers-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 28.75rem;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .lottery-card.lottery-card--results>.lottery-numbers-container .lottery-numbers {
    width: auto;
    margin-right: .1875rem
  }

  .lottery-card.lottery-card--results>.lottery-numbers-container .lottery-numbers+.lottery-numbers {
    margin-right: 0
  }

  .lottery-card.lottery-card--results>.lottery-numbers-container .lottery-numbers .lottery-number {
    width: 2.1875rem;
    height: 2.1875rem;
    padding: 0
  }

  .division-results {
    max-width: 30rem;
    margin: 0 auto;
    position: relative
  }

  .results-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
  }

  .results-actions.results-actions--column {
    display: block;
    margin-top: .625rem
  }

  .results-actions.results-actions--column p {
    margin-bottom: .3125rem !important
  }
}

@media only screen and (max-width:980px) {
  .lottery-card.lottery-card-results .draw-card--header .draw-details .lottery-price .syndicate-shares {
    display: block
  }

  .lottery-card.lottery-card-results .draw-card--header .draw-details span.is-label {
    margin: 1px auto auto
  }

  .lottery-card.lottery-card-results .ticket-details span {
    display: block;
    text-align: center
  }
}

@media only screen and (max-width:600px) {
  .lottery-card.lottery-card-results .draw-card--header {
    padding: 0
  }

  .lottery-card .division-results div span {
    font-size: .75em !important
  }
}

@media only screen and (max-width:600px) {
  .lottery-card.lottery-card--results #lottery-results--dynamic-content>.lottery-numbers-container .lottery-numbers {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .results-expand.active+.results-content.no-slide {
    max-width: 100%
  }
}

.lottery-card.lottery-card-favourite .favourite-lottery {
  margin-bottom: 3.125rem
}

.lottery-card.lottery-card-favourite .favourite-lottery:last-of-type {
  margin-bottom: 0
}

.lottery-card.lottery-card-favourite .favourite-lottery .game-number-lines .game-number-line .flex svg {
  display: none
}

.lottery-card.lottery-card-favourite .favourite-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card.lottery-card-favourite .favourite-header img {
  margin: 0;
  width: 1.875rem;
  height: 1.875rem;
  margin-right: .625rem
}

.lottery-card.lottery-card-favourite .favourite-header h4 {
  margin: 0
}

.lottery-card.lottery-card-favourite .custom-numbers--action .button {
  margin: .625rem 0 0
}

.lottery-card.lottery-card-favourite .lottery-favourite {
  display: none !important
}

@media only screen and (max-width:768px) {
  .lottery-card.lottery-card-favourite .favourite-lottery .game-number-lines .game-number-line .lottery-numbers {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -moz-box-flex: 1;
    -ms-flex: auto;
    flex: auto
  }
}

@media only screen and (max-width:340px) {
  .lottery-card.lottery-card-favourite .favourite-lottery .game-number-lines .game-number-line .lottery-numbers {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }
}

.lottery-card-flip {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  padding: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: transparent
}

.lottery-card-flip .card-trash {
  right: .625rem;
  top: .9375rem;
  opacity: 1;
  -webkit-transition: all ease-in-out .2s .2s;
  transition: all ease-in-out .2s .2s;
  z-index: 999
}

.lottery-card-flip .card-flip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #2c68a5;
  width: 1.4375rem;
  height: 1.4375rem;
  font-size: 1.25em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 99999;
  -webkit-transition: opacity ease-in .3s;
  transition: opacity ease-in .3s;
  cursor: pointer
}

.lottery-card-flip .card-flip:before {
  content: 'i';
  font-weight: 700;
  font-size: 13px;
  color: #2c68a5;
  font-family: "Open sans"
}

.lottery-card-flip .flipper {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  background: #fff;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  height: 100%
}

.lottery-card-flip .flipper.no-padding {
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: auto
}

.lottery-card-flip .flipper.no-padding .card-flip {
  border-color: #fff;
  background-color: transparent !important
}

.lottery-card-flip .flipper.no-padding .card-flip:before,
.lottery-card-flip .flipper.no-padding .card-flip:after {
  background-color: transparent !important;
  color: #fff
}

.lottery-card-flip .flipper.draw-card--winnings {
  padding: .625rem 0;
  margin: .625rem 0
}

.lottery-card-flip .flipper.draw-card--winnings>div {
  padding: 1rem;
  min-width: 20rem
}

.lottery-card-flip .flipper.draw-card--winnings p {
  padding: 0
}

.lottery-card-flip .lottery-card-front,
.lottery-card-flip .lottery-card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease-in-out .3s;
  transition: -webkit-transform ease-in-out .3s;
  transition: transform ease-in-out .3s;
  transition: transform ease-in-out .3s, -webkit-transform ease-in-out .3s, -moz-transform ease-in-out .3s;
  padding: 1.875rem 5% 1.5625rem;
  overflow: hidden;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem
}

.lottery-card-flip .lottery-card-front {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
  z-index: 2;
  height: auto
}

.lottery-card-flip .lottery-card-front .card-flip {
  position: static !important;
  margin-left: .625rem
}

.lottery-card-flip .lottery-card-front .lottery-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.lottery-card-flip .lottery-card-front.superdraw {
  background-image: url("../images/confetti-mobile-new.png")
}

@media only screen and (min-width:620px) {
  .lottery-card-flip .lottery-card-front.superdraw {
    background-image: url("../images/confetti-new.png")
  }
}

.lottery-card-flip .lottery-card-front.superdraw>.lottery-flag {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto .5rem
}

.lottery-card-flip .lottery-card-back {
  -webkit-transform: translateZ(-1px);
  -moz-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  height: 0;
  display: none;
  pointer-events: none
}

.lottery-card-flip .lottery-card-back .subtotal {
  text-align: center !important
}

.lottery-card-flip .lottery-card-back.lottery-card-back--spacing {
  padding-top: 3.125rem
}

.lottery-card-flip.flip .card-flip {
  left: 1.25rem;
  border: none;
  -webkit-animation: flipOpacity ease-in-out .2s;
  animation: flipOpacity ease-in-out .2s
}

.lottery-card-flip.flip .card-flip:before {
  content: '';
  background-image: url("../icons/icon-return.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-color: #fff !important
}

.lottery-card-flip.flip .card-trash {
  right: auto;
  left: .625rem;
  opacity: 0;
  -webkit-transition: all ease-in-out 0s;
  transition: all ease-in-out 0s;
  visibility: hidden
}

.lottery-card-flip.flip .draw-card--winnings .card-flip:before {
  background-image: url("../icons/icon-return-white.svg")
}

.lottery-card-flip.flip .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: transparent !important
}

.lottery-card-flip.flip .flipper .lottery-card-front {
  height: 0;
  display: none
}

.lottery-card-flip.flip .flipper .lottery-card-back {
  height: auto;
  display: block;
  position: relative;
  z-index: 9999
}

@media only screen and (min-width:980px) {
  .lottery-card-front .flip-trigger {
    -webkit-transition: background-color ease-in-out .2s;
    transition: background-color ease-in-out .2s
  }

  .lottery-card-front .flip-trigger:hover {
    background-color: #2c68a5
  }

  .lottery-card-front .flip-trigger:hover:before {
    color: #fff !important
  }

  .card-trash:hover * {
    stroke: #d8262d
  }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .lottery-card-flip .flipper {
    overflow: hidden
  }

  .lottery-card-flip .flipper .card-flip {
    z-index: 9999
  }

  .lottery-card-flip .flipper .lottery-card-back,
  .lottery-card-flip .flipper .lottery-card-front {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    height: auto;
    z-index: 999
  }

  .lottery-card-flip .flipper .lottery-card-front {
    -webkit-transition: all ease-in-out 1s 1s !important;
    transition: all ease-in-out 1s 1s !important;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  .lottery-card-flip .flipper .lottery-card-back {
    opacity: 0
  }

  .lottery-card-flip.flip .card-flip {
    left: 1.25rem;
    z-index: 9999
  }

  .lottery-card-flip.flip .lottery-card-front {
    opacity: 0
  }

  .lottery-card-flip.flip .lottery-card-back {
    -webkit-transform: rotateY(180deg) !important;
    -moz-transform: rotateY(180deg) !important;
    transform: rotateY(180deg) !important;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOpacity;
    animation-name: flipOpacity;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
  }

  .lottery-card-flip.flip-front .lottery-card-front {
    opacity: 0;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOpacity;
    animation-name: flipOpacity;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
  }
}

@keyframes flipOpacity {
  to {
    opacity: 1
  }
}

.lottery-card-account {
  width: 32.5rem;
  max-width: 100%;
  padding: 2.1875rem 1.5625rem !important;
  cursor: initial
}

.lottery-card-account .lottery-card-account--header {
  padding: 0;
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #7a7b78;
  padding-bottom: 1.5625rem
}

.lottery-card-account .lottery-card-account--header li {
  margin: 0;
  text-align: center;
  font-size: 1em;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  margin-right: 1.875rem;
  cursor: pointer;
  text-decoration: none !important;
  font-weight: 600
}

.lottery-card-account .lottery-card-account--header li:last-of-type {
  margin-right: 0
}

.lottery-card-account .lottery-card-account--header li .card-icon {
  border: 3px solid #7a7b78;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.75rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 3.75rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 3.75rem;
  flex: 0 0 3.75rem;
  height: 3.75rem;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin: 0 auto .9375rem;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.lottery-card-account .lottery-card-account--header li .card-icon svg {
  border: none !important;
  width: 2.1875rem !important;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 2.1875rem !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 2.1875rem !important;
  flex: 0 0 2.1875rem !important;
  max-height: 2.1875rem !important;
  min-height: 1.875rem;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important
}

.lottery-card-account .lottery-card-account--header li .card-icon svg * {
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.lottery-card-account .lottery-card-account--header li:hover .card-icon {
  color: #e25f2c;
  border-color: #e25f2c
}

.lottery-card-account .lottery-card-account--header li:hover .card-icon svg path {
  stroke: #e25f2c;
  fill: #e25f2c
}

.lottery-card-account .lottery-card-account--header li:hover .card-icon svg circle,
.lottery-card-account .lottery-card-account--header li:hover .card-icon svg polyline {
  stroke: #e25f2c
}

.lottery-card-account .lottery-card-account--header li svg * {
  stroke: #7a7b78;
  -webkit-transition: none !important;
  transition: none !important
}

.lottery-card-account .lottery-card-account--header li svg circle {
  -webkit-transition: all ease-in-out .2s !important;
  transition: all ease-in-out .2s !important
}

.lottery-card-account .lottery-card-account--header li svg path {
  fill: #7a7b78;
  -webkit-transition: all ease-in-out .2s !important;
  transition: all ease-in-out .2s !important
}

.lottery-card-account .lottery-card-account--header li svg #Oval-4 {
  fill: none
}

.lottery-card-account .lottery-card-account--header li svg #ICON-Cart>path {
  fill: transparent
}

.lottery-card-account .lottery-card-account--header li.active {
  color: #e25f2c
}

.lottery-card-account .lottery-card-account--header li.active svg {
  border-color: #e25f2c !important
}

.lottery-card-account .lottery-card-account--header li.active svg * {
  stroke: #e25f2c
}

.lottery-card-account .lottery-card-account--header li.active svg path {
  fill: #e25f2c
}

.lottery-card-account .account-funds {
  padding: 0 2.1875rem
}

.lottery-card-account .account-funds .choose-plays h4 {
  text-align: left;
  margin-bottom: .625rem;
  color: #4c4d4a;
  padding-left: .625rem;
  font-size: 1.125em
}

.lottery-card-account .account-funds .choose-plays .choose-plays-container {
  margin: 0
}

.lottery-card-account .account-funds .choose-plays .choose-plays-container label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  max-width: 24%;
  margin: 0 0 .9375rem
}

.lottery-card-account .account-funds .choose-plays .choose-plays-container label.input-full {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%
}

.lottery-card-account .account-funds input[type="text"] {
  width: 100% !important
}

.lottery-card-account .account-funds .account-nav-funds-actions {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 .9375rem
}

.lottery-card-account .account-funds .account-nav-funds-actions .select-dropdown {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2
}

.lottery-card-account .account-funds .account-nav-funds-actions .select-dropdown .select-options {
  max-height: 12rem
}

.lottery-card-account .account-nav-funds--footer {
  padding: 1.5625rem 2.1875rem 0;
  border-top: 1px solid #7a7b78;
  margin-top: 1.5625rem
}

.lottery-card-account .account-nav-funds--footer h3 {
  color: #4c4d4a;
  text-align: left;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -moz-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  cursor: pointer;
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  margin-bottom: 0 !important
}

.lottery-card-account .account-nav-funds--footer h3 span {
  border: 3px solid #4c4d4a;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: .625rem;
  font-size: .75em;
  -webkit-transition: border-color ease-in-out .2s;
  transition: border-color ease-in-out .2s
}

.lottery-card-account .account-nav-funds--footer h3:hover,
.lottery-card-account .account-nav-funds--footer h3.active {
  color: #e25f2c
}

.lottery-card-account .account-nav-funds--footer h3:hover span,
.lottery-card-account .account-nav-funds--footer h3.active span {
  border-color: #e25f2c
}

.lottery-card-account .account-nav-funds--footer .tab-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.lottery-card-account .account-nav-funds--footer .tab-content.active {
  margin-top: .9375rem
}

.lottery-card-account .account-nav-funds--footer .tab-content p {
  color: #7a7b78;
  margin: 0
}

.lottery-card-account .account-nav-funds--footer .tab-content p span {
  font-weight: 600
}

.lottery-tabs {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
  background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .25);
  -moz-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, .25);
  padding: 1.5625rem 0 1.5625rem;
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  border-top-right-radius: 8px
}

.lottery-tabs h1 {
  color: #fff;
  text-align: center;
  padding: 0 1rem
}

.lottery-tabs>.tab-nav {
  margin-bottom: 1.25rem;
  width: 100%
}

.lottery-tabs .tab-nav {
  padding: 0
}

.lottery-tabs .tab-nav>li {
  font-size: .8125em !important;
  font-weight: 700 !important
}

.lottery-tabs .lottery-deck {
  padding: 0 1.5%
}

.lottery-tabs .lotery-tab--nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem
}

.lottery-tabs .lotery-tab--nav .tab-slide-toggle {
  max-width: 55%
}

.lottery-tabs .lotery-tab--nav .tab-toggle.tab-slide-toggle span.active {
  background: #2c68a5;
  color: #fff
}

.lottery-tabs .lotery-tab--nav p {
  text-align: left;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: .0625rem;
  display: inline-block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  position: relative;
  top: -3px;
  font-weight: 800;
  margin-right: .625rem
}

.lottery-tabs .mobile-slide {
  width: 100%
}

.lottery-tabs .mobile-slide .lottery-card {
  display: block;
  width: 100% !important;
  margin: 0 auto .625rem !important;
  border-left: 5px solid #2c68a5
}

.lottery-tabs .mobile-slide .lottery-card .is-label {
  letter-spacing: 1px;
  font-size: .6rem
}

.lottery-tabs .mobile-slide .lottery-card .is-label.superdraw {
  background: #ff4570 !important
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  position: relative
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front img {
  margin: 0 .9375rem 0 0
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front img.cta {
  margin: 0;
  background-color: #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: .5rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: .25rem;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front .lottery-card--content {
  margin: 0
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front .lottery-card--content h2 {
  font-size: 1em;
  color: #4c4d4a
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front .lottery-card--content p {
  text-align: left;
  display: block;
  margin: 0
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front .lottery-card--content p.timer {
  margin-top: .3125rem
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front .lottery-card--content p.timer span {
  font-size: .875em
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front p.lottery-card--amount {
  font-size: 1.875em !important;
  color: #2c68a5
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front p.lottery-card--amount.extra-tag {
  font-size: 1.375em !important;
  max-width: 85%
}

.lottery-tabs .mobile-slide .lottery-card .lottery-card-front p.lottery-card--amount-pending {
  padding-top: 0;
  font-size: 1.5625em !important
}

.lottery-tabs.no-superdraw {
  padding: 4rem
}

@media screen and (max-width:600px) {
  .lottery-tabs.no-superdraw {
    padding: 2rem 1rem
  }
}

.lottery-tabs.no-superdraw .container .white-box--shadow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  margin-top: 0 !important;
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  position: relative;
  text-align: left
}

.lottery-tabs.no-superdraw .container .white-box--shadow p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 600;
  text-align: center;
  color: #2c68a5
}

.lottery-tabs.no-superdraw .container .white-box--shadow p img {
  max-width: 3rem
}

.lottery-tabs.no-superdraw .container .white-box--shadow p a {
  text-decoration: none
}

.lottery-tabs.no-superdraw .container .white-box--shadow p span {
  color: #e25f2c;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2
}

.lottery-tabs .desktop-slider {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  grid-gap: 1rem 2rem;
  grid-auto-flow: dense;
  place-items: center
}

.lottery-tabs .desktop-slider .lottery-card {
  min-width: unset;
  max-width: 17rem;
  padding: 0;
  overflow: unset;
  margin: unset;
  margin-top: 2rem;
  border-top: 5px solid #2c68a5
}

.lottery-tabs .desktop-slider .lottery-card .is-label {
  letter-spacing: 1px;
  font-size: .6rem
}

.lottery-tabs .desktop-slider .lottery-card .is-label.superdraw {
  background: #ff4570 !important
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .lottery-tabs .desktop-slider .lottery-card {
    overflow: visible
  }
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front {
  padding: 3rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front .lottery-infor {
  min-height: 130px
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front .lottery-infor img {
  width: 4rem;
  height: auto;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-filter: blur(0) !important;
  filter: blur(0) !important;
  position: absolute;
  top: 0%;
  left: 50%
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front .lottery-infor h2 {
  color: #4c4d4a
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front p.lottery-card--amount {
  color: #2c68a5
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front p.lottery-card--amount-pending {
  padding-top: 0
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front p.timer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: .5rem .5rem 1rem;
  font-weight: 600
}

.lottery-tabs .desktop-slider .lottery-card .lottery-card-front p.timer .timer-countdown {
  font-size: 1em;
  font-weight: 600
}

.lottery-tabs .desktop-slider .lottery-card .button {
  margin-top: .5rem
}

.lottery-tabs .lottery-card.extra-lottery {
  display: none
}

.lottery-tabs .lottery-card.fade-out {
  opacity: 0;
  display: none;
  -webkit-transition: opacity 5s linear;
  transition: opacity 5s linear
}

.lottery-tabs .more-lotteries {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 0 0;
  margin: 2rem auto auto;
  text-align: center;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.lottery-tabs .more-lotteries svg {
  vertical-align: middle;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.lottery-tabs .more-lotteries.active svg {
  -webkit-animation: rotate-svg .5s forwards;
  animation: rotate-svg .5s forwards
}

@-webkit-keyframes rotate-svg {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
  }
}

@keyframes rotate-svg {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg)
  }
}

@media only screen and (max-width:1200px) {
  .lottery-tabs .desktop-slider {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: .5rem;
    grid-auto-flow: dense;
    place-items: center
  }

  .lottery-tabs .desktop-slider .lottery-card {
    min-width: auto !important
  }
}

@media only screen and (max-width:1000px) {
  .lotery-tab--nav .tab-slide-toggle {
    max-width: 80% !important
  }
}

@media only screen and (max-width:620px) {
  .lottery-tabs {
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset
  }

  .lottery-tabs h1 {
    font-size: 1.1rem;
    max-width: 85%;
    margin: auto
  }

  .lottery-tabs .lotery-tab--nav .tab-slide-toggle {
    max-width: 90% !important
  }

  .lottery-tabs .lotery-tab--nav .tab-slide-toggle span {
    line-height: 1 !important;
    padding: 6px !important
  }

  .lottery-tabs .desktop-slider {
    display: none
  }
}

@media only screen and (min-width:620px) {
  .lottery-tabs .mobile-slider {
    display: none !important
  }
}

@media only screen and (min-width:860px) {
  .lottery-tabs .lottery-deck {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 !important
  }

  .lottery-tabs .lottery-deck .lottery-deck--card {
    width: 23% !important;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 23%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 0 0 23%
  }
}

@media only screen and (min-width:760px) {

  .lottery-tabs .lotery-tab--nav>.tab-nav,
  .lottery-tabs>.tab-nav,
  .lottery-play--nav>.container .lotery-tab--nav>.tab-nav,
  .lottery-play--nav>.container>.tab-nav {
    width: 100%;
    font-size: 1.25em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .lottery-tabs .lotery-tab--nav>.tab-nav>li,
  .lottery-tabs>.tab-nav>li,
  .lottery-play--nav>.container .lotery-tab--nav>.tab-nav>li,
  .lottery-play--nav>.container>.tab-nav>li {
    opacity: .7;
    font-size: 1em !important
  }

  .lottery-tabs .lotery-tab--nav>.tab-nav>li br,
  .lottery-tabs>.tab-nav>li br,
  .lottery-play--nav>.container .lotery-tab--nav>.tab-nav>li br,
  .lottery-play--nav>.container>.tab-nav>li br {
    display: none
  }

  .lottery-tabs .lotery-tab--nav>.tab-nav>li.active,
  .lottery-tabs .lotery-tab--nav>.tab-nav>li:hover,
  .lottery-tabs>.tab-nav>li.active,
  .lottery-tabs>.tab-nav>li:hover,
  .lottery-play--nav>.container .lotery-tab--nav>.tab-nav>li.active,
  .lottery-play--nav>.container .lotery-tab--nav>.tab-nav>li:hover,
  .lottery-play--nav>.container>.tab-nav>li.active,
  .lottery-play--nav>.container>.tab-nav>li:hover {
    opacity: 1
  }
}

.lottery-cta {
  background: #4c4d4a;
  padding-bottom: 3.125rem;
  overflow: hidden;
  display: block
}

.lottery-cta .button {
  width: 12.5rem
}

.lottery-cta .lottery-cta--image {
  height: 70vw;
  max-height: 25rem;
  position: relative
}

.lottery-cta .lottery-cta--image:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #4c4d4a), to(transparent));
  background: -webkit-linear-gradient(bottom, #4c4d4a 0, transparent 100%);
  background: linear-gradient(to top, #4c4d4a 0, transparent 100%)
}

.lottery-cta .lottery-card {
  padding: 1.875rem
}

.lottery-cta .lottery-card .lottery-flag {
  width: 5.125rem;
  height: auto
}

.lottery-cta .lottery-cta--countdown {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem
}

.lottery-cta .lottery-cta--countdown p {
  color: #fff;
  margin: 0 0 .625rem;
  letter-spacing: .03125rem;
  font-size: 1.25em;
  font-weight: 700
}

@media only screen and (min-width:980px) {
  .lottery-cta {
    position: relative;
    padding: 3.125rem 0
  }

  .lottery-cta .lottery-card {
    min-width: 23.75rem
  }

  .lottery-cta .lottery-cta--image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0
  }

  .lottery-cta .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 9
  }

  .lottery-cta .container .lottery-card.lottery-card-offset {
    margin: 0;
    top: 0
  }

  .lottery-cta .container .lottery-cta--countdown {
    margin-top: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 100%
  }

  .lottery-cta .container .lottery-cta--countdown p {
    line-height: 1;
    margin: 0
  }

  .lottery-cta .container .lottery-cta--countdown .timer {
    margin-top: .625rem
  }

  .lottery-cta .container .lottery-cta--countdown .timer svg {
    max-height: 1.875rem
  }

  .lottery-cta.xlarge-banner {
    padding: 12.5rem 0 25rem
  }
}

.lottery-general {
  padding: 1.875rem 0 .625rem;
  font-size: 18px
}

.lottery-general .container-small {
  max-width: 47.5rem
}

.lottery-general h1 {
  color: #e25f2c;
  font-size: 1.875em;
  padding-bottom: 1.25rem
}

.lottery-general p,
.lottery-general li {
  font-size: .875em;
  color: #4c4d4a;
  font-family: "Open sans";
  line-height: 1.45
}

.lottery-general p:first-child,
.lottery-general li:first-child {
  margin-top: 0
}

.lottery-general.no-padding-top {
  padding-top: 0 !important
}

.lottery-general.align-left {
  text-align: left
}

.lottery-general.align-left h1 {
  text-align: center;
  margin: 0
}

.lottery-general.align-left h3 {
  margin-bottom: 0;
  margin-top: 1.25rem
}

.lottery-general.align-left h3,
.lottery-general.align-left p,
.lottery-general.align-left li {
  color: #7a7b78;
  font-size: .75em
}

.lottery-general table {
  width: 100%;
  border: 1px solid #7a7b78;
  font-size: .75em
}

.lottery-general table td {
  border: 1px solid #7a7b78;
  padding: .75rem
}

@media only screen and (min-width:768px) {
  .lottery-general {
    padding-bottom: 1.5625rem
  }

  .lottery-general h1 {
    text-align: left !important;
    font-size: 2.25em
  }

  .lottery-general h1:first-child {
    margin-bottom: 1.5625rem !important
  }

  .lottery-general h3 {
    font-size: 1.125em !important
  }

  .lottery-general p,
  .lottery-general li {
    font-size: 1em !important
  }

  .bg-blue-gradient .lottery-card {
    max-width: 67.5rem
  }

  table {
    font-size: 1em !important
  }
}

.lottery-blurb {
  background: -webkit-gradient(linear, right bottom, left top, from(#4c4d4a), to(#464d50));
  background: -webkit-linear-gradient(bottom right, #4c4d4a 0%, #464d50 100%);
  background: linear-gradient(to top left, #4c4d4a 0%, #464d50 100%);
  padding: 1.875rem 0
}

.lottery-blurb .container {
  max-width: 46.875rem
}

.lottery-blurb * {
  color: #fff
}

.lottery-blurb p {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125em;
  letter-spacing: 0
}

.lottery-blurb button {
  width: 50%
}

.lottery-game {
  position: relative;
  padding-bottom: 0
}

.lottery-game .tab-nav {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.lottery-game .tab-nav li {
  font-size: .9375em
}

.lottery-game .tab-toggle {
  margin-bottom: 1.25rem
}

.lottery-game .lottery-date-search {
  margin-top: 0;
  margin-bottom: 1.5625rem
}

@media only screen and (max-width:600px) {
  .lottery-game .lottery-date-search {
    width: 100%
  }
}

.play-game--right {
  margin: 1.875rem auto 0
}

.game-numbers--container {
  max-width: 21.875rem;
  margin: 0 auto
}

.lottery-number {
  font-family: "Open sans" !important
}

.add-game-favourites {
  margin-top: 1.25rem
}

.add-game-favourites.disabled {
  display: none
}

.lottery-game--play-now {
  max-width: 53.75rem;
  margin: 0 auto
}

.lottery-game--play-now.play-page {
  max-width: 100%
}

.lottery-game--play-now .play-now--header {
  margin-top: 1.5625rem
}

.lottery-game--play-now .play-now--header h3 {
  color: #fff;
  font-size: 1.125em;
  margin: 0 0 1.5625rem
}

.lottery-game--play-now .play-now--game .container .play-game--numbers {
  max-width: 25rem;
  margin: 0 auto
}

.lottery-game--play-now h5 {
  color: #e25f2c;
  font-size: 1.125em;
  font-weight: 700;
  margin: .625rem 0 0;
  letter-spacing: 0;
  line-height: 1.3
}

.lottery-game--play-now h5.qplay {
  color: #fff;
  margin: 1rem auto 1.5rem
}

.lottery-game--play-now h5.lotto-systems-h5>a.info-icon {
  margin-left: 5px
}

.lottery-game--play-now #play-now--my-favourites {
  padding: 1.5rem 1rem
}

.lottery-game--play-now #play-now--my-favourites .favourites-container {
  margin-bottom: 1.5rem
}

.lottery-game--play-now #play-now--my-favourites .favourites-container form {
  margin-top: 1.5rem
}

.lottery-game--play-now #play-now--my-favourites .favourites-container form .favourite-lottery {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset
}

.lottery-game--play-now #play-now--my-favourites .select-dropdown {
  background: #fff;
  max-width: 20rem;
  margin: .5rem auto;
  border: 2px solid #fff
}

.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-rendered,
.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-option {
  color: #2c68a5 !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-rendered.default,
.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-option.default {
  color: #e25f2c
}

.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-rendered.hide,
.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-option.hide {
  display: none
}

.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-rendered.show,
.lottery-game--play-now #play-now--my-favourites .select-dropdown .select-option.show {
  display: block
}

.lottery-card .play-now--game input[type="submit"] {
  margin: .9375rem auto 0;
  font-weight: 700
}

.lottery-card .play-now--game:before {
  display: none
}

.play-now--game {
  background: #fff
}

.play-now--game .play-game {
  padding: 0 .625rem 2.5rem
}

.play-now--game .play-game>.container>h2 {
  color: #fff
}

.play-now--game .play-game .play-game--numbers {
  padding: 1.25rem 0 0
}

.play-now--game .play-game .play-game--numbers .select-dropdown {
  max-width: 20rem;
  margin: 1rem auto 1.5rem
}

.play-now--game .play-game .play-game--numbers .select-dropdown .select-rendered,
.play-now--game .play-game .play-game--numbers .select-dropdown .select-option {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.play-now--game .play-game .play-game--numbers .tab-lotto-systems {
  display: none
}

.play-now--game .play-game .play-game--numbers .tab-lotto-systems.show-options {
  display: block
}

.play-now--game .play-game .play-game--numbers .standard-systems-select {
  margin: 1rem auto 1rem
}

.play-now--game .play-game .play-game--numbers .standard-systems-select ul li {
  background: #fff;
  border-bottom: 1px solid #e3e3e3
}

.play-now--game .play-game .play-game--numbers .standard-systems-select ul li:first-child {
  display: none
}

.play-now--game .play-game .play-game--numbers .standard-systems-select ul li:nth-child(2) {
  border-top: 1px solid #e3e3e3
}

.play-now--game .play-game .play-game--numbers .standard-systems-select ul li:focus {
  background: #e3e3e3 !important;
  color: #2c68a5 !important
}

.play-now--game .play-game .play-game--numbers .standard-systems-select ul li:hover {
  background-color: #2c68a5;
  color: #fff
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems {
  margin-bottom: 1rem;
  display: none
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems.show-infor {
  display: block
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems>table {
  background: #eee;
  border-spacing: 1px;
  border-collapse: separate;
  width: 90%;
  margin: auto;
  text-align: center;
  line-height: 1.5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 0
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems>table tr:first-child {
  background: #aaa;
  color: #fff
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems>table th {
  color: #fff
}

.play-now--game .play-game .play-game--numbers .infor-lotto-systems>table td {
  color: #7a7b78;
  font-weight: 600;
  line-height: 2;
  border: 0
}

.play-qp--game .play-game .play-game--quickplay {
  padding: .625rem 0
}

.play-qp--game .play-game .play-game--quickplay .select-dropdown {
  background: #fff;
  max-width: 20rem;
  margin: 1rem auto 1.5rem;
  border: 2px solid #fff
}

.play-qp--game .play-game .play-game--quickplay .select-dropdown .select-rendered,
.play-qp--game .play-game .play-game--quickplay .select-dropdown .select-option {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.game-number-lines {
  margin-top: 1.25rem;
  overflow: hidden
}

.game-number-lines p {
  font-weight: 700;
  margin: 0 0 .625rem !important;
  font-size: .875em !important
}

.game-number-lines p.game-count {
  font-size: 1.25rem !important;
  margin: 0 auto !important;
  color: #2c68a5;
  text-align: center !important;
  margin-right: auto !important;
  margin-left: auto !important
}

.game-number-lines .game-number-line {
  opacity: 0;
  position: relative;
  left: -100%
}

.game-number-lines .game-number-line .number-line--numbers {
  position: relative;
  display: inline-block;
  padding-right: 2.5rem
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span {
  border: 2px solid #d8262d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: .46875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #d8262d;
  font-weight: 700;
  font-size: .625em;
  cursor: pointer
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span svg {
  width: .5625rem
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span svg * {
  fill: #2c68a5
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite {
  border-color: #79b409;
  color: #79b409
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite svg * {
  stroke: #79b409;
  fill: transparent;
  stroke-width: 3.5px
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite.active {
  background-color: #209d4d
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite.active svg * {
  stroke: white;
  fill: white
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-edit {
  border-color: #2c68a5
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span:last-of-type {
  margin-bottom: 0
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions .lottery-close svg * {
  fill: #d8262d;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.game-number-lines .game-number-line .number-line--numbers .lottery-line-actions img {
  cursor: pointer;
  margin: 1px auto
}

.game-number-lines .game-number-line .lottery-numbers {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.game-number-lines .game-number-line .lottery-numbers.edit-line {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: auto !important;
  flex: auto !important
}

.game-number-lines .game-number-line .lottery-numbers .lottery-number {
  font-size: .9375em
}

.game-number-lines .game-number-line .lottery-numbers .lottery-number.primitiva-lucky {
  display: none
}

.game-number-lines .game-number-line.added {
  overflow: visible;
  opacity: 1;
  margin-bottom: 1.875rem;
  left: 0
}

.game-number-lines .game-number-line.remove {
  max-height: 0;
  right: 500px
}

.game-number-lines.no-favourite .lottery-favourite {
  display: none !important
}

.game-number-lines.no-favourite .custom-numbers--title {
  padding: 0 .9375rem
}

.game-number-lines.no-favourite .game-number-line {
  margin-bottom: .625rem
}

.game-number-lines.number-lines-minimised .game-number-line:nth-of-type(n+4) {
  display: none
}

.game-number-lines.number-lines-minimised+.number-lines-expand::after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0)
}

.number-lines-expand {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  cursor: pointer;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2;
  text-decoration: underline
}

.number-lines-expand:after {
  content: '';
  background-image: url(../icons/icon-angle-down.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  height: .9375rem;
  width: .9375rem;
  display: block;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  margin-left: .625rem;
  margin-top: .15625rem;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}

.number-lines-expand:hover {
  opacity: .7
}

.choose-numbers {
  min-width: 75%;
  padding: .78125rem 1.875rem;
  letter-spacing: 0;
  font-weight: 700
}

.draw-multipliers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1.25rem .625rem 1.25rem 1.5625rem !important
}

.draw-multipliers label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: .9375rem 0
}

.draw-multipliers label:last-of-type {
  margin: .9375rem 0
}

.draw-multipliers label.over-limit {
  opacity: .5;
  cursor: not-allowed
}

.draw-multipliers label.over-limit:active {
  pointer-events: none
}

.instruction-text {
  text-align: center !important
}

.custom-numbers .custom-numbers--title {
  position: relative;
  text-align: center !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem !important
}

.custom-numbers .custom-numbers--title.reintegro-notice {
  background-color: #7a7b78;
  padding: 10px !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff !important
}

.custom-numbers .quick-select,
.custom-numbers .remove-line,
.custom-numbers .lottery-reset {
  position: relative;
  width: 1.5625rem;
  height: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid purple;
  color: purple;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: .75em;
  cursor: pointer;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.custom-numbers .quick-select svg,
.custom-numbers .remove-line svg,
.custom-numbers .lottery-reset svg {
  width: .625rem
}

.custom-numbers .quick-select svg path,
.custom-numbers .remove-line svg path,
.custom-numbers .lottery-reset svg path {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.custom-numbers .quick-select *,
.custom-numbers .remove-line *,
.custom-numbers .lottery-reset * {
  stroke: purple;
  fill: purple
}

.custom-numbers .quick-select:after,
.custom-numbers .remove-line:after,
.custom-numbers .lottery-reset:after {
  content: 'Random pick';
  display: block;
  position: absolute;
  text-align: left;
  left: 1.75rem;
  width: 90px;
  text-decoration: underline;
  font-size: .85rem
}

.custom-numbers .remove-line {
  border-color: #d8262d;
  color: #d8262d;
  left: -20%
}

.custom-numbers .remove-line svg {
  width: .4375rem
}

.custom-numbers .remove-line * {
  stroke: #d8262d !important;
  fill: #d8262d !important
}

.custom-numbers .remove-line:after {
  content: 'Delete'
}

.custom-numbers .lottery-reset {
  border: 0;
  color: #1ca3cc;
  left: -5%
}

.custom-numbers .lottery-reset:hover svg {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.custom-numbers .lottery-reset svg {
  width: 1.25rem;
  height: 1.25rem
}

.custom-numbers .lottery-reset * {
  stroke: #1ca3cc;
  fill: #1ca3cc
}

.custom-numbers .lottery-reset:after {
  content: 'Reset'
}

.custom-numbers .lottery-number {
  color: #fff;
  font-size: 1em;
  font-style: italic;
  text-indent: -2px;
  font-weight: 800;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.custom-numbers .custom-numbers--selected {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: .9375rem 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #eee;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px
}

.custom-numbers .custom-numbers--selected .custom-selected {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: -webkit-calc((100% - (2*6%))/7) !important;
  width: calc((100% - (2*6%))/7) !important;
  padding-bottom: -webkit-calc((100% - (2*6%))/7) !important;
  padding-bottom: calc((100% - (2*6%))/7) !important;
  height: 0;
  min-height: 2.1875rem;
  position: relative;
  margin: 0 .3125rem 0 0 !important
}

.custom-numbers .custom-numbers--selected .custom-selected.custom-selected-8,
.custom-numbers .custom-numbers--selected .custom-selected.custom-selected-9,
.custom-numbers .custom-numbers--selected .custom-selected.custom-selected-10 {
  margin-top: 2px !important
}

.custom-numbers .custom-numbers--selected .custom-selected .lottery-number {
  border: 3px solid #e25f2c;
  position: absolute !important;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out .1s;
  transition: all ease-in-out .1s;
  font-size: 0;
  background: transparent
}

.custom-numbers .custom-numbers--selected .custom-selected .lottery-number.selected {
  background: #e25f2c
}

.custom-numbers .custom-numbers--selected .custom-selected.selected {
  background: #e25f2c
}

.custom-numbers .custom-numbers--selected .custom-selected.selected .lottery-number {
  opacity: 1;
  font-size: 1em
}

.custom-numbers .custom-numbers--selected .custom-selected:last-of-type {
  margin-right: 0 !important
}

.custom-numbers .custom-numbers--selection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: .9375rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.custom-numbers .custom-numbers--selection .custom-selection {
  width: -webkit-calc((100% - (2*7%))/8) !important;
  width: calc((100% - (2*7%))/8) !important;
  padding-bottom: -webkit-calc((100% - (2*7%))/8) !important;
  padding-bottom: calc((100% - (2*7%))/8) !important;
  position: relative;
  min-height: 1.875rem;
  margin: 0 .3125rem .3125rem 0 !important;
  border: none !important;
  outline: none
}

.custom-numbers .custom-numbers--selection .custom-selection .lottery-number {
  position: absolute;
  background: #cbcbcb;
  width: 100%;
  height: 100%
}

.custom-numbers .custom-numbers--selection .custom-selection.selected .lottery-number {
  background: #e25f2c
}

.custom-numbers .custom-numbers--selection .custom-selection:nth-of-type(8n+8) {
  margin-right: 0 !important
}

.custom-numbers .custom-numbers--action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 1.875rem 0 1.25rem
}

.custom-numbers .custom-numbers--action .button {
  font-size: .875em;
  padding: .90625rem 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  margin: 0 auto
}

.custom-numbers.custom-numbers--lucky.primitiva-custom-numbers {
  display: none
}

.custom-numbers.custom-numbers--lucky .custom-numbers--selected .custom-selected .lottery-number {
  border-color: #38a4d0
}

.custom-numbers.custom-numbers--lucky .custom-numbers--selected .custom-selected.selected {
  background: #38a4d0
}

.custom-numbers.custom-numbers--lucky .custom-numbers--selected.hidden {
  display: none
}

.custom-numbers.custom-numbers--lucky .custom-numbers--selection.hidden {
  display: none
}

.custom-numbers.custom-numbers--lucky .custom-numbers--selection .custom-selection.selected .lottery-number {
  background: #38a4d0
}

.custom-numbers.hidden {
  display: none
}

.add-game {
  width: 14.0625rem;
  margin: 1.25rem auto 0 !important;
  font-weight: 700;
  letter-spacing: 0;
  padding: .75rem 1.25rem .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  line-height: 1
}

.add-game svg {
  position: absolute;
  left: .625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.add-game svg circle {
  stroke: #2c68a5
}

.add-game.disabled {
  opacity: .5
}

.add-game.over-limit {
  display: none
}

.play-game--draws {
  max-width: 15.625rem;
  margin: 1.875rem auto
}

.play-game--draws p {
  letter-spacing: 0;
  margin-top: .625rem
}

.play-game--draws .input-range {
  margin-top: 3.125rem
}

.play-game--footer .game-footer--title {
  color: #e25f2c;
  font-size: 1.375em;
  font-weight: 700;
  margin: 0 0 .9375rem
}

.play-game--footer .play-game--dates {
  color: #e25f2c;
  font-weight: 700;
  margin: 0 0 1.5625rem;
  font-size: 1em
}

.play-game--footer input[type="submit"],
.play-game--footer button {
  width: 80%;
  -webkit-border-radius: 1.25rem;
  -moz-border-radius: 1.25rem;
  border-radius: 1.25rem;
  padding: .9375rem;
  margin: 0 auto;
  font-weight: 700;
  font-family: "Open sans";
  letter-spacing: 0;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5993c), color-stop(51%, #f76b1c), to(#f5993c));
  background-image: -webkit-linear-gradient(left, #f5993c 0%, #f76b1c 51%, #f5993c 100%);
  background-image: linear-gradient(to right, #f5993c 0%, #f76b1c 51%, #f5993c 100%);
  border: none;
  background-size: 150% auto;
  text-align: center;
  display: block
}

.play-game--footer input[type="submit"]:hover,
.play-game--footer button:hover {
  background-position: right center
}

.play-game--footer .play-checkout-btn {
  max-width: 225px
}

.play-game--footer #checkout-cart-svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px
}

.lottery-game--lottery-results {
  max-width: 26.25rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-game--lottery-results .results {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 75% !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 75% !important;
  flex: 0 0 75% !important
}

.lottery-game--lottery-results .results .results-nav-container {
  padding: 0 1rem 1rem;
  max-width: 50rem;
  margin: auto
}

.lottery-game--lottery-results .results .results-nav-container a {
  color: #fff;
  cursor: pointer;
  font-weight: bold
}

.lottery-game--lottery-results .results .results-nav-container a:hover {
  text-decoration: underline;
  color: #e25f2c;
  opacity: 1
}

.lottery-game--lottery-results .lottery-results--nav {
  margin-bottom: 1.875rem
}

.lottery-game--lottery-results .lottery-results--nav * {
  color: #fff
}

.lottery-game--lottery-results .lottery-results--nav p {
  margin: 0 0 .9375rem;
  font-weight: 700
}

.lottery-game--lottery-results .lottery-results--nav .results-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 72.5%;
  margin: 0 auto;
  font-size: 14px
}

.lottery-game--lottery-results .lottery-results--nav .results-nav p {
  padding: 0 1.25rem;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%
}

.lottery-game--lottery-results .lottery-results--nav .results-nav a {
  line-height: 1.3;
  text-align: center;
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto
}

.lottery-game--lottery-results .lottery-results--nav .results-nav a:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  width: .9375rem;
  height: .9375rem;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 1;
  font-weight: 900;
  font-size: .75em
}

.lottery-game--lottery-results .lottery-results--nav .results-nav a.result-prev:before {
  background-image: url(../icons/icon-angle-left-blue.svg);
  right: -webkit-calc(100% + .9375rem);
  right: calc(100% + .9375rem)
}

.lottery-game--lottery-results .lottery-results--nav .results-nav a.result-next:before {
  background-image: url(../icons/icon-angle-right-blue.svg);
  left: -webkit-calc(100% + .9375rem);
  left: calc(100% + .9375rem)
}

.lottery-game--lottery-results .lottery-results--nav .results-nav a.disabled {
  opacity: .3 !important;
  cursor: default
}

.lottery-game--lottery-results .lottery-card--results {
  padding: 1.25rem 1.875rem;
  max-width: 100% !important
}

.lottery-game--lottery-results .lottery-card--results .lottery-numbers-container {
  margin-bottom: 1.25rem
}

.lottery-game--lottery-results .lottery-card--results h3 {
  color: #2c68a5;
  margin: 0 0 .9375rem;
  font-size: 1em
}

.lottery-game--lottery-results .lottery-card--results .results-expand+.results-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity ease-in-out .2s;
  transition: opacity ease-in-out .2s
}

.lottery-game--lottery-results .lottery-card--results .results-expand.active+.results-content {
  opacity: 1;
  visibility: visible;
  overflow: visible !important
}

.divisions-breakdown .lottery-numbers {
  margin: 0 auto
}

.divisions-breakdown .lottery-number {
  margin-left: 0 !important
}

.lottery-game--how-to-play:before {
  display: none
}

.lottery-game--how-to-play .how-to-play--information {
  padding: 1.25rem 0
}

.lottery-game--how-to-play .how-to-play--information .lottery-card {
  padding: 1.5625rem 1.25rem
}

.lottery-game--how-to-play .how-to-play--information .lottery-card h2 {
  margin-bottom: 1.875rem;
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Open sans";
  color: #e25f2c
}

.lottery-game--how-to-play .how-to-play--information .lottery-card p {
  text-align: left;
  font-size: .875em;
  margin: 0 0 .3125rem;
  font-family: "Open sans";
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.lottery-game--how-to-play .how-to-play--information .lottery-card p span {
  font-weight: 700;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 42.5%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 42.5%;
  flex: 0 0 42.5%;
  margin-left: 2.5%
}

.lottery-game--how-to-play .how-to-play--divisions {
  background: #fff;
  padding: 2.5rem 0
}

.lottery-game--how-to-play .how-to-play--divisions .container {
  width: 80%
}

.lottery-game--how-to-play .how-to-play--divisions img.instant-win-img {
  max-width: 450px;
  width: auto;
  margin: auto auto 1rem auto
}

.lottery-game--how-to-play .how-to-play--divisions .lottery-flag {
  width: 2.8125rem;
  height: auto;
  margin-bottom: .9375rem
}

.lottery-game--how-to-play .how-to-play--divisions h2 {
  color: #e25f2c;
  font-size: 1.125em;
  font-weight: 700;
  font-family: "Open sans";
  margin: 1.5625rem 0 .9375rem
}

.lottery-game--how-to-play .how-to-play--divisions h3 {
  color: #e25f2c;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Open sans";
  margin: 0 0 .46875rem
}

.lottery-game--how-to-play .how-to-play--divisions p {
  font-size: .875em;
  font-family: "Open sans";
  color: #7a7b78;
  text-align: left;
  margin: .5rem 0;
  color: #2c68a5
}

.lottery-game--how-to-play .how-to-play--divisions .divisions-breakdown .lottery-number {
  margin-left: 0 !important
}

.lottery-game--how-to-play .how-to-play--descriptions {
  background: #fff
}

.lottery-game--how-to-play .how-to-play--descriptions .container {
  width: 80%
}

.lottery-game--how-to-play .how-to-play--descriptions .how-to-description {
  border-top: 1px solid #e6e6e6;
  padding: 2.03125rem 0 1.25rem
}

.lottery-game--how-to-play .how-to-play--descriptions .how-to-description h2 {
  margin: 0 0 1.875rem;
  color: #e25f2c;
  font-size: 1em;
  font-family: "Open sans";
  font-weight: 600;
  letter-spacing: .3px
}

.lottery-game--how-to-play .how-to-play--descriptions .how-to-description p {
  text-align: left;
  color: #2c68a5;
  font-size: .875em;
  font-weight: 400;
  letter-spacing: .3px
}

.lottery-game--how-to-play .how-to-play--footer {
  padding: 1.25rem 0 0
}

.choose-plays {
  padding: 1.5625rem 0 0
}

.choose-plays .button {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-transition: none !important;
  transition: none !important
}

.choose-plays h4 {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0
}

.choose-plays .choose-plays-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem
}

.choose-plays .choose-plays-container label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24.25%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 24.25%;
  flex: 0 0 24.25%;
  max-width: 24.5%;
  cursor: pointer;
  padding: .8125rem .9375rem;
  letter-spacing: .03125rem;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  margin-bottom: .5rem;
  overflow: hidden;
  font-weight: 700
}

.choose-plays .choose-plays-container label.input-full {
  padding: 0;
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

.choose-plays .choose-plays-container label.input-full.active {
  display: block
}

.choose-plays .choose-plays-container .input-blue {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  max-width: 100%;
  padding: 0
}

.choose-plays .choose-plays-container .input-blue input {
  margin: 0;
  font-weight: 700;
  text-align: center;
  width: 100%
}

.choose-plays .choose-plays-container input[type="radio"] {
  display: none
}

.choose-plays .choose-plays-container input[type="radio"]:checked+label {
  color: #fff;
  background-image: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
  background-image: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  background-image: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  border-color: transparent
}

@media only screen and (min-width:760px) {
  .choose-plays .choose-plays-container input[type="radio"]+label:hover {
    color: #fff;
    background-image: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
    background-image: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
    background-image: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
    border-color: transparent
  }
}

.choose-plays .choose-plays-container.items-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.choose-plays .choose-plays-container.items-center label {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 40% !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 40% !important;
  flex: 0 0 40% !important;
  margin-right: 1rem !important;
  max-width: initial
}

.choose-plays.border-bottom:after {
  content: '';
  width: 100%;
  height: .625rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#36a8f5), to(#36a8f6));
  background: -webkit-linear-gradient(bottom, #36a8f5 0%, #36a8f6 100%);
  background: linear-gradient(to top, #36a8f5 0%, #36a8f6 100%);
  display: block;
  margin-top: 1.375rem
}

.divisions-breakdown {
  max-width: 20rem;
  margin: 0 auto
}

.divisions-breakdown.active {
  overflow: visible
}

.divisions-breakdown .divisions-container {
  text-align: center;
  margin-bottom: 4.6875rem !important
}

.divisions-breakdown .divisions-container h4 {
  display: block;
  width: 100%;
  margin: 0 0 .9375rem;
  color: #2c68a5;
  font-size: .875rem;
  font-family: "Open sans";
  font-weight: 700;
  line-height: 2
}

.divisions-breakdown .divisions-container p {
  font-size: .875rem;
  color: #7a7b78 !important;
  font-family: "Open sans";
  font-weight: 400;
  margin-bottom: .9375rem !important
}

.total-cost {
  display: inline-block;
  color: #e25f2c;
  font-weight: 700;
  font-size: 1.875em;
  padding: 1.25rem;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  line-height: 1;
  margin-bottom: 1.875rem;
  border: .125rem solid #e25f2c;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

@media only screen and (min-width:760px) {
  .play-now--game {
    max-width: 53.75rem;
    margin: 0 auto
  }

  .play-now--game:before {
    display: none
  }

  .play-now--game .choose-plays {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 1.875rem;
    margin: 0 auto;
    text-align: center
  }

  .play-now--game .choose-plays .choose-plays-container {
    max-width: 28.75rem;
    margin: 1.5625rem auto 0
  }

  .play-now--game .play-game {
    padding: 1.5625rem 0
  }

  .play-now--game .play-game .container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-width: 25rem
  }

  .play-now--game .play-game .container>* {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
    margin-top: 0;
    width: 100%
  }

  .play-now--game .play-game .container .play-game--numbers {
    top: 6.875rem;
    left: 0;
    margin: 0 auto;
    max-width: 100%
  }

  .play-now--game .play-game .container .play-game--right {
    top: 6.875rem;
    right: 0;
    padding: 0 5%;
    margin: 1.875rem auto 0
  }

  .lottery-game--lottery-results {
    width: 92.5%;
    max-width: 73.75rem;
    margin: 0 auto
  }

  .lottery-game--lottery-results.active {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .lottery-game--lottery-results .lottery-results--nav {
    margin: 1.875rem 0 .9375rem;
    width: 92.5%
  }

  .lottery-game--lottery-results .lottery-results--nav .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .lottery-game--lottery-results .lottery-results--nav .container p {
    margin: 0 auto
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0;
    padding: 0 1.875rem 0
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav a {
    opacity: .8
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav a:last-child {
    margin-right: 0
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav br {
    display: none
  }

  .lottery-game--lottery-results .results {
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 75% !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 75% !important;
    flex: 0 0 75% !important
  }

  .lottery-game--lottery-results .results .container {
    width: 100%
  }

  .lottery-game--lottery-results>.container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 45%;
    width: 100% !important;
    max-width: 100% !important
  }

  .lottery-game--lottery-results>.container .lottery-card {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .lottery-game--lottery-results .lottery-date-search {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    width: 100%;
    max-width: 22.5rem
  }

  .lottery-game--lottery-results .lottery-card--results {
    max-width: 90% !important
  }
}

@media only screen and (min-width:860px) {
  .lottery-game .play-now--game {
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2)
  }
}

@media only screen and (min-width:980px) {
  .add-game svg path {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .add-game svg circle {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .add-game:hover svg path {
    fill: white
  }

  .add-game:hover svg circle {
    stroke: white
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span:hover {
    color: #fff
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span:hover path {
    color: #fff;
    stroke: white
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-edit * {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-edit:hover {
    background-color: #2c68a5
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite:hover,
  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite.active {
    background-color: #209d4d
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite:hover svg *,
  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-favourite.active svg * {
    stroke: white;
    fill: white
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-close:hover {
    background-color: #d8262d
  }

  .game-number-lines .game-number-line .number-line--numbers .lottery-line-actions>span.lottery-close:hover path {
    fill: white;
    stroke: transparent
  }

  .custom-numbers .quick-select {
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    cursor: pointer
  }

  .custom-numbers .quick-select:hover {
    background-color: purple
  }

  .custom-numbers .quick-select:hover * {
    stroke: white;
    fill: white
  }

  .custom-numbers .remove-line:hover {
    background-color: #d8262d
  }

  .custom-numbers .remove-line:hover * {
    stroke: white !important;
    fill: white !important
  }

  .lottery-game--how-to-play .how-to-play--main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 92.5%;
    max-width: 73.75rem;
    margin: 0 auto;
    padding: .9375rem 0 2.5rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--information,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 50rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--information>.container,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--information .lottery-card,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions>.container,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .lottery-card {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100% !important
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--information>.container,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions>.container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--information .lottery-card,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .lottery-card {
    height: 100%;
    padding: 1.25rem 3rem 2rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--information .lottery-card h3,
  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .lottery-card h3 {
    font-size: 1.125em;
    font-weight: 700
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions {
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem;
    padding: .9375rem 1.5625rem 2.5rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .how-to-play--divisions-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: .9375rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .how-to-play--divisions-title h2 {
    margin: 0
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions .how-to-play--divisions-title img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 0 0 .9375rem
  }

  .lottery-game--how-to-play .how-to-play--main .how-to-play--divisions h3 {
    margin-bottom: 0
  }

  .lottery-game--how-to-play .how-to-play--descriptions .container-desktop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left
  }

  .lottery-game--how-to-play .how-to-play--descriptions .how-to-description {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%
  }

  .lottery-game--how-to-play .how-to-play--descriptions .how-to-description .container {
    max-width: 100%;
    width: 100%
  }

  .lottery-game--how-to-play .how-to-play--descriptions .how-to-description h2 {
    margin-bottom: .625rem;
    font-size: 1.125em
  }

  .lottery-game--how-to-play .how-to-play--footer {
    padding-top: 3.125rem
  }

  .divisions-breakdown {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 95%;
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .divisions-breakdown .divisions-container {
    margin-bottom: 0 !important;
    display: block;
    width: 100%
  }

  .divisions-breakdown .divisions-container .isJoker {
    margin: 1rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid #e3e3e3
  }

  .divisions-breakdown .divisions-container .isJoker h2 {
    text-align: left;
    color: #7a7b78;
    margin: 0;
    padding: 1rem 0
  }

  .divisions-breakdown .divisions-container .how-to-win {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
  }

  .divisions-breakdown .divisions-container .how-to-win.primitiva-how-to-win {
    margin: 1rem auto
  }

  .divisions-breakdown .divisions-container .how-to-win .division {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: left
  }

  .divisions-breakdown .divisions-container .how-to-win .division h4 {
    margin: 0
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-numbers-row {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0 !important
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-numbers-row .flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-numbers-row .flex-container .flex-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-numbers-row img.divisions {
    max-width: 250px
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-number {
    max-width: 2rem
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-number.joker {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-number.joker.half {
    height: 15px;
    border: 1px solid #e25f2c
  }

  .divisions-breakdown .divisions-container .how-to-win .lottery-number.joker.empty {
    background: none;
    border: 1px solid #e3e3e3
  }

  .divisions-breakdown .input-range {
    width: 40%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .3125rem
  }

  .custom-selection,
  .custom-selected.selected {
    cursor: pointer;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s
  }

  .custom-selection:hover,
  .custom-selected.selected:hover {
    opacity: .5
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav {
    font-size: 16px
  }

  .lottery-game--lottery-results .lottery-results--nav .container .results-nav a:hover {
    opacity: 1
  }
}

@media only screen and (max-width:1000px) {
  .lottery-game--lottery-results .results {
    display: block;
    -webkit-box-flex: 1 !important;
    -webkit-flex: auto !important;
    -moz-box-flex: 1 !important;
    -ms-flex: auto !important;
    flex: auto !important;
    margin: auto
  }

  .lottery-card .read-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
  }

  .divisions-breakdown .divisions-container {
    display: block;
    margin-bottom: 0 !important
  }

  .divisions-breakdown .divisions-container .isJoker {
    margin: 1rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid #e3e3e3
  }

  .divisions-breakdown .divisions-container .isJoker h2 {
    text-align: center;
    color: #7a7b78;
    margin: 0;
    padding: 1rem 0
  }

  .divisions-breakdown .divisions-container .how-to-win {
    margin: 1rem auto
  }

  .divisions-breakdown .divisions-container .how-to-win h4 {
    font-size: .875rem !important;
    margin: 0 !important
  }

  .divisions-breakdown .divisions-container .how-to-win .division p {
    margin-bottom: 0 !important
  }
}

@media only screen and (max-width:600px) {
  .lottery-game--lottery-results .results {
    -webkit-box-flex: 1 !important;
    -webkit-flex: auto !important;
    -moz-box-flex: 1 !important;
    -ms-flex: auto !important;
    flex: auto !important
  }

  .lottery-game--how-to-play .how-to-play--divisions img.instant-win-img {
    max-width: 100%;
    margin: auto auto 1rem auto
  }

  .infor-lotto-systems>table {
    width: 100% !important;
    font-size: .9em
  }
}

.ticket-link {
  text-decoration: underline;
  color: #7a7b78
}

.ticket-link.pending {
  text-decoration: none;
  cursor: default;
  color: inherit
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.banner.banner-account {
  max-width: 80rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin: 1rem auto;
  position: relative;
  padding: 0;
  background-color: #e3e3e3 !important
}

.banner.banner-account .button {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  transform: none !important
}

.banner.banner-account>.container {
  max-width: 30rem;
  padding: .9375rem 0 .9375rem;
  min-height: 325px
}

.banner.banner-account:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../icons/tlo-logo-transparent-dark.svg);
  background-size: 115% auto;
  background-repeat: no-repeat;
  background-position: center right;
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
  background-size: cover
}

.banner.banner-account * {
  z-index: 1;
  position: relative;
  color: #2c68a5
}

.banner.banner-account img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  border: 3px solid #fff;
  margin-bottom: .9375rem
}

.banner.banner-account h1 {
  font-weight: 700;
  margin-top: .3125rem;
  margin-bottom: .3125rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1
}

.banner.banner-account h1 span {
  margin-left: .9375rem
}

.banner.banner-account h1.verified:after {
  font-size: 40%;
  background-color: #fff;
  border-color: #fff
}

.banner.banner-account .account-no {
  margin-bottom: 1rem
}

.banner.banner-account p {
  font-family: "Open sans";
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: .3px;
  color: #2c68a5
}

.banner.banner-account .account-unverified {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-decoration: underline;
  display: block;
  cursor: pointer;
  background: red;
  color: #fff;
  font-weight: bold;
  padding: 1rem;
  font-size: 1.2rem
}

.banner.banner-account .account-pending-review {
  background: #e25f2c
}

.banner.banner-account .icon-round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 2rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 2rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 2rem;
  flex: 0 0 2rem;
  height: 2rem;
  position: relative;
  background: #fff
}

.banner.banner-account .icon-round svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  overflow: visible
}

.banner.banner-account .icon-round.active {
  background: #fff
}

.banner.banner-account .icon-round.active svg * {
  fill: #e25f2c
}

.banner.banner-account #account-notifications {
  position: absolute;
  top: 1.0625rem;
  right: 0
}

.banner.banner-account #account-notifications svg {
  width: 1.125rem
}

.banner.banner-account #account-edit svg {
  width: .9375rem
}

.banner.banner-account .balance {
  line-height: 1;
  margin: 1rem auto auto
}

.banner.banner-account .balance>span {
  font-size: 145%;
  margin-top: .9375rem
}

.banner.banner-account .balance>span .icon-round {
  margin-left: .9375rem;
  width: 1.625rem;
  height: 1.625rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.625rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.625rem;
  flex: 0 0 1.625rem
}

.banner.banner-account .balance>span .icon-round svg {
  height: .78125rem
}

.banner.banner-account .account-balance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 0;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  visibility: visible;
  opacity: 1;
  height: auto
}

.banner.banner-account .account-balance>p {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  font-size: 1.125em;
  position: relative;
  opacity: 0;
  -webkit-transition: all ease-in-out .5s .2s;
  transition: all ease-in-out .5s .2s
}

.banner.banner-account .account-balance>p:first-of-type {
  right: 150px
}

.banner.banner-account .account-balance>p:last-of-type {
  left: 150px
}

.banner.banner-account .account-balance>p span {
  display: block;
  font-size: 125%
}

.banner.banner-account .account-balance>p:last-of-type {
  margin-right: 0
}

.banner.banner-account .account-balance.active {
  max-height: 500px
}

.banner.banner-account .account-balance.active>p {
  opacity: 1
}

.banner.banner-account .account-balance.active>p:first-of-type {
  right: 0
}

.banner.banner-account .account-balance.active>p:last-of-type {
  left: 0
}

.banner.banner-account .account-actions>a {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  margin-right: .78125rem;
  font-size: 1em;
  padding: .78125rem 0 .84375rem;
  border-color: #2c68a5
}

.banner.banner-account .account-actions>a:last-of-type {
  margin-right: 0
}

.banner.banner-account .account-actions>a.active+p {
  display: block
}

.banner.banner-account .account-actions .button {
  margin-top: 1.5625rem;
  min-width: 0
}

.banner.banner-account .account-actions>p {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 0;
  display: none
}

.banner.banner-account .account-actions>p span {
  display: block;
  font-size: 125%
}

.account--action-tab .container {
  max-width: 53.75rem
}

.account--action-tab .lottery-card-account {
  padding: 1.5625rem 1.25rem !important
}

.account--action-tab .lottery-card-account:last-of-type {
  margin-bottom: 0
}

.account--action-tab.active {
  padding: 1.25rem 0
}

.lottery-card.lottery-card-account {
  padding: 1.5625rem 1.25rem;
  margin-bottom: .9375rem
}

.lottery-card.lottery-card-account h3 {
  font-size: 1em;
  font-weight: 600;
  font-family: "Open sans";
  margin: 0 0 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card.lottery-card-account h3 span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.lottery-card.lottery-card-account h3 svg {
  margin-left: .9375rem;
  cursor: pointer
}

.lottery-card.lottery-card-account h3 svg * {
  fill: #e25f2c
}

.lottery-card.lottery-card-account h4 {
  font-size: 1.25em;
  color: #2c68a5;
  margin: 0 0 .625rem
}

.lottery-card.lottery-card-account p {
  font-size: .875em;
  text-align: left;
  margin: 0 0 .3125rem
}

.lottery-card.lottery-card-account form h3 {
  margin: 1.875rem 0 1.5625rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative
}

.lottery-card.lottery-card-account form input[type="submit"] {
  margin: .625rem 0 0
}

.lottery-card.lottery-card-account>.payment-detail {
  margin-bottom: 0
}

.lottery-card.lottery-card-account:last-of-type {
  margin-bottom: 0
}

.account-favourites h5 {
  color: #fff;
  font-size: 1rem;
  margin: auto auto 1rem
}

.account-favourites .favourites-container {
  max-width: 48.75rem;
  margin: 0 auto;
  padding-top: 1.25rem
}

.account-favourites .favourites-container .lottery-card-favourite {
  overflow: visible;
  max-height: none
}

.account-favourites .favourites-container .lottery-card-favourite .play-now--game {
  max-width: 25rem;
  width: 100%;
  margin: 0 auto
}

.account-favourites .results-content .select-dropdown ul {
  overflow: auto
}

.select-add-lottery {
  max-width: 22.5rem;
  margin: 0 auto
}

.payment-detail {
  color: #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1em !important;
  font-weight: 400;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-right: 0 !important
}

.payment-detail img {
  width: 1.875rem;
  height: auto
}

.payment-detail .remove-payment {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d8262d;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s;
  cursor: pointer
}

.payment-detail .remove-payment svg {
  width: 75%;
  height: 75%;
  fill: #d8262d;
  -webkit-transition: all ease-in-out .15s;
  transition: all ease-in-out .15s
}

.payment-detail .remove-payment:hover {
  background-color: #d8262d
}

.payment-detail .remove-payment:hover svg {
  fill: white
}

.payment-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.payment-details h3 {
  color: #2c68a5;
  margin: 1rem 0 .5rem
}

.payment-details .payment-detail {
  margin: 0;
  width: 95%;
  padding: .3125rem 5%;
  border-top: 1px solid #2c68a5;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.payment-details .payment-detail:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0
}

.payment-details .payment-detail:last-of-type {
  margin-bottom: 0
}

#account--spending-edit.active {
  margin-top: 1.5625rem
}

#account--notifications .lottery-card {
  max-width: 100%;
  padding: 1.5625rem 2.5rem
}

#account--notifications .lottery-card p {
  font-size: 1em
}

.account-funds {
  background: #fff
}

.account-funds.active {
  margin-bottom: -3.125rem
}

.account-funds h4 {
  font-weight: 600
}

.account-funds .container {
  max-width: 53.75rem
}

.account-funds#account--withdraw .hr-text:before,
.account-funds#account--add-funds .hr-text:before {
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#2c68a5), to(transparent));
  background: -webkit-linear-gradient(left, transparent, #2c68a5, transparent);
  background: linear-gradient(to right, transparent, #2c68a5, transparent)
}

.account-funds#account--withdraw .hr-text:after,
.account-funds#account--add-funds .hr-text:after {
  color: #2c68a5;
  background-color: #fff
}

.account-funds .account-funds--top {
  padding: 1.5625rem 0 0
}

@media only screen and (max-width:600px) {
  .account-funds .account-funds--top.manage-cc-bank {
    display: none
  }
}

.account-funds .account-funds--top h2 {
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600
}

.account-funds .account-funds--top h2 svg {
  margin-right: .9375rem
}

.account-funds .account-funds--top .account-amount {
  display: block;
  line-height: 1.5;
  font-size: 1.25em;
  color: #2c68a5;
  margin: .9375rem 0
}

.account-funds .account-funds--top .account-amount span {
  display: block;
  font-size: 90%
}

.account-funds .account-funds--top p {
  color: #4c4d4a;
  margin: .9375rem 0;
  font-weight: 600;
  font-size: 1rem
}

.account-funds .account-funds--top .container {
  max-width: 30rem
}

.account-funds .account-funds--top .choose-plays {
  padding-top: 0
}

.account-funds .account-funds--bottom {
  padding: 1rem 0 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.account-funds .account-funds--bottom .container {
  background-color: #fff
}

.account-funds .account-funds--bottom .container .select-dropdown .select-options {
  max-height: 12rem
}

.account-funds .account-funds--bottom .container.saved-withdrawals {
  margin-bottom: 1rem
}

.account-funds .account-funds--bottom .container.saved-withdrawals .meta-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: .5rem auto
}

.account-funds .account-funds--bottom .container.saved-withdrawals .meta-container>img {
  max-width: 2.5rem;
  margin-right: 1rem
}

.account-funds .account-funds--bottom .container.saved-withdrawals .meta-container .meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center
}

.account-funds .account-funds--bottom .container.saved-withdrawals .meta-container .meta h4 {
  text-align: left;
  color: #2c68a5;
  margin: 0;
  line-height: 1.5
}

.account-funds .account-funds--bottom .container.saved-withdrawals .meta-container .meta span {
  color: #7a7b78;
  font-size: .8rem;
  text-align: left
}

.account-funds .account-funds--bottom h3 {
  margin: 0 0 1.5625rem;
  text-align: center;
  color: #e25f2c;
  font-weight: 600
}

.account-funds .account-funds--bottom #account-payment-methods,
.account-funds .account-funds--bottom #account-withdrawl-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left
}

.account-funds .account-funds--bottom #account-payment-methods>li,
.account-funds .account-funds--bottom #account-withdrawl-methods>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 10px auto;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, .2);
  cursor: pointer
}

.account-funds .account-funds--bottom #account-payment-methods>li form,
.account-funds .account-funds--bottom #account-withdrawl-methods>li form {
  width: 100%
}

.account-funds .account-funds--bottom #account-payment-methods>li.saved,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.saved {
  background: #eee
}

.account-funds .account-funds--bottom #account-payment-methods>li.BPay,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.BPay {
  background: #183168
}

.account-funds .account-funds--bottom #account-payment-methods>li.BPay a,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.BPay a {
  color: #fff
}

.account-funds .account-funds--bottom #account-payment-methods>li.ZeptoPayID,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.ZeptoPayID {
  background: #7a7b78
}

.account-funds .account-funds--bottom #account-payment-methods>li.ZeptoPayID a,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.ZeptoPayID a {
  color: #fff
}

.account-funds .account-funds--bottom #account-payment-methods>li.Visa,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Visa {
  background: -webkit-gradient(linear, left top, left bottom, from(#2f1191), to(#2f1191));
  background: -webkit-linear-gradient(top, #2f1191, #2f1191);
  background: linear-gradient(to bottom, #2f1191, #2f1191)
}

.account-funds .account-funds--bottom #account-payment-methods>li.Visa a,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Visa a {
  color: #fff !important
}

.account-funds .account-funds--bottom #account-payment-methods>li.Mastercard,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Mastercard {
  background: -webkit-gradient(linear, left top, left bottom, from(#972429), to(#63191d));
  background: -webkit-linear-gradient(top, #972429, #63191d);
  background: linear-gradient(to bottom, #972429, #63191d)
}

.account-funds .account-funds--bottom #account-payment-methods>li.Mastercard a,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Mastercard a {
  color: #fff !important
}

.account-funds .account-funds--bottom #account-payment-methods>li.Mastercard .cc-name,
.account-funds .account-funds--bottom #account-payment-methods>li.Mastercard .cc-expiry,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Mastercard .cc-name,
.account-funds .account-funds--bottom #account-withdrawl-methods>li.Mastercard .cc-expiry {
  color: #1a1f71 !important
}

.account-funds .account-funds--bottom #account-payment-methods .payment-expand,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-expand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-decoration: none !important;
  margin: auto;
  height: 3rem
}

.account-funds .account-funds--bottom #account-payment-methods .payment-expand.withdraw-expand h3,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-expand.withdraw-expand h3 {
  font-size: 1rem;
  margin: auto 0;
  text-align: left;
  color: #2c68a5
}

.account-funds .account-funds--bottom #account-payment-methods .payment-expand.active+.payment-content,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-expand.active+.payment-content {
  margin-top: .5rem;
  margin-bottom: 1rem;
  display: block
}

.account-funds .account-funds--bottom #account-payment-methods .payment-expand.active+.payment-content.ccard,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-expand.active+.payment-content.ccard {
  max-height: 450px !important
}

.account-funds .account-funds--bottom #account-payment-methods .payment-content,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-content {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s
}

.account-funds .account-funds--bottom #account-payment-methods .payment-content.maxheight75,
.account-funds .account-funds--bottom #account-withdrawl-methods .payment-content.maxheight75 {
  max-height: 75px
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout {
  max-width: 80%;
  margin: auto;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout.updateCard,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout.updateCard {
  margin-top: 5px
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-number,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-number {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1f71;
  display: none
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-meta,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 80%
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-name-box,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-name-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-name,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-name {
  color: #1a1f71;
  font-size: 1.1rem
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-name.block,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-name.block {
  display: block;
  min-width: 100px
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .title,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .title {
  text-transform: uppercase;
  color: #1a1f71;
  font-weight: 600;
  font-size: .75rem;
  opacity: .6
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-date-box,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-date-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-expiry,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-expiry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1a1f71;
  font-size: 1.1rem
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-expiry.block,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-expiry.block {
  display: block;
  min-width: 100px
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-expiry.cc-expired,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-expiry.cc-expired {
  color: #fff !important
}

.account-funds .account-funds--bottom #account-payment-methods .credit-card-layout .cc-expired,
.account-funds .account-funds--bottom #account-withdrawl-methods .credit-card-layout .cc-expired {
  background: red;
  color: #fff !important;
  font-weight: bold
}

.account-funds .account-funds--bottom #account-payment-methods .bank-card-layout,
.account-funds .account-funds--bottom #account-withdrawl-methods .bank-card-layout {
  padding: 0;
  background: none;
  max-width: 100%;
  border: none
}

.account-funds .account-funds--bottom #account-payment-methods .bank-card-layout .cc-meta,
.account-funds .account-funds--bottom #account-withdrawl-methods .bank-card-layout .cc-meta {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 95%;
  margin-left: 1rem
}

.account-funds .account-funds--bottom #account-payment-methods .bank-card-layout .cc-name,
.account-funds .account-funds--bottom #account-payment-methods .bank-card-layout .cc-expiry,
.account-funds .account-funds--bottom #account-withdrawl-methods .bank-card-layout .cc-name,
.account-funds .account-funds--bottom #account-withdrawl-methods .bank-card-layout .cc-expiry {
  line-height: 1.5
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout {
  background: #fff;
  border: 1px solid #ccc;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 80%;
  margin: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .hr-text,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #000;
  text-align: center;
  height: 1.5em;
  width: 100%
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .hr-text:before,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .hr-text:before {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#2c68a5), to(transparent));
  background: -webkit-linear-gradient(left, transparent, #2c68a5, transparent);
  background: linear-gradient(to right, transparent, #2c68a5, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .hr-text:after,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #2c68a5;
  background-color: #fff
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout p,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout p {
  margin: 0;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.8
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout p>:first-child,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout p>:first-child {
  float: left
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout p>:last-child,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout p>:last-child {
  float: right
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .bpayref,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .bpayref {
  color: #2c68a5 !important
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .bpayref a,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .bpayref a {
  text-decoration: none;
  color: #2c68a5 !important
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .copy,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .copy {
  color: #333;
  cursor: pointer;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-left: 10px;
  padding: 0 5px;
  width: 60px;
  text-align: center;
  vertical-align: middle
}

.account-funds .account-funds--bottom #account-payment-methods .payid-layout .copy.copied,
.account-funds .account-funds--bottom #account-withdrawl-methods .payid-layout .copy.copied {
  color: #fff;
  width: 70px;
  border-color: #e3e3e3;
  background-color: #2c68a5
}

.account-funds .account-funds--bottom #account-payment-methods .instructions,
.account-funds .account-funds--bottom #account-withdrawl-methods .instructions {
  color: #fff
}

.account-funds .account-funds--bottom #account-payment-methods .remove-payment,
.account-funds .account-funds--bottom #account-withdrawl-methods .remove-payment {
  width: 1rem;
  height: 1rem
}

.account-funds .account-funds--bottom #account-payment-methods .remove-payment svg,
.account-funds .account-funds--bottom #account-withdrawl-methods .remove-payment svg {
  margin-top: -3px
}

.account-funds .account-funds--bottom #account-payment-methods .remove-payment svg path,
.account-funds .account-funds--bottom #account-withdrawl-methods .remove-payment svg path {
  fill: red
}

.account-funds .account-funds--bottom #account-payment-methods .email-payment-details-sent.active,
.account-funds .account-funds--bottom #account-withdrawl-methods .email-payment-details-sent.active {
  color: #2c68a5;
  font-weight: bold;
  padding: 5px 10px;
  background: #fff;
  max-width: auto
}

.account-funds .account-funds--bottom #account-payment-methods .email-payment-details,
.account-funds .account-funds--bottom #account-payment-methods .print-bpay,
.account-funds .account-funds--bottom #account-withdrawl-methods .email-payment-details,
.account-funds .account-funds--bottom #account-withdrawl-methods .print-bpay {
  width: auto;
  margin: 0 0 1rem;
  text-decoration: underline
}

.account-funds .account-funds--bottom a {
  display: block;
  width: 100%;
  color: #333;
  font-weight: bold
}

.account-funds .account-funds--bottom a.orange {
  color: #e25f2c;
  text-decoration: underline
}

.account-funds .account-funds--bottom img {
  max-width: 3rem;
  margin-right: 1rem;
  opacity: 1;
  vertical-align: middle
}

.account-funds .account-funds--bottom img.bank {
  max-width: 2rem;
  margin-right: 0
}

.account-funds .account-funds--bottom img.paypal {
  max-width: 3rem;
  margin-right: 0
}

.account-funds .account-funds--bottom .paypal-name {
  color: #2c68a5;
  overflow: hidden;
  margin-left: 1rem
}

@media only screen and (max-width:600px) {
  .account-funds .account-funds--bottom .paypal-name {
    font-size: .75rem
  }
}

.account-funds .account-funds--bottom .manage-withdrawl .account-funds--withdraw-container {
  padding-bottom: 2rem
}

.account-funds .account-funds--bottom .manage-withdrawl .account-funds--withdraw-container button {
  margin: auto !important
}

.account-funds .account-funds--bottom .manage-withdrawl .account-funds--withdraw-container .tab-content.active {
  max-width: 75%
}

.account-funds .account-funds--bottom .manage-withdrawl #account-funds--withdraw-zeptobanktransfer {
  max-width: 75%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto
}

.account-funds .account-funds--bottom .hr-text {
  font-weight: bold;
  max-width: 700px
}

@media screen and (min-width:600px) {
  .account-funds .account-funds--bottom .hr-text:before {
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fff), to(transparent));
    background: -webkit-linear-gradient(left, transparent, #fff, transparent);
    background: linear-gradient(to right, transparent, #fff, transparent)
  }
}

.account-funds .account-funds--bottom .hr-text-or:after {
  color: #2da0f1;
  background-color: #fff
}

.account-funds *[type="submit"],
.account-funds .payid-register,
.account-funds .bpay-register {
  margin: .9375rem auto;
  display: block !important
}

.account-funds .input-row input {
  width: 100%
}

.account-funds .container {
  max-width: 40rem
}

.account-funds .select-rendered:after {
  background-image: url(../icons/icon-angle-down.svg)
}

#account-funds--add-bpay p {
  margin-top: 0
}

.verified,
.unverified {
  position: relative
}

.verified:after,
.unverified:after {
  content: '✔';
  margin-left: .9375rem;
  color: #209d4d;
  border: 2px solid #209d4d;
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.verified-new {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.verified-new:after {
  content: '✔';
  margin-left: .3125rem;
  color: #209d4d;
  border: 2px solid #209d4d;
  width: 1.125rem;
  height: 1.125rem;
  overflow: visible;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  margin-top: -3px
}

.incognito {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 5px;
  color: #58595b !important
}

.incognito:after {
  display: block;
  content: ' ';
  background-image: url(../icons/icon-incognito.svg);
  background-size: 1.375rem 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-left: .3125rem;
  margin-top: -3px
}

.unverified:after {
  cursor: pointer;
  content: 'i';
  color: #d8262d;
  border-color: #d8262d
}

.verify {
  text-align: center;
  margin: 0 auto;
  width: 80%
}

.verify * {
  text-align: center !important
}

.verify a {
  color: #e25f2c;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer
}

.verify.active {
  margin-bottom: 1.5625rem
}

#account--upload-documents-container {
  padding: 1.25rem 1%;
  background: -webkit-gradient(linear, right bottom, left top, from(#047ada), color-stop(102%, #047ada));
  background: -webkit-linear-gradient(bottom right, #047ada 0%, #047ada 102%);
  background: linear-gradient(to top left, #047ada 0%, #047ada 102%)
}

#account--idv-popup-content .container {
  padding: 1.25rem 2%;
  background: -webkit-gradient(linear, right bottom, left top, from(#047ada), color-stop(102%, #047ada));
  background: -webkit-linear-gradient(bottom right, #047ada 0%, #047ada 102%);
  background: linear-gradient(to top left, #047ada 0%, #047ada 102%)
}

#account--idv-popup-content .container .documents-uploaded {
  list-style: none;
  padding: 0;
  margin: 0
}

#account--idv-popup-content .container .documents-uploaded li {
  background: #eee;
  padding: 5px 10px;
  margin: 10px auto
}

#account--idv-popup-content .container .documents-uploaded li span {
  color: #fff;
  padding: 0 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  line-height: 1
}

#account--idv-popup-content .container .documents-uploaded li span.Pending {
  background: #e25f2c
}

#account--idv-popup-content .container .documents-uploaded li span.Approved {
  background: #209d4d
}

#account--idv-popup-content .container .documents-uploaded li span.Rejected {
  background: #d8262d
}

#account--license-verify-container {
  padding: 1.25rem 1% !important
}

#account--license-verify-container h3 {
  margin-bottom: .25rem
}

#account--license-verify-container form {
  padding-top: 1rem
}

#account--license-verify-container .select-dropdown .select-rendered {
  color: #fff !important
}

#account--license-verify-container .select-dropdown {
  border: 2px solid #fff
}

#account--license-verify-container .account-verify {
  display: block !important;
  margin: 1.5rem auto !important
}

#account--license-verify-container #account--upload-documents {
  text-decoration: none;
  padding: .75rem 2.5rem .875rem !important;
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  font-size: 1rem;
  font-family: "Open sans" !important
}

#account--license-verify-container .results-expand:after {
  display: none !important
}

#account--license-verify-container hr {
  height: 2px;
  border: 0;
  background: #ccc
}

.account-order-details {
  margin: 0 auto 1.25rem auto
}

.account-order-details td {
  color: #4c4d4a;
  text-align: left;
  border: 1px solid #7a7b78;
  padding: .3125rem .625rem .3125rem .625rem
}

.account-order-details td:last-child {
  white-space: nowrap
}

#account--pending-entries-list .account-order-details {
  margin-top: 1.875rem
}

.account-draws .tab-toggle {
  margin-top: 1.5625rem;
  max-width: 32.5rem
}

.account-draws .account-results--left {
  margin-bottom: .3125rem
}

.account-draws .sort-container {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0;
  width: 100%;
  margin-bottom: 1rem
}

.account-draws .sort-container .draws-sort {
  max-width: 260px;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.account-draws .sort-container .draws-sort p {
  color: #fff;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: .625rem .625rem .625rem 0
}

.account-draws .sort-container .draws-sort>* {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.account-draws .sort-container .date-container {
  width: 200px;
  margin: auto;
  border: 2px solid #fff;
  padding: 0 20px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #e25f2c;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.account-draws .sort-container .date-container::-webkit-scrollbar {
  display: none
}

.account-draws .sort-container .date-container a#left {
  justify-self: left
}

.account-draws .sort-container .date-container a#right {
  justify-self: right
}

.account-draws .sort-container .date-container .months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  scroll-behavior: smooth;
  overflow: auto
}

.account-draws .sort-container .date-container .months::-webkit-scrollbar {
  display: none
}

.account-draws .sort-container .date-container .months div {
  white-space: nowrap;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4rem;
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.account-draws .sort-container .date-container .months div.active {
  background: #0076d8;
  color: #fff
}

.account-draws .sort-container .date-container .months div span {
  text-align: left;
  display: block;
  margin-right: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  top: -1px
}

.account-draws .sort-container .date-container svg {
  width: 25px
}

.account-draws .sort-container .date-container svg g {
  stroke: #fff
}

.account-draws .sort-container .date-container svg:hover g {
  stroke: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.account-draws .sort-container .date-container .hide {
  cursor: not-allowed;
  pointer-events: none;
  opacity: .4
}

.account-draws .sort-container .date-container .hide g {
  stroke: #ccc;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.account-draws .sort-container .select-dropdown .select-rendered {
  letter-spacing: 0
}

.account-draws .sort-container .select-dropdown .select-rendered:after {
  background-color: transparent;
  background-image: url(../icons/icon-arrow-right-white.svg);
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: .625rem !important;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  background-size: contain;
  background-repeat: no-repeat
}

.account-draws .sort-container .select-dropdown.dropdown-active .select-rendered:after {
  -webkit-transform: translateY(-50%) rotate(270deg);
  -moz-transform: translateY(-50%) rotate(270deg);
  -ms-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg)
}

.account-draws .lottery-card {
  padding: 1.25rem 0
}

.account-draws .lottery-card .lottery-card--draw {
  font-size: 1em
}

.account-draws .lottery-card#lottery-card-no-result-top {
  background: #ddd;
  margin: 1rem auto 2rem auto
}

.account-draws .lottery-card#lottery-card-no-result-top h3 {
  color: #2c68a5;
  margin-bottom: 1rem
}

.account-draws .lottery-card#lottery-card-no-result-top .future-draw-container {
  background: #ddd;
  padding: 0 1rem
}

.account-draws .lottery-card#lottery-card-no-result-top .future-draw-container .next-month {
  margin: 0 6px 10px;
  background: #f76b1c;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer
}

.account-draws .lottery-card#lottery-card-no-result {
  margin: 1rem auto 2rem auto
}

.account-draws .lottery-card#lottery-card-no-result .future-draw-container {
  background: #2c68a5;
  padding: 1rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 2rem;
  max-width: 85%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.account-draws .lottery-card#lottery-card-no-result .future-draw-container p {
  color: #fff;
  width: 100%
}

.account-draws .lottery-card#lottery-card-no-result .next-month {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem .5rem
}

@media screen and (max-width:600px) {
  .account-draws .lottery-card#lottery-card-no-result .next-month {
    margin: .5rem auto
  }
}

.account--edit .container .account-edit--lower #reset-password {
  margin-top: .9375rem
}

.account--edit .container .account-edit--lower #reset-password .lottery-card {
  max-width: 100%
}

.lottery-upsell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 2rem 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-upsell .is-label {
  position: absolute !important
}

.lottery-upsell h2.upsell-title {
  color: #fff;
  font-size: 2em;
  text-align: center;
  padding: 0;
  margin: 0 !important;
  display: block;
  width: 100%;
  line-height: 2
}

.lottery-upsell a.lottery-card {
  min-width: unset;
  max-width: 17rem !important;
  padding: 0 !important;
  overflow: unset;
  margin: unset;
  margin: 2rem auto auto !important
}

.lottery-upsell a.lottery-card .lottery-card-front {
  padding: 3rem 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap
}

.lottery-upsell a.lottery-card .lottery-card-front .lottery-infor {
  min-height: 130px
}

.lottery-upsell a.lottery-card .lottery-card-front .lottery-infor img {
  width: 4rem;
  height: auto;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0%;
  left: 50%
}

.lottery-upsell a.lottery-card .lottery-card-front .lottery-infor h2 {
  color: #4c4d4a
}

.lottery-upsell a.lottery-card .lottery-card-front p.lottery-card--amount {
  color: #2c68a5
}

.lottery-upsell a.lottery-card .lottery-card-front p.lottery-card--amount-pending {
  padding-top: 0
}

.lottery-upsell a.lottery-card .lottery-card-front p.timer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: .5rem .5rem 1rem !important;
  font-weight: 600
}

.lottery-upsell a.lottery-card .lottery-card-front p.timer .timer-countdown {
  font-size: 1em;
  font-weight: 600
}

.lottery-upsell a.lottery-card .button {
  margin-top: .5rem
}

.lottery-upsell a.lottery-card.USPB {
  border-top: 5px solid #133a8d
}

.lottery-upsell a.lottery-card.USMM {
  border-top: 5px solid #e52a30
}

.lottery-upsell a.lottery-card.IREL {
  border-top: 5px solid #84bf45
}

.lottery-upsell a.lottery-card.PRIM {
  border-top: 5px solid #f6b61b
}

.lottery-upsell a.lottery-card.EURJ {
  border-top: 5px solid #005fe2
}

.lottery-upsell a.lottery-card.EURO {
  border-top: 5px solid #5824ae
}

.lottery-upsell a.lottery-card.UKLO {
  border-top: 5px solid #21d3e0
}

.lottery-upsell a.lottery-card.SENA {
  border-top: 5px solid #209d4d
}

.lottery-upsell a.lottery-card.COMBOS {
  border-top: 5px solid #1a81e9
}

.lottery-upsell a.lottery-card.SYNDICATES {
  border-top: 5px solid #e25f2c
}

.account-history .lottery-upsell a.lottery-card .button {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  padding: .75rem 2.5rem .875rem
}

#account--landing .lottery-tabs {
  padding: 1rem 0 3rem
}

.popup p.center {
  text-align: center;
  font-size: 1rem !important
}

#map-popup .popup-close {
  right: -webkit-calc(50% - 24.5rem) !important;
  right: calc(50% - 24.5rem) !important
}

#map-popup .popup-container {
  height: 90vh
}

#map-popup .popup-container h3 {
  margin: 0 0 1rem
}

#map-popup .popup-container .container {
  padding: 1rem;
  max-width: 50rem
}

#map-popup .popup-container .popup-inner {
  max-width: 50rem;
  margin: auto;
  width: 100%
}

#map-popup .popup-container .popup-inner p {
  color: #2c68a5
}

#blueshyft-location--address-input {
  font-size: 1.1rem;
  padding: 1rem;
  width: 95%;
  border: 2px solid #2c68a5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px
}

.gm-bundled-control-on-bottom>.gmnoprint:last-child {
  display: block !important;
  position: relative !important
}

#blueshyft-map .button {
  display: block;
  padding: .875rem;
  margin-top: .625rem;
  font-size: .875em;
  font-weight: 600;
  font-family: "Open sans";
  min-width: 150px
}

#blueshyft-map p {
  font-size: .875em;
  font-family: "Open sans";
  line-height: 1.5;
  margin-top: 0;
  color: #2c68a5
}

.gm-ui-hover-effect {
  right: 3px !important
}

.gm-ui-hover-effect img {
  width: 20px !important;
  height: 20px !important
}

@media only screen and (min-width:560px) {
  .account--edit .container .account-edit--lower #reset-password .lottery-card {
    max-width: 100%;
    width: 32.5rem
  }
}

@media only screen and (min-width:760px) {
  #account--landing .tab-nav li {
    font-size: 1em;
    font-weight: 600
  }

  #account--landing .tab-nav li br {
    display: none
  }
}

@media only screen and (min-width:860px) {
  .account-funds .account-funds--top .choose-plays {
    padding: 1.25rem 0 0;
    text-align: center;
    width: 100%
  }

  .account-funds .account-funds--top .choose-plays .choose-plays-container {
    max-width: 22.5rem;
    margin: 0 auto 1rem auto
  }

  .account-funds .account-funds--top .choose-plays .choose-plays-container>* {
    margin-right: 0
  }

  .account-funds .account-funds--top .choose-plays .choose-plays-container>*:first-child {
    margin-left: 0
  }

  .account-funds .account-funds--top .choose-plays .choose-plays-container .input-other {
    margin: .625rem 0 0;
    width: 100%;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100% !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important
  }

  .account-funds .account-funds--bottom {
    padding: 2.8125rem 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
    background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%)
  }

  .account-funds .account-funds--bottom .select-left {
    max-width: -webkit-calc(100% - 15.625rem);
    max-width: calc(100% - 15.625rem)
  }

  .account-funds .account-funds--bottom .container {
    position: relative;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    padding: 1.25rem;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem
  }

  .account-funds .account-funds--bottom .container>label {
    width: 13.75rem;
    position: absolute;
    right: 1.25rem;
    top: 46px;
    margin: 0;
    text-align: center;
    display: block
  }

  .account-funds .account-funds--bottom .container>label .button {
    margin-top: 0;
    width: 100%
  }

  .account-funds .account-funds--bottom .container>label.saved-withdrawals-label {
    position: unset !important;
    margin: auto
  }

  .account-funds .account-funds--bottom h3 {
    text-align: left;
    margin: 0 0 .625rem;
    color: #e25f2c;
    font-weight: 600;
    font-size: 1em
  }

  .account-funds .account-funds--bottom .tab-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: -webkit-calc(100% - 15.625rem);
    max-width: calc(100% - 15.625rem)
  }

  .account-funds .account-funds--bottom .tab-content>* {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .account-funds .account-funds--bottom .tab-content.active {
    margin-top: .78125rem
  }

  .account-funds .account-funds--bottom .tab-content .terms-conditions-check {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: left;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .625rem 0
  }

  .account-funds .account-funds--bottom .tab-content .terms-conditions-check span {
    line-height: 1.5
  }

  .account-funds .account-funds--bottom .tab-content .terms-conditions-check:only-child {
    margin-top: 0
  }

  .account--order-details {
    min-width: 22.5rem
  }
}

@media only screen and (min-width:980px) {
  .banner.banner-account .icon-round {
    cursor: pointer;
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .banner.banner-account .icon-round:hover {
    background: #fff
  }

  .banner.banner-account .icon-round:hover i {
    color: #e25f2c
  }

  .banner.banner-account .icon-round:hover svg * {
    stroke-color: #e25f2c;
    fill: #e25f2c
  }

  #account--edit .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 57.5rem
  }

  #account--edit .container .lottery-card {
    min-width: 0;
    min-height: 100%;
    max-width: 32%;
    height: 15.625rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  #account--edit .container .lottery-card .button {
    margin-top: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
  }

  #account--edit .container>div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    margin: 0 2% 1.25rem 0;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    max-height: none
  }

  #account--edit .container>div:nth-child(3n+3) {
    margin-right: 0
  }

  .account-draws .lottery-card,
  .account-results .lottery-card {
    min-width: 32.5rem;
    max-width: 100%
  }
}

@media only screen and (max-width:768px) {
  .banner.banner-account {
    margin: 1rem !important
  }

  .banner.banner-account:before {
    background-image: url(../icons/tlo-logo-transparent-opt.png);
    left: 0;
    background-position: center center
  }

  .banner.banner-account .container {
    padding: 0 !important;
    min-height: 325px
  }

  #checkout .bg-blue-gradient .lottery-upsell a.lottery-card {
    max-width: 17rem !important
  }
}

@media only screen and (max-width:1280px) {
  .banner.banner-account {
    margin: .5rem !important
  }
}

@media only screen and (max-width:600px) {
  #account--landing .lottery-tabs {
    padding: 1rem 0 1rem
  }

  #account-payment-methods .credit-card-layout {
    max-width: 100% !important
  }

  #account-payment-methods .credit-card-layout .cc-meta {
    max-width: 100% !important
  }

  #account-payment-methods .payid-layout {
    max-width: 100% !important
  }

  #account-payment-methods .payid-layout p {
    margin: 3px 0 !important
  }

  #account-payment-methods .payid-layout .copy-payid {
    display: block;
    margin-left: 0 !important
  }

  #map-popup .popup-close {
    right: 5% !important
  }

  #map-popup .container {
    width: 100%;
    padding: 1rem 5px !important
  }

  #map-popup .popup-inner {
    width: 100%
  }
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #000;
  text-align: center;
  height: 1.5em;
  width: 100%
}

.hr-text:before {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#2c68a5), to(transparent));
  background: -webkit-linear-gradient(left, transparent, #2c68a5, transparent);
  background: linear-gradient(to right, transparent, #2c68a5, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px
}

.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #2c68a5;
  background-color: #fff
}

@media only screen and (max-width:320px) {
  #account--personal-details-container {
    padding-top: 1rem
  }

  #account--personal-details-container .update-titles-container {
    padding: 0 !important
  }

  #account--personal-details-container .update-titles-container .radio-container label input {
    margin-right: 1.75em
  }
}

.account-draws p.subtitle {
  font-size: 1.125em;
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1;
  color: #fff;
  letter-spacing: .3px
}

.account-draws .account-draws--next {
  margin-top: .625rem
}

.account-draws .account-draws--next .lottery-card--draw-next {
  padding: 1.875rem .9375rem 1.5625rem;
  margin-bottom: .625rem
}

.account-draws .account-draws--next .lottery-card--draw-next .draw-card--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: .625rem
}

.account-draws .account-draws--next .lottery-card--draw-next .draw-card--header h2 {
  font-size: 1.125em;
  margin: 0
}

.account-draws .account-draws--next .lottery-card--draw-next .draw-card--header .lottery-flag {
  margin: 0 .625rem 0 0;
  width: 1.8125rem;
  height: 1.8125rem
}

.account-draws .account-draws--next .lottery-card--draw-next .lottery-card--amount {
  font-size: 1.875em;
  line-height: 1.3
}

.account-draws .account-draws--next .lottery-card--draw-next .lottery-card--draw {
  color: #e25f2c;
  font-weight: 700;
  font-size: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5625rem
}

.account-draws .account-draws--next .lottery-card--draw-next .lottery-card--draw>* {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 45%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  width: 0
}

.account-draws .account-draws--next .lottery-card .svg-container svg {
  margin-bottom: .9375rem;
  width: 6.25rem;
  height: auto
}

.account-draws .account-draws--next .results-expand {
  margin: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.account-draws .account-draws--next:last-child {
  margin-bottom: 0
}

.account-draws .account-draws--upcoming {
  margin-top: 1.5625rem
}

.account-draws .account-draws--upcoming .lottery-card {
  margin-bottom: .3125rem
}

.account-draws .results-expand {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: -.625rem;
  line-height: 1
}

.account-draws .results-content {
  margin-top: 0;
  text-align: center;
  max-width: 100% !important
}

.account-draws .results-content>p {
  font-size: 1em !important;
  font-weight: 500;
  margin: 0 0 .9375rem;
  line-height: 1
}

.account-draws .results-content>p.game-type {
  font-size: 1.25em !important
}

.account-draws .results-content>p.winning-numbers {
  font-weight: 700 !important;
  padding-top: 1rem
}

.account-draws .results-content .lottery-numbers-container {
  max-width: 22.5rem;
  width: 100%;
  margin: 0 auto 1.25rem
}

.account-draws .results-content .lottery-numbers-container .lottery-numbers .lottery-number {
  font-size: initial
}

.account-draws .results-content .lottery-numbers-container .lottery-numbers .lottery-number>span {
  font-size: initial
}

.account-draws .results-content .lottery-numbers-container .lottery-numbers .lottery-number>span>span {
  font-size: .875em
}

.account-draws .results-content .lottery-numbers-container:last-of-type {
  margin-bottom: 0
}

.account-draws .results-content .results-content-system h3.systemName {
  text-align: center;
  color: #e25f2c
}

.account-draws .results-content .results-content-system .flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.account-draws .results-content .results-content-system .flex-column #g-explainer {
  margin-left: 2rem
}

.account-draws .results-content .results-content-system .results-content {
  max-width: 100% !important;
  margin-top: 0
}

.account-draws .results-content .results-content-system .results-content.system-scroll {
  height: 320px;
  overflow-y: scroll;
  background: #eee;
  margin-bottom: .5rem;
  cursor: n-resize
}

.account-draws .results-content .results-content-system .results-content.system-scroll .winning-numbers {
  padding-top: 1rem
}

.account-draws .results-content .results-content-system .results-content.system-scroll>.tables {
  padding: 0
}

.account-draws .results-content .results-content-system .results-content.system-scroll>.tables>.four-col>.col .bonus-grid {
  background: none
}

.account-draws .results-content .results-content-system .results-content.system-scroll>.tables>.four-col>.col:last-child ul {
  border-right: 0 !important
}

.account-draws .results-content .results-content-system .results-content.system-scroll>.tables>.four-col>.col:nth-child(4n) ul {
  border-right: 0 !important
}

.account-draws .results-content .results-content-system .results-content.system-scroll .joker-winnings-container {
  margin: 1rem auto 1rem
}

.account-draws .results-content .results-content-system .results-content.winner-results-content {
  height: 520px
}

.account-draws .results-content .results-content-system .results-content.winner-results-content .tables .four-col .col .bonus-grid {
  background: transparent !important
}

.account-draws .results-content .results-content-system>.tables>.four-col>.col {
  width: 100%
}

.account-draws .results-content .results-content-system>.tables>.four-col>.col p.results-type.results-type-joker {
  margin: 1rem 0
}

@media screen and (min-width:1000px) {
  .account-draws .results-content .results-content-system>.tables>.four-col>.col:last-child ul {
    padding: 0 .5rem !important;
    border-right: 1px solid #fb8e0c !important
  }
}

.account-draws .results-content .results-content-system>.tables>.four-col>.col:nth-child(n+5) {
  padding-top: 0 !important
}

.account-draws .results-content .results-content-system>.tables>.four-col>.col>ul.ul-sys {
  border-right: none !important;
  padding: 0 !important;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media screen and (max-width:1000px) {
  .account-draws .results-content .results-content-system>.tables>.four-col>.col>ul.ul-sys:after {
    margin-left: 10px
  }
}

@media screen and (max-width:600px) {
  .account-draws .results-content .results-content-system>.tables>.four-col>.col>ul.ul-sys li.rowcount {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

.account-draws .results-content .results-content-system>.tables>.four-col .winning-numbers {
  padding-top: 1rem;
  font-weight: 700;
  display: block;
  width: 100%
}

.account-draws .results-content .results-content-system .purchase-meta {
  width: 97% !important
}

.account-draws .results-content.syndicates>.tables .four-col .col ul.standard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.load-more {
  max-width: 11.5625rem;
  line-height: 1;
  margin: 1.875rem auto 0;
  font-size: .875em;
  font-weight: 800
}

.account-history .history-print-title {
  display: none
}

.account-history.active {
  margin-top: 1.25rem;
  margin-bottom: -3.1875rem
}

.account-history .tab-nav {
  background-color: #f8f8f8;
  padding-top: .625rem
}

.account-history .tab-nav li {
  color: #2c68a5;
  font-size: .875em !important
}

.account-history .tab-nav li.active {
  border-color: #2c68a5
}

.account-history .tabs-container {
  padding: 1.5625rem 0;
  background: #fff;
  max-width: 73.75rem;
  margin: 0 auto
}

.account-history .tabs-container .container {
  width: 100%
}

.account-history .history-row-titles {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: .9375rem !important
}

.account-history .history-row-titles * {
  font-weight: 700 !important
}

.account-history .history-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  margin-bottom: 1.25rem;
  padding: 0 .9375rem;
  position: relative
}

.account-history .history-row .lottery-flag {
  width: 1.5625rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 1.5625rem;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.account-history .history-row p,
.account-history .history-row a {
  margin: 0 .9375rem 0 0;
  font-size: .75em;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Open sans";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.account-history .history-row p.date,
.account-history .history-row a.date {
  color: #2c68a5;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 3.75rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 3.75rem;
  flex: 0 0 3.75rem
}

.account-history .history-row p.lottery,
.account-history .history-row a.lottery {
  color: #2c68a5;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 5rem;
  -moz-box-flex: 1;
  -ms-flex: 1 0 5rem;
  flex: 1 0 5rem
}

.account-history .history-row p.lottery span,
.account-history .history-row a.lottery span {
  color: #7a7b78
}

.account-history .history-row p.cost,
.account-history .history-row a.cost {
  color: #e25f2c;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2
}

.account-history .history-row p.balance,
.account-history .history-row a.balance {
  margin-right: 0 !important;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -moz-box-flex: 2;
  -ms-flex: 2;
  flex: 2
}

.account-history .buttons-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1.875rem 0 3.125rem !important;
  width: 100%;
  max-width: 100%
}

.account-history .button {
  margin-bottom: 3.125rem;
  display: block !important;
  margin: 0 .3125rem !important;
  padding: .9375rem 1.875rem;
  max-height: 50px
}

.account-history .button.print {
  margin-bottom: 0 !important;
  background: #fff;
  color: #2c68a5;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 9.375rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 9.375rem;
  flex: 0 0 9.375rem;
  max-width: 150px
}

@media only screen and (max-width:480px) {

  .account-history .history-row a,
  .account-history .history-row p {
    font-size: .5625em
  }
}

@media only screen and (min-width:480px) {

  .account-history .history-row p.date,
  .account-history .history-row a.date {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 6.25rem;
    -moz-box-flex: 0;
    -ms-flex: 0 0 6.25rem;
    flex: 0 0 6.25rem
  }

  .account-history .history-row p.lottery,
  .account-history .history-row a.lottery {
    -webkit-box-flex: 5;
    -webkit-flex: 5;
    -moz-box-flex: 5;
    -ms-flex: 5;
    flex: 5
  }
}

@media only screen and (min-width:760px) {
  .account-history .tabs-container .history-row {
    padding: 0 4.6875rem
  }

  .account-history .tabs-container .history-row p.date,
  .account-history .tabs-container .history-row a.date {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -moz-box-flex: 2;
    -ms-flex: 2;
    flex: 2
  }

  .account-history .tabs-container .history-row p.cost,
  .account-history .tabs-container .history-row a.cost {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .account-history .tabs-container .history-row p.balance,
  .account-history .tabs-container .history-row a.balance {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .account-history .tabs-container .history-row.history-row-titles {
    font-size: 24px
  }
}

@media only screen and (min-width:980px) {
  .account-history .tabs-container {
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem;
    margin-top: 2.5rem;
    width: 92.5%
  }
}

.how-it-works {
  padding-bottom: 1.25rem
}

.how-it-works h1 {
  color: #fff;
  font-weight: 400;
  margin: auto auto 1.5625rem
}

.how-it-works h2 {
  color: #fff;
  font-weight: 400;
  margin: 0 0 1.5625rem
}

.how-it-works .lottery-deck {
  margin-top: 1.875rem
}

.how-it-works .lottery-deck .lottery-card.lottery-card--works {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

@media only screen and (min-width:560px) {
  .how-it-works .lottery-deck .lottery-card.lottery-card--works {
    width: 48%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%
  }
}

@media only screen and (min-width:860px) {
  .how-it-works .lottery-deck .lottery-card.lottery-card--works {
    max-width: 32%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 2 32%;
    -moz-box-flex: 0;
    -ms-flex: 0 2 32%;
    flex: 0 2 32%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: .9375rem
  }
}

@media only screen and (min-width:980px) {
  .how-it-works .lottery-deck {
    position: static !important;
    padding: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .how-it-works .lottery-deck:first-of-type {
    margin-bottom: .625rem
  }
}

.contact-section {
  padding-top: 0 !important
}

.contact-section .lottery-card {
  max-width: 22.5rem;
  width: 100% !important;
  padding: 1.5625rem .9375rem
}

.contact-section .lottery-card .button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.contact-section .bg-blue-gradient {
  padding: 2.5rem 0
}

.contact-section .bg-blue-gradient .lottery-card {
  min-width: 100%
}

.contact-section .contact-form {
  margin-top: 1.875rem
}

.contact-section .contact-form h3 {
  font-size: 1.25em;
  margin-bottom: 1.5625rem
}

.contact-section form {
  max-width: 22.5rem;
  margin: 0 auto
}

.contact-section .contact-form form button {
  width: 100%
}

@media only screen and (min-width:980px) {
  .contact-section {
    margin: 0 auto;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
    background-image: -webkit-linear-gradient(top, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    background-image: linear-gradient(to bottom, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%)
  }

  .contact-section .container {
    width: 100%;
    max-width: 100%
  }

  .contact-section .contact-container {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 92.5%;
    max-width: 73.75rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3.125rem 0
  }

  .contact-section .contact-container .container {
    height: 100%
  }

  .contact-section .contact-container .bg-blue-gradient {
    background: transparent;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .contact-section .contact-container .bg-blue-gradient .container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .contact-section .contact-container .bg-blue-gradient .container .lottery-card {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .contact-section .contact-container .lottery-card {
    padding: 3.125rem 2.5rem;
    text-align: left;
    height: 100%;
    margin: 0
  }

  .contact-section .contact-container .lottery-card h3 {
    font-size: 1.875em;
    margin: 0 0 1.5625rem
  }

  .contact-section .contact-container .lottery-card p {
    font-size: 1em
  }

  .contact-section .contact-container .lottery-card .button {
    padding: 0 !important;
    text-align: left
  }

  .contact-section .contact-container .lottery-card .button:hover {
    background: #fff;
    color: #e25f2c;
    opacity: .8
  }

  .contact-section .contact-container .contact-form {
    background: #fff;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 3%;
    padding: 3.125rem 2.5rem;
    text-align: left;
    margin-top: 0;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2)
  }

  .contact-section .contact-container .contact-form form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 100%
  }

  .contact-section .contact-container .contact-form form h3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    font-size: 1.875em;
    margin: 0 0 1.875rem;
    font-weight: 700
  }

  .contact-section .contact-container .contact-form form div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%
  }

  .contact-section .contact-container .contact-form form div textarea {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    margin-bottom: 0
  }

  .contact-section .contact-container .contact-form form div+div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 55%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .contact-section .contact-container .contact-form form div label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .contact-section .contact-container .contact-form form div label:last-of-type {
    margin-bottom: 0
  }

  .contact-section .contact-container .contact-form form div label:last-of-type input {
    margin-bottom: 0
  }

  .contact-section .contact-container .contact-form form div label:last-of-type .input-error {
    margin-top: .46875rem
  }

  .contact-section .contact-container .contact-form form div .input-error {
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 auto !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important
  }

  .contact-section .contact-container .contact-form form .input-orange-solid {
    text-align: right
  }

  .contact-section .contact-container .contact-form form input[type="submit"],
  .contact-section .contact-container .contact-form form button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: auto;
    width: 30%;
    margin-top: 1.5625rem
  }
}

.section-site-map {
  padding: 0;
  padding-top: 1.25rem;
  display: block;
  position: relative;
  background-color: #2da0f1
}

.section-site-map h1 {
  color: #fff;
  font-size: 1.0625em;
  font-weight: 600;
  width: 92.5%;
  max-width: 73.75rem;
  margin: 0 auto;
  padding: 0 0 .75rem;
  text-align: center !important
}

.section-site-map h1 img {
  width: 45px;
  height: 45px;
  vertical-align: text-bottom;
  margin-right: 1rem
}

.section-site-map p.intro {
  max-width: 80%;
  margin: auto;
  color: #fff;
  margin-bottom: 1rem
}

.section-site-map .lottery-card {
  max-width: 22.5rem;
  text-align: left
}

.section-site-map .lottery-card .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.section-site-map .lottery-card .nav-listing {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 2.5rem
}

.section-site-map .lottery-card h3 {
  font-size: 1.375em;
  position: relative;
  padding-bottom: .625rem;
  margin-bottom: .9375rem
}

.section-site-map .lottery-card h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #979797;
  display: block
}

.section-site-map .lottery-card ul {
  margin: 0;
  padding: 0
}

.section-site-map .lottery-card ul li {
  list-style-type: none
}

.section-site-map .lottery-card ul li a {
  font-size: 1em;
  color: #4c4d4a;
  font-weight: 400
}

.section-site-map .lottery-card ul li .sub-menu {
  margin: 0 0 .625rem 1.25rem
}

.section-site-map .lottery-card ul li .sub-menu li a {
  color: #7a7b78;
  opacity: .7
}

.section-site-map .lottery-card .list-type-alternate li:nth-of-type(even) {
  margin-left: .75rem
}

.page-site-map .lottery-footer-cards {
  padding-top: 1.25rem
}

@media only screen and (min-width:680px) {
  .section-site-map .lottery-card {
    max-width: 100%
  }

  .section-site-map .lottery-card h3:after {
    width: 100%
  }

  .section-site-map .lottery-card .nav-listing {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%
  }
}

@media only screen and (min-width:860px) {
  .section-site-map h1 {
    text-align: left;
    font-size: 1.875em;
    padding: 0 0 .75rem
  }

  .section-site-map h1:after {
    margin-top: 1.5625rem
  }

  .section-site-map .container {
    padding-top: 1.25rem
  }
}

@media only screen and (min-width:980px) {
  .section-site-map .lottery-card {
    width: 100%
  }

  .section-site-map .lottery-card .nav-listing {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 28%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%
  }

  .section-site-map .lottery-card ul li a:hover {
    color: #e25f2c !important;
    opacity: 1 !important
  }
}

@media only screen and (min-width:1125px) {
  .section-site-map .lottery-card {
    width: 100%
  }

  .section-site-map .lottery-card .nav-listing {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 28%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 28%;
    flex: 0 0 28%
  }

  .section-site-map .lottery-card .nav-listing h3 {
    font-size: 1.75em
  }

  .section-site-map .lottery-card .nav-listing ul li a {
    font-size: 1.125em
  }
}

.lottery-confirmations .lottery-cta--image {
  max-height: 75vw;
  background-size: cover
}

.lottery-confirmations .lottery-card {
  padding: 1.875rem 1.25rem;
  max-width: 35rem;
  width: auto
}

.lottery-confirmations .lottery-card a {
  text-decoration: none
}

.lottery-confirmations .lottery-card h1 {
  color: #e25f2c;
  font-size: 1.875em;
  margin: 0 0 .9375rem;
  font-weight: 600;
  line-height: 1.3
}

.lottery-confirmations .lottery-card p {
  font-size: 1.125em;
  margin-bottom: 1.25rem;
  font-family: "Open sans"
}

.lottery-confirmations .lottery-card .buttons-container {
  margin-top: 1.25rem
}

.lottery-confirmations .lottery-card .button {
  width: 14.375rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: .625rem auto 0;
  padding-left: .625rem;
  padding-right: .625rem;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.lottery-confirmations .lottery-card .print {
  width: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  margin: 0 auto .625rem !important;
  max-width: 12.5rem
}

.lottery-confirmations .lottery-confirmations-entries {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0
}

.lottery-confirmations .lottery-confirmations-entries td {
  font-size: 1.125em;
  color: #2c68a5;
  text-align: left;
  border: 1px solid #7a7b78;
  padding: .3125rem .625rem .3125rem .625rem
}

.lottery-confirmations .lottery-confirmations-entries td:last-child {
  white-space: nowrap
}

.bpay-container {
  text-align: left;
  padding: .3125rem;
  margin: 1.25rem 0 .625rem
}

.bpay-container p {
  color: #183168;
  font-size: .6875em !important;
  font-weight: 600
}

.bpay-container p span {
  font-weight: 700;
  display: inline-block
}

.bpay-container p:last-child {
  margin-bottom: 0
}

.bpay-container .bpay-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .9375rem
}

.bpay-container .bpay-header img {
  width: auto;
  margin-right: .625rem;
  width: 2.5rem;
  height: auto
}

.bpay-container .bpay-header .bpay-details {
  border: 1.5px solid #183168;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: .3125rem 0;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.bpay-container .bpay-header .bpay-details p {
  margin: 0;
  font-size: .875em !important;
  font-weight: 700;
  line-height: 1.8
}

.bpay-container .bpay-header .bpay-details p>:first-child {
  float: left
}

.bpay-container .bpay-header .bpay-details p>:last-child {
  float: right
}

.bpay-container .bpay-header .bpay-details .bpay-ref {
  color: #e25f2c
}

.bpay-container .bpay-header .bpay-details .copy {
  color: #7a7b78;
  cursor: pointer;
  border: 1px solid #7a7b78;
  font-size: .6rem;
  margin-left: 5px;
  width: 60px;
  text-align: center;
  vertical-align: text-bottom
}

.bpay-container .bpay-header .bpay-details .copy.copied {
  color: #4c4d4a;
  border-color: #e3e3e3;
  background-color: #e3e3e3
}

.payid-container p.instructions {
  color: #183168;
  font-size: .85em !important;
  font-weight: 600;
  margin: 1rem auto;
  max-width: 95%;
  padding: 1rem;
  background: #e3e3e3
}

.payid-container .payid-details {
  border: 1.5px solid #183168;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: .3125rem 0;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 95%;
  margin: auto
}

.payid-container .payid-details .hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #000;
  text-align: center;
  height: 1.5em;
  width: 100%
}

.payid-container .payid-details .hr-text:before {
  content: '';
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#2c68a5), to(transparent));
  background: -webkit-linear-gradient(left, transparent, #2c68a5, transparent);
  background: linear-gradient(to right, transparent, #2c68a5, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px
}

.payid-container .payid-details .hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: #000;
  padding: 0 .5em;
  line-height: 1.5em;
  color: #2c68a5;
  background-color: #fcfcfa
}

.payid-container .payid-details p {
  margin: 0;
  font-size: .875em !important;
  font-weight: 700;
  line-height: 1.8
}

.payid-container .payid-details p>:first-child {
  float: left
}

.payid-container .payid-details p>:last-child {
  float: right
}

.payid-container .payid-details .copy {
  color: #7a7b78;
  cursor: pointer;
  border: 1px solid #7a7b78;
  font-size: .85rem;
  margin-left: 10px;
  padding: 0 2px;
  width: 60px;
  text-align: center;
  vertical-align: middle
}

.payid-container .payid-details .copy.copied {
  color: #4c4d4a;
  border-color: #e3e3e3;
  background-color: #e3e3e3
}

.payid-container .email-payment-details {
  max-width: 320px;
  width: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  margin: 1rem auto !important
}

.payid-container .email-payment-details svg {
  margin-right: .75rem !important
}

@media only screen and (min-width:860px) {
  .lottery-confirmations .lottery-card {
    text-align: left;
    padding: 2.5rem 3.125rem;
    min-width: 22.5rem
  }

  .lottery-confirmations .lottery-card .buttons-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
  }

  .lottery-confirmations .lottery-card .buttons-container .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: .625rem
  }

  .lottery-confirmations .lottery-card .buttons-container .button:last-child {
    margin-right: 0
  }

  .lottery-confirmations .lottery-card.bpay-card {
    max-width: 40rem;
    width: 100%
  }

  .lottery-confirmations .lottery-card.bpay-card .buttons-container {
    float: right;
    width: -webkit-calc(100% - 21.25rem);
    width: calc(100% - 21.25rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .lottery-confirmations .lottery-card.bpay-card .buttons-container .print {
    margin-top: 0;
    width: auto !important;
    -webkit-transition: none;
    transition: none
  }

  .lottery-confirmations .lottery-card.bpay-card .buttons-container .print:hover {
    background-color: #fff;
    color: #e25f2c
  }

  .lottery-confirmations .lottery-card.bpay-card .buttons-container .button {
    margin-bottom: .625rem;
    width: 100%
  }

  .lottery-confirmations .lottery-card.payment-success {
    min-width: 31.25rem
  }

  .bpay-container {
    max-width: 25rem;
    width: 100%;
    float: left
  }
}

@media only screen and (min-width:980px) {
  .lottery-confirmations {
    padding: 8vw 0
  }

  .lottery-confirmations .lottery-card .buttons-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
  }

  .lottery-confirmations .lottery-card .buttons-container .button {
    margin-right: .9375rem
  }

  .lottery-confirmations .lottery-card .buttons-container .button:last-child {
    margin-right: 0
  }
}

@media only screen and (max-width:450px) {
  .lottery-confirmations .lottery-card {
    padding: 1.875rem .625rem
  }

  .lottery-confirmations .lottery-confirmations-entries td {
    font-size: 1em;
    padding: .3125rem .3125rem .3125rem .3125rem
  }
}

@media only screen and (max-width:340px) {
  .lottery-confirmations .lottery-card {
    padding: 1.875rem .3125rem
  }

  .lottery-confirmations .lottery-confirmations-entries td {
    font-size: .875em
  }
}

.popup {
  width: 100vw;
  position: fixed;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 9999;
  margin: 10vh 0;
  display: none;
  -webkit-overflow-scrolling: touch;
  overflow: visible !important
}

.popup.active {
  display: block
}

.popup .popup-container {
  height: 75vh;
  overflow: auto !important;
  width: 100% !important
}

.popup .popup-container>.container {
  padding: 1.25rem 5%;
  max-width: 35rem;
  background: -webkit-gradient(linear, right bottom, left top, from(#047ada), to(#39abf7));
  background: -webkit-linear-gradient(bottom right, #047ada 0%, #39abf7 100%);
  background: linear-gradient(to top left, #047ada 0%, #39abf7 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: auto
}

.popup .popup-container>.container.container-large {
  padding: 0;
  width: 95%;
  text-align: center
}

.popup .lottery-card {
  text-align: center
}

.popup .popup-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  color: #fff;
  width: 2.1875rem;
  height: 2.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: .75em;
  z-index: 9999;
  top: 0;
  right: -webkit-calc(50% - 17.5rem);
  right: calc(50% - 17.5rem);
  -webkit-transform: translate(40%, -40%);
  -moz-transform: translate(40%, -40%);
  -ms-transform: translate(40%, -40%);
  transform: translate(40%, -40%);
  background: #fff;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1)
}

.popup .popup-close svg * {
  fill: #2c68a5
}

.popup .popup-inner {
  text-align: center;
  margin: 1.5625rem auto 1.5625rem;
  overflow: hidden;
  max-width: 35rem;
  width: 95%
}

@media only screen and (max-width:600px) {
  .popup .popup-inner {
    margin: 0 auto
  }
}

.popup .popup-inner h3 {
  text-align: center !important
}

.popup .popup-inner .popup-icon {
  width: 5.3125rem;
  height: 5.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto 2.5rem
}

.popup .popup-inner .popup-icon.icon-spinner {
  width: 10.9375rem;
  height: 10.9375rem
}

.popup .popup-inner .popup-icon.icon-spinner svg {
  width: 100% !important;
  height: 100% !important
}

.popup .popup-inner .popup-icon svg {
  height: 55% !important;
  width: auto !important;
  overflow: visible
}

.popup .popup-inner .popup-icon svg * {
  stroke-width: .5px;
  fill: white
}

.popup .popup-inner h3 {
  color: #fff;
  font-size: 1.125em;
  font-weight: 600;
  margin: 0 0 1.5625rem
}

.popup .popup-inner #global--notification-popup-title {
  margin: 0 0 .9375rem
}

.popup .popup-inner p {
  color: #fff;
  font-size: .875em;
  font-family: "Open sans";
  line-height: 1.5;
  margin-top: 0
}

.popup .popup-inner .buttons-container {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.popup .popup-inner .buttons-container p {
  font-size: .875em !important;
  text-align: left;
  width: 95%;
  margin: .625rem auto
}

.popup .popup-inner .buttons-container p a {
  text-decoration: underline;
  color: inherit
}

.popup .popup-inner .button {
  display: block;
  padding: .875rem;
  margin-top: .625rem;
  font-size: .875em;
  font-weight: 600;
  font-family: "Open sans";
  min-width: 150px
}

.popup .popup-inner .button.continue {
  text-decoration: none;
  font-size: 1em;
  margin-top: 1rem;
  font-family: "Open sans"
}

.popup.popup-waiting .container {
  padding-bottom: 3.125rem;
  padding-right: 0;
  padding-left: 0
}

.popup.popup-waiting h3 {
  font-size: 1.5em
}

.popup.popup-waiting p {
  text-align: center
}

.popup.popup-waiting .lottery-card {
  width: 95%
}

.popup h4 {
  color: #fff;
  margin-bottom: .625rem;
  font-weight: 400
}

.popup .popup-card {
  border-top: 1px solid #fff;
  width: 95%;
  margin: 0 auto;
  padding-top: 1.875rem
}

.popup .popup-card .lottery-card {
  padding: 1.5625rem 1.875rem
}

.popup .popup-card .lottery-card.lottery-card-results {
  padding-right: 5%;
  padding-left: 5%
}

.popup .popup-card .lottery-card p {
  text-align: right
}

.popup .popup-card .lottery-card .lottery-date {
  text-align: left;
  font-size: .625em !important;
  margin-left: 0 !important
}

.popup .popup-card .lottery-card .draw-card--header {
  text-align: left;
  font-size: 23px;
  max-width: 100%
}

.popup .popup-card .lottery-card .draw-card--header * {
  text-align: left
}

.popup .popup-card .lottery-card .draw-card--header .lottery-flag {
  width: 2.5rem;
  height: 2.5rem
}

.popup .popup-card .lottery-card .lottery-numbers-container p {
  text-align: center
}

.popup.express-checkout {
  padding-bottom: 0
}

.popup.express-checkout .container {
  max-width: 35rem;
  text-align: left;
  padding: 3.125rem 0 0
}

.popup.express-checkout .popup-inner {
  padding-bottom: 1.5625rem
}

.popup.express-checkout .popup-inner h3 {
  font-size: 1.25em;
  text-align: left
}

.popup.express-checkout .popup-inner p {
  max-width: 22.5rem;
  text-align: center;
  margin: 0 auto
}

.popup.express-checkout .button {
  margin: 0 .46875rem .9375rem
}

.popup.express-checkout .button span {
  width: 1.5625rem;
  height: 1.5625rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.5625rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.5625rem;
  flex: 0 0 1.5625rem
}

.popup.express-checkout .checkout-actions {
  padding-bottom: 1.5625rem
}

.popup.express-checkout .checkout-actions p {
  margin-right: auto !important;
  margin-left: auto !important;
  max-width: 23.75rem
}

.popup.voucher-details .container {
  padding: 0;
  max-width: 21.875rem;
  width: 85%
}

.popup.voucher-details .popup-inner h3 {
  text-align: center;
  max-width: 100%;
  font-weight: 400
}

.popup.voucher-details .checkout-actions {
  padding: 2.5rem .9375rem !important
}

.popup.voucher-details .checkout-actions .container {
  padding: 0
}

.popup.voucher-details .checkout-actions p {
  font-weight: 400;
  margin: 0 0 .9375rem !important
}

.popup.voucher-details form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.popup.voucher-details form input[type="text"] {
  border: .125rem solid #2c68a5;
  color: #38a4d0;
  width: 100%;
  text-align: center;
  margin-right: .3125rem
}

.popup.voucher-details form input::-webkit-input-placeholder {
  color: #38a4d0
}

.popup.voucher-details form input:-moz-placeholder {
  color: #38a4d0
}

.popup.voucher-details form input::-moz-placeholder {
  color: #38a4d0
}

.popup.voucher-details form input:-ms-input-placeholder {
  color: #38a4d0
}

.popup.voucher-details form input[type="submit"],
.popup.voucher-details form button {
  border: none;
  width: 12.5rem;
  max-width: 40%;
  background-image: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
  background-image: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  background-image: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  color: #fff
}

.popup.voucher-added {
  padding-top: 1.25rem
}

.popup.voucher-added .container {
  padding: 0;
  width: 85%
}

.popup.voucher-added .popup-inner h3 {
  text-align: center;
  font-weight: 400
}

.popup.voucher-added .popup-inner p {
  text-align: center;
  max-width: 100%;
  margin-bottom: 0
}

.popup.voucher-added .checkout-actions {
  padding: 2.5rem .9375rem !important;
  text-align: left
}

.popup.voucher-added .checkout-actions .container {
  width: 85%;
  padding: 0;
  max-width: 28.125rem
}

.popup.voucher-added .checkout-actions p {
  font-weight: 400;
  margin: 0 0 .625rem
}

.popup.voucher-added .checkout-actions .button-container {
  position: relative;
  margin: 0 auto 2.5rem;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 22.5rem;
  border: .125rem solid #2c68a5
}

.popup.voucher-added .checkout-actions .button-container .button-title {
  color: #38a4d0;
  font-size: .875em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  padding: .625rem 9.375rem .625rem .9375rem
}

.popup.voucher-added .checkout-actions .button-container .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 101%;
  min-height: 0;
  margin: 0;
  width: auto;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  font-weight: 400;
  padding: 0 1.5625rem;
  font-size: .875em
}

.popup.popup-maintenance .container {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px
}

.popup.popup-maintenance .popup-icon svg {
  height: 90% !important
}

.popup.popup-maintenance .popup-icon svg * {
  stroke-width: 2px !important
}

.popup.popup-maintenance .popup-close {
  border-color: #2c68a5
}

.popup.popup-maintenance .popup-close svg * {
  fill: #2c68a5
}

.popup.popup-maintenance h3,
.popup.popup-maintenance p {
  color: #2c68a5
}

.popup.signup-popup {
  padding: 0;
  background-image: none;
  background: transparent
}

.popup.signup-popup .account-exists {
  padding: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-top: 1rem;
  background: #209d4d;
  color: #fff;
  margin: 0 auto 1rem auto;
  display: none
}

.popup.signup-popup .account-exists.active {
  display: block
}

.popup.signup-popup .tab-toggle {
  background: transparent;
  padding: 0
}

.popup.signup-popup .popup-container {
  height: 90vh
}

.popup.signup-popup .popup-container>.container {
  padding: 0 !important;
  width: 92.5% !important;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden
}

.popup.signup-popup .container-small {
  padding: 0 .9375rem;
  width: 100%;
  max-width: 27.1875rem
}

.popup.signup-popup .label-for {
  position: relative
}

.popup.signup-popup .input-row label button {
  margin-top: 0
}

.popup.signup-popup .terms-conditions-check .checkbox {
  top: .6875rem
}

.popup.signup-popup label {
  position: relative
}

.popup.signup-popup label .checkbox {
  top: .46875rem
}

.popup.signup-popup label input[type="submit"],
.popup.signup-popup label button {
  margin-top: 1.25rem;
  min-width: 150px
}

.popup.signup-popup form .input-row .select-dropdown .select-rendered:after {
  right: .3125rem
}

.popup.signup-popup form .input-row .select-dropdown:last-of-type {
  margin-right: 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content {
  height: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  position: static
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .container {
  width: 100%;
  padding: 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header {
  background: -webkit-gradient(linear, right bottom, left top, from(#0b80de), to(#44b5fd));
  background: -webkit-linear-gradient(bottom right, #0b80de 0%, #44b5fd 100%);
  background: linear-gradient(to top left, #0b80de 0%, #44b5fd 100%);
  padding: 1.5625rem 0 1.875rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title {
  margin: 0 auto;
  font-size: 1.375em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  font-weight: 700 !important;
  color: #fff
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title .signup-icon {
  margin-right: .9375rem;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6.5px
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title .signup-icon svg {
  width: .9375rem;
  height: .9375rem;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title .signup-icon svg * {
  stroke: white
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title i {
  font-size: 2.125em;
  margin-right: .9375rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header p {
  margin-top: 0;
  font-size: .875em;
  font-weight: 400;
  font-family: "Open sans";
  color: #fff
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header p:first-of-type {
  margin-top: 1.25rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header p:last-child {
  margin-bottom: 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .button {
  margin-bottom: 1.25rem;
  position: relative;
  font-weight: 700;
  padding-left: .625rem;
  padding-right: 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .button i {
  position: absolute;
  left: 1.125rem;
  font-size: 1.125em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .button:last-child {
  margin-bottom: 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--main {
  padding: 2.1875rem 0 0
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--main .container {
  width: 90%
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--main .container>p {
  color: #2c68a5
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in-action {
  margin-top: .625rem;
  margin-bottom: 2.1875rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in-action p {
  color: #2c68a5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  line-height: 1;
  font-size: .875em;
  font-family: "Open sans";
  padding: 0 .625rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in-action p span {
  color: #e25f2c;
  margin-left: .625rem;
  font-weight: 700;
  text-decoration: underline
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in form h3 {
  color: #e25f2c;
  font-weight: 600;
  font-size: 1em;
  margin: .9375rem 0 1.25rem;
  display: inline-block
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in#sign-up input[type="submit"] {
  margin-bottom: 1.5625rem
}

.popup.signup-popup #sign-up.nav-tab.tab-content .sign-in#sign-up input[type="submit"]+.sign-in-action {
  margin-bottom: 0
}

.popup.popup-status .sign-in--main .radio-container label input {
  margin-right: 2.1875rem !important
}

.popup.popup-bpay .popup-icon {
  width: 5.3125rem;
  height: 5.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto
}

.popup.popup-bpay .popup-icon svg {
  width: 50%;
  height: 50%
}

.popup.popup-bpay .popup-icon svg * {
  fill: white
}

.popup.popup-bpay h2 {
  margin-top: 0;
  color: #e25f2c
}

.popup.popup-bpay p {
  margin-bottom: 1.875rem
}

.popup.popup-bpay .bpay-container {
  float: none;
  margin: 0 auto 1rem
}

.popup.popup-bpay .buttons-container {
  display: block
}

.popup.popup-bpay .buttons-container .button {
  max-width: 8.75rem;
  width: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  margin: 0 auto
}

.popup.popup-bpay .buttons-container .button svg {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.875rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.875rem;
  flex: 0 0 1.875rem
}

.popup.popup-bpay .buttons-container .button svg #Rectangle-Copy {
  display: none
}

.popup.popup-bpay .buttons-container .button:hover {
  background-color: transparent;
  color: #e25f2c
}

.popup-page {
  background: -webkit-gradient(linear, right bottom, left top, from(#047ada), to(#39abf7));
  background: -webkit-linear-gradient(bottom right, #047ada 0%, #39abf7 100%);
  background: linear-gradient(to top left, #047ada 0%, #39abf7 100%);
  padding: 5rem 0 2.5rem
}

.popup-page.page-error p {
  text-align: center !important
}

.popup-page.page-error .button {
  margin-top: 1.25rem
}

.popup-page .popup-inner {
  padding: 2.5rem 1.25rem;
  background-color: #fff;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin: auto;
  position: relative;
  -webkit-box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, .1)
}

.popup-page .popup-inner .h2title {
  color: #2c68a5;
  margin: 1rem auto
}

.popup-page .popup-inner .h2title span {
  border-color: #2c68a5
}

.popup-page .popup-inner .h2title span svg {
  margin: 0
}

.popup-page .popup-inner .h2title span svg * {
  fill: #2c68a5
}

.popup-page .popup-inner h3,
.popup-page .popup-inner p {
  color: #2c68a5
}

.popup-page .popup-inner p {
  text-align: left;
  font-family: "Open sans";
  margin-top: 0
}

.popup-page .popup-inner a {
  font-weight: 600;
  text-decoration: none
}

.popup-page .popup-inner .sign-in--main {
  margin-top: 2.5rem
}

.popup-page .popup-inner label .checkbox {
  top: .46875rem
}

.popup-page .popup-inner label .label-content>span:first-child {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .1rem
}

.popup-page .popup-inner .password-strength--validation p {
  font-size: .875rem
}

#account--spending-edit {
  margin-top: 1.875rem
}

@media only screen and (min-width:420px) {
  .popup-page {
    padding: 6.25rem 0
  }
}

@media only screen and (min-width:580px) {
  .popup.voucher-details .container {
    max-width: 34.375rem;
    padding: 0
  }

  .popup-page {
    padding: 8.75rem 0 7.5rem
  }

  .popup-page .popup-inner {
    max-width: 41.25rem;
    padding: 3.75rem 4.6875rem 3.75rem
  }

  .popup-page .popup-inner svg {
    height: 100%
  }

  .popup-page .popup-inner h3 {
    font-size: 1.375em
  }
}

@media only screen and (min-width:760px) {
  .popup {
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    border-radius: .625rem
  }

  .popup .popup-inner {
    text-align: left
  }

  .popup .popup-inner h3 {
    text-align: center
  }

  .popup .buttons-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: initial !important;
    -webkit-box-direction: initial !important;
    -webkit-flex-direction: initial !important;
    -moz-box-orient: initial !important;
    -moz-box-direction: initial !important;
    -ms-flex-direction: initial !important;
    flex-direction: initial !important;
    text-align: center
  }

  .popup .buttons-container .button {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 3%;
    line-height: 1.3
  }

  .popup .buttons-container .button+.button {
    margin-right: 0
  }

  .popup .buttons-container .button.button-orange-solid {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: .9375rem
  }

  .popup.voucher-details {
    -webkit-border-radius: .625rem .625rem 0 0;
    -moz-border-radius: .625rem .625rem 0 0;
    border-radius: .625rem .625rem 0 0
  }

  .popup.voucher-details .container {
    width: 70%
  }

  .popup.voucher-details .checkout-actions {
    padding: 2.5rem 5rem !important
  }

  .popup.voucher-added {
    -webkit-border-radius: .625rem .625rem 0 0;
    -moz-border-radius: .625rem .625rem 0 0;
    border-radius: .625rem .625rem 0 0
  }

  .popup.voucher-added .container {
    width: 80%
  }

  .popup.voucher-added .checkout-actions .container {
    width: 70%
  }

  .popup.voucher-added .checkout-actions .button-container .button-title {
    padding: .625rem 9.375rem .625rem 1.875rem
  }

  .popup.voucher-added .checkout-actions .button-container .button {
    padding: 0 1.875rem
  }

  .popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header {
    background-image: none;
    padding: 0
  }

  .popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #2c68a5
  }

  .popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title .signup-icon {
    border-color: #2c68a5
  }

  .popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header .h2title .signup-icon svg * {
    stroke: #2c68a5
  }

  .popup.signup-popup #sign-up.nav-tab.tab-content .sign-in .sign-in--header p {
    text-align: left;
    color: #7a7b78
  }

  .popup.signup-popup.play-again-popup .button {
    margin: 0 0 1rem !important
  }
}

@media only screen and (max-width:620px) {
  .popup .popup-close {
    right: 5%
  }
}

@media only screen and (min-width:980px) {
  .popup .popup-close {
    cursor: pointer;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s
  }

  .popup .popup-close svg path {
    -webkit-transition: fill ease-in-out .15s;
    transition: fill ease-in-out .15s
  }

  .popup .popup-close:hover {
    background: #2c68a5;
    border-color: #2c68a5
  }

  .popup .popup-close:hover svg path {
    fill: white
  }

  .popup.popup-maintenance .popup-close:hover {
    background: #2c68a5;
    border-color: #2c68a5
  }

  .popup.popup-maintenance .popup-close:hover svg path {
    fill: white
  }
}

@media only screen and (max-width:768px) {
  .play-again-popup .button {
    margin: 0 0 1rem !important
  }
}

.icon-oops {
  height: 100% !important;
  min-width: 5.625rem
}

.icon-oops * {
  fill: #2c68a5 !important
}

.hostedpayment-popup {
  display: none;
  position: fixed;
  top: 2.5%;
  left: 0;
  height: 95%;
  width: 100%;
  z-index: 9999
}

.hostedpayment-popup.active {
  display: block
}

.hostedpayment-popup .hostedpayment-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  max-width: 35rem;
  margin: auto;
  padding: 1%;
  background: -webkit-gradient(linear, right bottom, left top, from(#047ada), to(#39abf7));
  background: -webkit-linear-gradient(bottom right, #047ada 0%, #39abf7 100%);
  background: linear-gradient(to top left, #047ada 0%, #39abf7 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  overflow: auto
}

.hostedpayment-popup .hostedpayment-msg {
  color: #fff;
  font-size: .875em;
  font-family: "Open sans";
  line-height: 1.5;
  margin: 0;
  padding: 0
}

.hostedpayment-popup .hostedpayment-header {
  margin: 0;
  padding: 0 0 3% 0;
  text-align: left;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit
}

.hostedpayment-popup .hostedpayment-content {
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit
}

.hostedpayment-popup .hostedpayment-loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit
}

.hostedpayment-popup .hostedpayment-payment {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.hostedpayment-popup .hostedpayment-frame {
  height: 100%;
  width: 100%;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  border-radius: inherit;
  margin-bottom: -1em
}

.hostedpayment-popup .hostedpayment-frame.hostedpayment-frame-started {
  background: #fff
}

.hostedpayment-popup.paysafecard {
  top: 0;
  height: 100%;
  overflow-y: auto
}

.hostedpayment-popup.paysafecard .hostedpayment-container {
  height: initial;
  max-width: 620px;
  padding: 10px
}

.hostedpayment-popup.paysafecard .hostedpayment-container .hostedpayment-content {
  height: 840px
}

#checkout--duplicate-numbers-warning-popup h3 {
  margin: auto auto .5rem
}

#checkout--duplicate-numbers-warning-popup .popup-container>.container {
  padding: 1.25rem 3%
}

#checkout--duplicate-numbers-warning-popup .buttons-container {
  margin-top: 1rem
}

#checkout--duplicate-numbers-warning-popup .popup-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games {
  background: #fff;
  margin: 0 auto;
  padding: 1rem 0 1.5rem
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .game-number {
  padding: .5rem 0 0
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .dupe-list {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: .25rem auto;
  background: rgba(216, 38, 45, .2)
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers {
  -webkit-box-flex: unset;
  -webkit-flex: unset;
  -moz-box-flex: unset;
  -ms-flex: unset;
  flex: unset
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers .lottery-number {
  background: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  color: #e25f2c;
  margin: 0
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers .lottery-number.number {
  background-color: none
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers .lottery-number.number span {
  font-weight: 400
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers .lottery-number.lucky span {
  font-weight: 400;
  color: #38a4d0
}

#checkout--duplicate-numbers-warning-popup .popup-duplicate-games .lottery-numbers .lottery-number.primitiva-lucky {
  display: block
}

.lottery-card.lottery-card-document-upload {
  padding: 0;
  margin-top: 2.1875rem
}

.lottery-card.lottery-card-document-upload .button {
  width: auto;
  margin: 0 auto 1.09375rem;
  padding: .9375rem 2.5rem;
  min-width: 9.6875rem;
  display: inline-block
}

.lottery-card.lottery-card-document-upload .terms {
  text-align: left;
  padding: 1.25rem 1.5625rem;
  border-top: 1px solid #e3e3e3
}

.lottery-card.lottery-card-document-upload .terms p {
  font-size: .6875em;
  color: #7a7b78;
  margin: 0
}

.lottery-card.lottery-card-document-upload .more {
  margin-bottom: 1.25em;
  text-decoration: underline;
  cursor: pointer
}

.file-upload {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  padding: 1.5625rem .9375rem 1.25rem;
  margin: .9375rem .625rem
}

.file-upload .upload-image {
  margin: auto 0;
  width: 30%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  margin-right: 1.5625rem;
  height: auto;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.file-upload .file-upload-container {
  font-size: 1em;
  font-family: "Open sans";
  line-height: 1.2;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.file-upload .file-upload-container .file-upload-title {
  display: block;
  font-weight: 600;
  padding: .625rem;
  margin-bottom: .625rem;
  margin-left: -5px
}

.file-upload .file-upload-container span {
  line-height: 1.3
}

.file-upload .file-upload-container .error {
  color: red
}

.file-upload input[type="file"] {
  display: none
}

@media only screen and (max-width:390px) {
  .lottery-card.lottery-card-document-upload .button {
    min-width: 0;
    margin-right: 0
  }
}

.lottery-play-search {
  max-width: 35rem;
  margin: .1875rem auto
}

.lottery-play-search p {
  color: #fff;
  font-weight: 700
}

.lottery-play-search form input[type="submit"] {
  margin-top: .625rem
}

.lottery-play-search form label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

.lottery-play-search form:first-of-type {
  margin-top: 1.875rem
}

.lottery-search-result {
  padding: 2.8125rem 0 3.125rem
}

.lottery-search-result .container {
  max-width: 35rem
}

.lottery-search-result h2 {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-search-result h2 svg {
  margin-right: .625rem
}

.lottery-search-result p {
  color: #4c4d4a;
  margin: .9375rem 0 2rem;
  font-weight: 600
}

.lottery-search-result form {
  margin-top: 1.875rem
}

.lottery-search-result form .lottery-select {
  margin: 0
}

.lottery-search-result form label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%
}

.lottery-search-result form .select-dropdown .select-rendered:after {
  background-image: url(../icons/icon-angle-down.svg);
  height: 1rem;
  width: 1rem;
  right: .9375rem
}

.lottery-search-result form .lottery-select,
.lottery-play-search form .lottery-select {
  margin-right: .625rem
}

.lottery-search-result form label,
.lottery-play-search form label {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0
}

.lottery-signup {
  background: -webkit-gradient(linear, right bottom, left top, from(#097edd), color-stop(50%, #2194ea), to(#36a8f6));
  background: -webkit-linear-gradient(bottom right, #097edd 0%, #2194ea 50%, #36a8f6 100%);
  background: linear-gradient(to top left, #097edd 0%, #2194ea 50%, #36a8f6 100%);
  padding: 2.5rem 0 1.875rem
}

.lottery-signup * {
  color: #fff
}

.lottery-signup h3 {
  margin-top: .9375rem;
  font-size: 1.5em
}

.lottery-signup form {
  margin: 1.875rem auto 0;
  max-width: 22.5rem
}

.lottery-signup form .input-row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  display: block
}

.lottery-signup form .input-row input {
  max-width: 14.375rem;
  width: 100%
}

.lottery-signup form .input-row button {
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: .9375rem;
  height: .9375rem;
  padding: 0
}

.lottery-signup form .input-row button svg {
  height: .875rem;
  width: auto;
  margin: 0 auto
}

#lottery-signup-banner {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5993c), to(#f76b1c));
  background-image: -webkit-linear-gradient(left, #f5993c, #f76b1c);
  background-image: linear-gradient(to right, #f5993c, #f76b1c);
  padding: 1.25rem 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 1rem
}

#lottery-signup-banner svg {
  margin-right: 1.25rem
}

#lottery-signup-banner .lottery-signup-banner-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

#lottery-signup-banner .lottery-signup-banner-mobile {
  display: none
}

#lottery-signup-banner h3 {
  color: #fff;
  font-size: 1.75em;
  font-weight: 700;
  margin: .4375rem 2.5rem 0 0
}

@media only screen and (max-width:600px) {
  #lottery-signup-banner {
    margin: 1rem
  }
}

#lottery-signup-banner.signup-banner-reverse {
  background: #fff
}

#lottery-signup-banner.signup-banner-reverse h3 {
  color: #e25f2c
}

@media only screen and (max-width:760px) {
  #lottery-signup-banner .lottery-signup-banner-desktop {
    display: none
  }

  #lottery-signup-banner .lottery-signup-banner-mobile {
    display: block
  }

  #lottery-signup-banner .button {
    padding: .75rem .9375rem .875rem
  }
}

.sign-up--page {
  max-width: 36.25rem;
  margin: 0 auto;
  font-size: 18px;
  padding: 1.875rem 0
}

.sign-up--page .h1title {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 600 !important
}

.sign-up--page .h1title.icon-title .icon {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 2.5rem !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 2.5rem !important;
  flex: 0 0 2.5rem !important
}

.sign-up--page .h1title.icon-title .icon svg {
  max-width: 2rem;
  height: auto;
  width: 55%
}

.sign-up--page .h1title+.right {
  color: #fff;
  padding: 0 2.5%;
  margin: .75rem 0
}

.sign-up--page .sign-in--header {
  padding-bottom: .875rem
}

.sign-up--page .signup-page--header {
  color: #fff;
  width: 100%;
  text-align: center;
  border: 2px solid #fff;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  padding: 1.875rem;
  line-height: 1
}

.sign-up--page .signup-page--header+form {
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px
}

.sign-up--page .sign-up--form {
  padding: 1.875rem 0
}

.sign-up--page .sign-in--form {
  padding-top: 1.875rem
}

.sign-up--page .sign-in--social-form button {
  font-size: .9375em;
  cursor: pointer;
  -webkit-transition: opacity ease-in-out .2s;
  transition: opacity ease-in-out .2s
}

.sign-up--page .sign-in--social-form button:hover {
  opacity: .6
}

.sign-up--page form {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px
}

.sign-up--page form .social-buttons {
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 auto !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
  width: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: .3125rem
}

.sign-up--page form .side-borders {
  margin: .625rem 0 1.875rem
}

.sign-up--page form .container {
  max-width: 23.75rem
}

.sign-up--page form h3+p {
  margin-bottom: 1.5rem
}

.sign-up--page form p {
  line-height: 1.5
}

.sign-up--page form .blue {
  font-size: 16px;
  -webkit-transition: opacity ease-in-out .2s;
  transition: opacity ease-in-out .2s
}

.sign-up--page form .blue:hover {
  opacity: .6
}

.sign-up--page form label p {
  font-size: .8125rem;
  text-align: left;
  padding: 0 1.40625rem;
  margin: 0
}

.sign-up--page form input[type="text"]::-webkit-input-placeholder,
.sign-up--page form input[type="number"]::-webkit-input-placeholder,
.sign-up--page form input[type="password"]::-webkit-input-placeholder,
.sign-up--page form textarea::-webkit-input-placeholder,
.sign-up--page form select::-webkit-input-placeholder {
  opacity: .64
}

.sign-up--page form input[type="text"]::-moz-placeholder,
.sign-up--page form input[type="number"]::-moz-placeholder,
.sign-up--page form input[type="password"]::-moz-placeholder,
.sign-up--page form textarea::-moz-placeholder,
.sign-up--page form select::-moz-placeholder {
  opacity: .64
}

.sign-up--page form input[type="text"]:-ms-input-placeholder,
.sign-up--page form input[type="number"]:-ms-input-placeholder,
.sign-up--page form input[type="password"]:-ms-input-placeholder,
.sign-up--page form textarea:-ms-input-placeholder,
.sign-up--page form select:-ms-input-placeholder {
  opacity: .64
}

.sign-up--page form input[type="text"]::-ms-input-placeholder,
.sign-up--page form input[type="number"]::-ms-input-placeholder,
.sign-up--page form input[type="password"]::-ms-input-placeholder,
.sign-up--page form textarea::-ms-input-placeholder,
.sign-up--page form select::-ms-input-placeholder {
  opacity: .64
}

.sign-up--page form input[type="text"]::placeholder,
.sign-up--page form input[type="number"]::placeholder,
.sign-up--page form input[type="password"]::placeholder,
.sign-up--page form textarea::placeholder,
.sign-up--page form select::placeholder {
  opacity: .64
}

.sign-up--page form input[type="date"]::before {
  opacity: .64
}

.sign-up--page form button[type="submit"] {
  margin: 1.25rem 0
}

.sign-up--page form .placeholder {
  top: 1.03125rem;
  font-size: 14px !important
}

.sign-up--page form .password-strength--validation p {
  text-align: center
}

.sign-up--page #popup-reopen-closed-account-message {
  padding: 1.5rem 0;
  background: #fff
}

.sign-up--page #popup-account-closed-message {
  padding: 1.5rem 0;
  background: #fff;
  display: none
}

@media only screen and (max-width:600px) {

  .sign-up--page #popup-account-closed-message-options,
  .sign-up--page #popup-reopen-closed-account-message-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.sign-up--page #registration--signup-address-autoinput {
  padding-top: .5rem
}

.sign-up--page p.enter-address {
  margin-top: 0
}

.social-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.social-buttons a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 2.375rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 2.375rem;
  flex: 0 0 2.375rem;
  margin-right: .625rem;
  position: relative
}

.social-buttons a:last-child {
  margin-right: 0
}

.social-buttons a svg {
  margin: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.social-buttons a.facebook {
  background-color: #425893
}

.social-buttons a.facebook svg * {
  fill: white
}

.social-buttons a.google svg {
  fill: #da483c;
  left: initial;
  width: 38px;
  height: 38px
}

.social-buttons a.apple {
  background-color: none
}

.social-buttons a.apple svg {
  width: 38px;
  height: 38px
}

.social-buttons a.apple svg circle {
  fill: #58595b
}

.social-buttons a.apple svg g {
  fill: #fff
}

.popup .sign-up--page {
  padding: 0
}

.popup form {
  padding-bottom: 0
}

@media only screen and (max-width:560px) {
  .sign-up--page form .container {
    max-width: 92.5%;
    width: 100%;
    font-size: 15px
  }

  .sign-up--page .right {
    text-align: center
  }

  .sign-up--page .sign-in--header {
    padding-top: 1.25rem
  }

  .sign-up--page .sign-in--header .h1title {
    margin-bottom: .3125rem
  }

  .sign-up--page .sign-in .side-borders {
    margin: 0 0 .625rem
  }

  .sign-up--page .sign-in--form button[type="submit"] {
    margin-bottom: .625rem
  }

  .sign-up--page h2.need-help {
    max-width: 100%
  }
}

.sign-in--sms {
  padding: 1rem;
  background: #eee !important;
  margin-bottom: 1rem;
  min-height: 300px
}

.sign-in--sms h2 {
  margin: .5rem auto .25rem;
  font-size: 1.2rem;
  color: #2c68a5
}

.sign-in--sms>span {
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  padding-bottom: 1rem
}

.sign-in--sms input:invalid:focus {
  border-color: #d8262d
}

.sign-in--sms button[type="submit"] {
  margin: 1rem 0 .5rem !important
}

.sms--login .sign-in--error {
  background: #e25f2c;
  color: #fff;
  padding: .5rem;
  margin: 0 !important
}

.sms--login .sign-in--error a {
  color: #fff;
  text-decoration: underline
}

.sign-in--sms-code {
  padding: 1rem;
  background: #eee !important;
  margin-bottom: 1rem;
  display: none;
  outline: 2px solid;
  min-height: 300px
}

.sign-in--sms-code .sign-in--error a {
  color: #fff;
  text-decoration: underline
}

.sign-in--sms-code input:invalid:focus {
  border-color: #d8262d
}

.sign-in--sms-code input [name="code"] {
  margin-bottom: 0
}

.sign-in--sms-code h2 {
  margin: .5rem auto 1rem;
  font-size: 1.2rem;
  color: #2c68a5
}

.sign-in--sms-code #send-new-code {
  margin: 10px auto 0;
  font-weight: bold;
  cursor: pointer
}

.sign-in--sms-code #resend-sms-code {
  margin: 0 0 1rem;
  font-weight: bold;
  display: none
}

.sign-in--sms-code button[type="submit"] {
  margin: 1rem 0 .5rem !important
}

.sign-in--sms-code #resent-message {
  display: none;
  color: #2c68a5;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 0 1rem
}

.display-none {
  display: none !important
}

.display-block {
  display: block !important
}

.safari-only {
  display: none;
  color: #2c68a5;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 1rem;
  text-align: left
}

@media not all and (min-resolution:.001dpcm) {
  @supports(-webkit-appearance:none)and(stroke-color:transparent) {
    .safari-only {
      display: block
    }
  }
}

@media not all and (min-resolution:.001dpcm) {
  @supports(-webkit-appearance:none)and(not(stroke-color:transparent)) {
    .safari-only {
      display: block
    }
  }
}

@supports(-webkit-overflow-scrolling:touch) {
  input[type="date"]:before {
    color: #2C68A5;
    content: attr(placeholder)
  }

  input[type="date"].filled:before {
    color: #2C68A5;
    content: "" !important
  }

  input[type="date"]:not(.filled):before {
    color: #2C68A5;
    content: attr(placeholder)
  }

  input[type="date"] {
    -webkit-text-fill-color: #2C68A5;
    -webkit-opacity: 1
  }
}

.faqs-information {
  padding: 1rem 0
}

.faqs-information a {
  color: #2c68a5;
  font-weight: 600
}

.faqs-information .single-game-img {
  max-width: 320px;
  display: block;
  margin: auto
}

.faqs-information ul {
  list-style: none;
  padding: 2rem 0;
  margin: 0
}

.faqs-information ul>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 1rem 0
}

.faqs-information ul>li>img {
  max-width: 10rem;
  margin-right: 3rem;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.faqs-information ul>li div {
  position: relative
}

.faqs-information ul>li div.accordion {
  padding-left: 0
}

.faqs-information ul>li div.accordion div {
  padding-left: 0
}

.faqs-information ul>li div.accordion .results-content p:before {
  display: none
}

.faqs-information ul>li div h2 {
  margin: 0;
  font-size: 1.375em;
  font-weight: 700;
  color: #2c68a5
}

@media screen and (max-width:600px) {
  .faqs-information ul>li div h2 {
    margin: auto
  }
}

.faqs-information ul>li div p {
  line-height: 1.5;
  max-width: 90%
}

.faqs-information ul>li div table {
  border: 1px solid #4c4d4a;
  width: 100%
}

.faqs-information ul>li div table tr th {
  color: #fff;
  background: #2c68a5;
  text-align: center
}

.faqs-information ul>li div table tr th:nth-child(even) {
  background: #38a4d0
}

.faqs-information ul>li div table tr td {
  text-align: left;
  padding: 5px 10px;
  border: 1px solid #7a7b78
}

.faqs-information ul>li div table.joker-awards tr th {
  vertical-align: middle
}

.faqs-information ul>li div table.joker-awards tr:nth-child(2) {
  background-color: #f48b30
}

.faqs-information ul>li div table.joker-awards tr:nth-child(2) td {
  color: #fff
}

.faqs-information ul>li div table.joker-awards tr td {
  text-align: center
}

.faqs-information ul>li div table.mega-multiplier-table td {
  text-align: center !important
}

.faqs-information ul>li div ul {
  padding: 1rem;
  list-style: disc
}

.faqs-information ul>li div ul li {
  display: list-item;
  padding: initial
}

.faqs-information ul>li div ol {
  padding: 1rem
}

.faqs-information ul>li div ol li {
  display: list-item
}

.faqs-information ul>li .instant-win-img {
  max-width: 100%;
  margin: auto auto 1rem auto;
  width: auto
}

.faqs-information .accordion h3 {
  text-align: left;
  color: #2c68a5
}

.faqs-information .accordion p {
  text-align: left
}

.faqs-information .accordion .qa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.faqs-information .accordion .qa .results-content {
  margin: 0
}

.faqs-information .accordion .qa .results-expand {
  display: block;
  cursor: pointer
}

.faqs-information .accordion .qa .results-expand:after {
  display: none
}

.faqs-information .accordion .qa .results-expand h3 {
  margin: 0
}

.faqs-information .accordion .qa .results-expand.active+.results-content {
  max-height: 100% !important
}

.faqs-information.syndicates-information .container {
  padding: 2rem 0;
  margin: 0 auto;
  width: 92.5%;
  max-width: 73.75rem
}

.faqs-information.syndicates-information .container>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 1rem 0
}

.faqs-information.syndicates-information .container>div>img {
  max-width: 10rem;
  margin-right: 3rem;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.faqs-information.syndicates-information .container>div div {
  position: relative
}

.faqs-information.syndicates-information .container>div div.accordion {
  padding-left: 0
}

.faqs-information.syndicates-information .container>div div.accordion div {
  padding-left: 0
}

.faqs-information.syndicates-information .container>div div.accordion .results-content p:before {
  display: none
}

.faqs-information.syndicates-information .container>div div h2 {
  margin: 0;
  font-size: 1.375em;
  font-weight: 700;
  color: #2c68a5
}

.faqs-information.syndicates-information .container>div div p {
  line-height: 1.5;
  max-width: 90%
}

.faqs-information.syndicates-information .container>div div table {
  border: 1px solid #4c4d4a;
  width: 100%
}

.faqs-information.syndicates-information .container>div div table tr th {
  color: #fff;
  background: #2c68a5;
  text-align: center;
  line-height: 1.5
}

.faqs-information.syndicates-information .container>div div table tr th:nth-child(even) {
  background: #38a4d0
}

.faqs-information.syndicates-information .container>div div table tr td {
  text-align: left;
  padding: 5px 10px;
  border: 1px solid
}

.faqs-information.syndicates-information .container>div div ul {
  padding: 1rem;
  list-style: disc
}

.faqs-information.syndicates-information .container>div div ul li {
  display: list-item;
  padding: initial
}

.faqs-information.syndicates-information .container>div div ol {
  padding: 1rem
}

.faqs-information.syndicates-information .container>div div ol li {
  display: list-item
}

@media screen and (max-width:1080px) {
  .faqs-information {
    padding: 0
  }

  .faqs-information .two-col .col {
    width: 100%;
    margin: 1rem 0 0
  }
}

@media screen and (max-width:768px) {
  .faqs-information ul {
    padding: 1rem 0
  }

  .faqs-information ul>li {
    display: block;
    text-align: center
  }

  .faqs-information ul>li>img {
    margin-right: 0;
    max-width: 6rem
  }

  .faqs-information ul>li div.faq {
    padding: 0
  }

  .faqs-information ul>li div.faq h3 {
    margin: auto;
    text-align: center
  }

  .faqs-information ul>li div.faq p {
    max-width: 100%;
    text-align: center
  }

  .faqs-information ul>li div.faq ul li,
  .faqs-information ul>li div.faq ol li {
    text-align: left
  }

  .faqs-information ul>li div.faq .table-scroll {
    overflow: scroll
  }

  .faqs-information.syndicates-information {
    padding: 0 1rem
  }

  .faqs-information.syndicates-information .container {
    padding: 1rem 0;
    width: 100%
  }

  .faqs-information.syndicates-information .container div {
    display: block;
    text-align: center
  }
}

@media screen and (max-width:768px) and (max-width:600px) {
  .faqs-information.syndicates-information .container div h2 {
    margin: auto !important
  }
}

@media screen and (max-width:768px) {
  .faqs-information.syndicates-information .container div>img {
    margin-right: 0;
    max-width: 6rem
  }

  .faqs-information.syndicates-information .container div div {
    padding: 0
  }

  .faqs-information.syndicates-information .container div div h3 {
    margin: auto;
    text-align: center
  }

  .faqs-information.syndicates-information .container div div p {
    max-width: 100%;
    text-align: center
  }

  .faqs-information.syndicates-information .container div div p:first-of-type:before {
    display: none
  }

  .faqs-information.syndicates-information .container div div ul li,
  .faqs-information.syndicates-information .container div div ol li {
    text-align: left
  }

  .faqs-information.syndicates-information .container div div .table-scroll {
    overflow: scroll
  }

  .faqs-information.syndicates-information .container div div.faq {
    padding: 0 1rem
  }

  .faqs-information.syndicates-information .container div div.faq>div {
    padding: 0
  }
}

@media screen and (max-width:600px) {
  .mobile-table-scroll {
    padding: 0 !important;
    overflow-x: scroll
  }
}

.lottery-regulations {
  background: #f8f8f8;
  margin-top: 1rem
}

.lottery-regulations .lottery-regulations--regulation {
  padding: 2.1875rem 0
}

.lottery-regulations .lottery-regulations--regulation h3 {
  color: #2c68a5;
  font-weight: 700;
  margin: .9375rem 0 1.875rem
}

.lottery-regulations .lottery-regulations--regulation:last-of-type {
  border-bottom: 0
}

@media only screen and (max-width:600px) {
  .lottery-regulations .lottery-regulations--regulation {
    padding: 1rem 0
  }

  .lottery-regulations .lottery-regulations--regulation h3 {
    margin: .5rem 0
  }
}

@media only screen and (max-width:600px) {
  .lottery-regulations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.regulation-digits {
  max-width: 31.25rem
}

@media only screen and (max-width:600px) {
  .regulation-digits img {
    min-width: 400px !important
  }
}

@media only screen and (max-width:400px) {
  .regulation-digits img {
    min-width: auto !important
  }
}

@media only screen and (min-width:760px) {
  .lottery-regulations {
    padding: 0 -webkit-calc(7.5%/2);
    padding: 0 calc(7.5%/2)
  }

  .lottery-regulations .regulation-digits img {
    min-width: auto !important
  }

  .lottery-regulations .lottery-regulations--regulation {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    border-bottom: none
  }

  .lottery-regulations .lottery-regulations--regulation:first-child {
    border-right: 1px solid #2c68a5;
    padding-right: 5%
  }

  .lottery-regulations .lottery-regulations--regulation:last-child {
    padding-left: 5%
  }
}

@media only screen and (min-width:1080px) {
  .lottery-regulations {
    padding: 0 -webkit-calc((100% - 67.5rem)/2);
    padding: 0 calc((100% - 67.5rem)/2)
  }

  .lottery-regulations .lottery-regulations--regulation .container h3 {
    margin: 0 0 0 1.25rem
  }

  .lottery-regulations .lottery-regulations--regulation .container .regulation-digits {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .lottery-regulations .lottery-regulations--regulation .container .regulation-digits img {
    min-width: 400px !important
  }
}

.lottery-app-container .lottery-app {
  font-size: 1em;
  padding: 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin: 0 1rem
}

.lottery-app-container .lottery-app span {
  line-height: 1.2;
  margin-left: .9375rem;
  font-family: "Open sans";
  margin-top: 0;
  font-weight: 600
}

.lottery-app-container .lottery-app svg {
  width: 1.875rem;
  height: 1.875rem;
  overflow: visible
}

.lottery-app-container .lottery-app svg * {
  fill: #fff
}

.lottery-app-container .lottery-app svg circle+path {
  fill: white
}

.lottery-app-container .lottery-app svg#linkedin .outer {
  fill: #2c68a5
}

.lottery-app-container .lottery-app svg#linkedin .inner {
  fill: #fff
}

.lottery-card--social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.lottery-card--social a {
  color: #2c68a5;
  font-size: 2.125em;
  margin-right: 1.5625rem;
  padding: .625rem
}

.lottery-card--social a svg {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.lottery-card--social a svg path {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.lottery-card--social a:last-of-type {
  margin-right: 0
}

@media only screen and (min-width:680px) {
  .lottery-footer-cards>.container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .lottery-footer-cards>.container .lottery-card {
    width: 100%;
    max-width: 100%
  }

  .lottery-footer-cards>.container>* {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 1.5%;
    margin-bottom: 0
  }

  .lottery-footer-cards>.container>*:last-child {
    margin-right: 0
  }

  .lottery-footer-cards>.container>*:last-child .lottery-card {
    height: 100%
  }
}

@media only screen and (min-width:960px) {
  .lottery-footer-cards .footer-cards--left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: -1.25rem
  }

  .lottery-footer-cards .footer-cards--left .lottery-card {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48.25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 48.25%;
    flex: 0 0 48.25%;
    min-width: 0;
    width: 100%;
    max-width: 48.25%;
    margin: 0 0 1.25rem
  }

  .lottery-footer-cards .footer-cards--left .lottery-card:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 460px;
    margin: auto
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons img {
    max-width: 100%;
    width: 220px;
    height: auto
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons img:first-child {
    margin-right: 20px
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .button {
    margin-top: 1rem
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .syndicate-button {
    max-width: 80%;
    cursor: pointer
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container {
    margin-top: 2.5rem
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
    max-width: 24%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .625rem .3125rem;
    margin: 0;
    text-align: center;
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:nth-of-type(3n+3) {
    margin-right: 0
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:nth-of-type(1n+4) {
    margin-bottom: 0
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app svg {
    margin-bottom: 0;
    margin-right: 0
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app svg path,
  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app svg polygon {
    -webkit-transition: fill ease-in-out .2s;
    transition: fill ease-in-out .2s
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app span {
    margin-left: 0
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:last-child {
    margin-bottom: 0
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:hover {
    background: #2c68a5;
    color: #fff;
    opacity: 1
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:hover svg * {
    fill: white
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:hover svg circle+path {
    fill: #2c68a5
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:hover svg#linkedin .outer {
    fill: #fff
  }

  .lottery-footer-cards .footer-cards--left .lottery-app-container .lottery-app:hover svg#linkedin .inner {
    fill: #2c68a5
  }

  .lottery-footer-cards .footer-cards--left .lottery-card--social a:hover {
    opacity: 1
  }

  .lottery-footer-cards .footer-cards--left .lottery-card--social a:hover svg {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
  }

  .lottery-footer-cards .footer-cards--left .lottery-card--social a:hover svg * {
    fill: #e25f2c
  }

  .lottery-footer-cards .footer-cards--right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .lottery-footer-cards .footer-cards--right .lottery-card {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .lottery-footer-cards .footer-cards--right .tab-nav {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-bottom: none;
    padding: 0 2.5rem
  }

  .lottery-footer-cards .footer-cards--right .tab-nav li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    border-bottom: none;
    pointer-events: none
  }

  .lottery-footer-cards .footer-cards--right .tab-nav li svg {
    margin: 0 .9375rem 0 0;
    max-width: 3.125rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }

  .lottery-footer-cards .footer-cards--right .lottery-card--content h3 br {
    display: none
  }

  .lottery-footer-cards .footer-cards--right .tabs-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 2.5rem;
    width: 100%;
    max-width: 100%
  }

  .lottery-footer-cards .footer-cards--right .tabs-container .tab-content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    height: auto;
    display: block;
    z-index: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .lottery-footer-cards .footer-cards--right .tabs-container .tab-content ul {
    margin: 1.5625rem 0 0
  }
}

@media only screen and (max-width:1000px) {
  .lottery-app-container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .lottery-app-container .lottery-app {
    margin-bottom: 0 !important
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .syndicate-button {
    max-width: 220px;
    cursor: pointer
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons {
    display: block
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons img {
    max-width: 100%;
    width: 220px;
    margin: 0 auto 20px
  }

  .lottery-footer-cards .footer-cards--left .lottery-card .download-buttons img.download-android {
    margin-bottom: 0
  }
}

@media only screen and (max-width:600px) {
  .lottery-app {
    margin: auto !important
  }

  h3.fingertips br {
    display: none
  }
}

.tab-nav {
  margin: 0;
  list-style: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 6%;
  display: inline-block;
  white-space: nowrap;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch
}

.tab-nav li {
  list-style: none;
  color: #fff;
  font-size: .9375em;
  letter-spacing: .5px !important;
  line-height: 1.3;
  padding: .625rem .625rem .78125rem;
  border-bottom: 3px solid transparent;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  cursor: pointer;
  font-weight: 600;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 25%;
  font-size: .875em
}

.tab-nav li svg {
  margin: 0 auto .625rem;
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  height: 2.8125rem;
  width: auto
}

.tab-nav li.active {
  border-color: #fff
}

.tab-nav li:last-of-type {
  margin-right: 0
}

.tab-nav.tab-nav-orange {
  border-bottom: 1px solid #e25f2c
}

.tab-nav.tab-nav-orange li {
  color: #e25f2c
}

.tab-nav.tab-nav-orange li.active {
  border-color: #e25f2c
}

.tab-nav.tab-nav-noborder {
  border-bottom: none
}

.tab-nav.tab-nav-nooverflow {
  overflow: hidden;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.tab-nav.tab-nav-nooverflow li {
  max-width: 100%;
  width: auto;
  padding: .625rem .3125rem;
  font-size: 1.125em;
  font-weight: 700;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  letter-spacing: 0;
  margin: 0
}

.tab-nav.tab-nav-small li {
  font-weight: 400
}

.tab-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 67.5rem;
  background-attachment: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  background-color: #fff;
  padding: .9375rem 0;
  max-width: 95vw
}

.tab-toggle span {
  color: #2c68a5;
  cursor: pointer;
  opacity: .6;
  line-height: 1.3;
  font-weight: 600;
  font-size: .9375em;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.tab-toggle span:hover {
  opacity: 1
}

.tab-toggle label {
  margin: 0 1.5625rem
}

.tab-toggle label input[type="checkbox"] {
  display: none
}

.tab-toggle label input[type="checkbox"]+span {
  display: block;
  width: 2.8125rem;
  height: .9375rem;
  background: #e25f2c;
  position: relative;
  -webkit-border-radius: 3.125rem;
  -moz-border-radius: 3.125rem;
  border-radius: 3.125rem;
  opacity: 1
}

.tab-toggle label input[type="checkbox"]+span:before {
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: .9375rem;
  height: .9375rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateX(-96%);
  -moz-transform: translateX(-96%);
  -ms-transform: translateX(-96%);
  transform: translateX(-96%);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2)
}

.tab-toggle span.active {
  opacity: 1
}

.tab-toggle span.active+label span:before {
  left: 0;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none
}

.tab-toggle.no-border {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0
}

.tab-toggle.tab-slide-toggle {
  background: transparent;
  border: 2px solid #fff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  border: 2px solid #fff;
  width: 90%
}

.tab-toggle.tab-slide-toggle span {
  padding: .625rem 2.1875rem;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  color: #fff;
  width: 50%;
  opacity: 1
}

.tab-toggle.tab-slide-toggle span.active {
  background: #fff;
  color: #2c68a5
}

.tab-toggle.tab-slide-toggle span:first-child.active {
  margin-left: -1px
}

.tab-toggle.tab-slide-toggle span:last-child.active {
  margin-right: -1px
}

@media only screen and (max-width:600px) {
  .tab-toggle.tab-slide-toggle {
    max-width: auto;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -moz-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
  }

  .tab-toggle.tab-slide-toggle span {
    padding: 12px
  }
}

.tab-toggle.tab-slide-play {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  max-width: 53.75rem
}

.tab-toggle.tab-slide-play span {
  line-height: 1.6;
  opacity: 1
}

.tab-toggle.tab-slide-play span.active {
  background: #2c68a5;
  color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -webkit-border-bottom-left-radius: unset;
  -moz-border-radius-bottomleft: unset;
  border-bottom-left-radius: unset;
  -webkit-border-bottom-right-radius: unset;
  -moz-border-radius-bottomright: unset;
  border-bottom-right-radius: unset;
  border-bottom: none
}

.tab-toggle.tab-toggle-standardsystems {
  max-width: 50%
}

@media only screen and (max-width:780px) {
  .tab-toggle.tab-toggle-standardsystems {
    max-width: 75%
  }
}

@media only screen and (max-width:600px) {
  .tab-toggle.tab-toggle-standardsystems {
    max-width: 75%
  }

  .tab-toggle.tab-toggle-standardsystems span {
    width: 50%
  }
}

.tab-content {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .3s;
  transition: opacity ease-in-out .3s;
  z-index: -99;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  display: block
}

.tab-content.active {
  display: block;
  opacity: 1;
  z-index: 1;
  visibility: visible;
  height: auto;
  overflow: visible
}

.tab-content.active.division-results {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.tab-content.tab-content-slide {
  max-height: 0;
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transition: all 0 !important;
  transition: all 0 !important
}

.tab-content.tab-content-slide.active {
  max-height: 5000px
}

.tab-content.tab-content-overflow {
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.tab-content.tab-content-play {
  background: #2c68a5
}

.tab-content.tab-content-play.active {
  padding: 1rem 0
}

.tab-content .play-game {
  max-width: 53.75rem;
  margin: auto
}

@media only screen and (min-width:760px) {
  .tab-nav li {
    font-size: 1em
  }

  .tab-nav#lottery-game--play-menu {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
  }

  .tab-nav#lottery-game--play-menu li {
    margin: auto 2rem
  }

  .tab-toggle span {
    font-size: 1.1875em
  }

  .tab-toggle span br {
    display: none
  }
}

.lottery-card .timer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

p.timer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  font-size: 14px
}

p.timer svg {
  width: 1.4375rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.4375rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.4375rem;
  flex: 0 0 1.4375rem;
  margin-right: 1.25rem
}

p.timer.cta-timer {
  margin-top: 1.25rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

p.timer.cta-timer span {
  color: #e25f2c
}

p.timer.cta-timer svg {
  width: 1.875rem;
  height: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.875rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.875rem;
  flex: 0 0 1.875rem;
  margin-right: 1.25rem
}

p.timer.cta-timer svg * {
  fill: white
}

p.timer .timer-countdown {
  color: #2c68a5;
  font-size: 1.125em;
  font-weight: 700
}

p.timer .timer-countdown.cta-countdown {
  font-size: 1em
}

p.timer .timer-countdown.cta-countdown .cta-timer-container>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  float: left;
  width: 4.0625rem;
  margin-right: .9375rem;
  position: relative
}

p.timer .timer-countdown.cta-countdown .cta-timer-container>div span {
  color: #fff;
  font-size: 1.125em;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: .625rem;
  line-height: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}

p.timer .timer-countdown.cta-countdown .cta-timer-container>div span.cta-timer-count {
  background-image: -webkit-gradient(linear, right top, left top, from(#f76b1c), color-stop(50%, #f76c1c), to(#f89436));
  background-image: -webkit-linear-gradient(right, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  background-image: linear-gradient(to left, #f76b1c 0%, #f76c1c 50%, #f89436 100%);
  font-size: 2.5em;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  position: static;
  padding: .46875rem .3125rem;
  margin-top: 0;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none
}

p.timer .timer-countdown.cta-countdown .cta-timer-container>div:last-of-type {
  margin-right: 0
}

@media only screen and (min-width:370px) {
  p.timer {
    font-size: 16px
  }
}

.notifications-container {
  position: fixed;
  z-index: 999;
  left: .625rem;
  bottom: .625rem
}

.notifications-container .notification {
  width: 9.375rem;
  background: -webkit-gradient(linear, right bottom, left top, from(#f5993c), to(#f76b1c));
  background: -webkit-linear-gradient(bottom right, #f5993c 0%, #f76b1c 100%);
  background: linear-gradient(to top left, #f5993c 0%, #f76b1c 100%);
  padding: .625rem;
  -webkit-border-radius: .3125rem;
  -moz-border-radius: .3125rem;
  border-radius: .3125rem;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
  font-size: .75em;
  font-weight: 600;
  opacity: 1;
  text-align: left;
  position: relative;
  margin-bottom: .3125rem;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.2
}

.notifications-container .notification:last-of-type {
  margin-bottom: 0
}

@media only screen and (min-width:760px) {
  .notifications-container .notification {
    font-size: 1em;
    padding: .9375rem;
    width: 16.25rem
  }
}

.results-listing-container {
  width: 100%;
  -webkit-border-radius: .8rem;
  -moz-border-radius: .8rem;
  border-radius: .8rem;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  overflow: hidden;
  max-width: 88%;
  margin: auto;
  margin-top: 20px;
  background: #fff
}

@media only screen and (max-width:1250px) {
  .results-listing-container {
    max-width: 95%
  }
}

@media only screen and (max-width:1100px) {
  .results-listing-container {
    max-width: 100%
  }
}

@media only screen and (max-width:900px) {
  .results-listing-container {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: none
  }
}

.results-listing-container h3 {
  line-height: 1.3;
  text-align: left
}

@media only screen and (max-width:600px) {
  .results-listing-container .col {
    width: 100%
  }
}

.results-listing-container .col:first-child {
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media only screen and (max-width:1100px) {
  .results-listing-container .col:first-child {
    width: 26%
  }
}

@media only screen and (max-width:900px) {
  .results-listing-container .col:first-child {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
  }
}

.results-listing-container .col:first-child h3 {
  margin: 0
}

.results-listing-container .col:first-child img {
  margin-right: 1rem
}

@media only screen and (max-width:1250px) {
  .results-listing-container .col:first-child img {
    margin-right: 1rem
  }
}

.results-listing-container .col.numbers-col {
  position: relative;
  width: 45%
}

@media only screen and (max-width:900px) {
  .results-listing-container .col.numbers-col {
    margin: 1.6rem 0;
    width: auto
  }
}

@media only screen and (max-width:900px) {
  .results-listing-container .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 0
  }
}

.results-listing-container .results-list-item {
  padding: 1.2rem 3rem;
  padding-bottom: 1.5rem;
  background-color: #fff;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: solid 1px #eaeaea;
  margin: auto
}

.results-listing-container .results-list-item a:hover {
  opacity: 1
}

@media only screen and (max-width:1100px) {
  .results-listing-container .results-list-item {
    padding: 3rem 1.5rem
  }
}

@media only screen and (max-width:900px) {
  .results-listing-container .results-list-item {
    width: 48.5%;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    border-radius: .5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 285px
  }
}

@media only screen and (max-width:600px) {
  .results-listing-container .results-list-item {
    width: 100%;
    padding: 2rem 1.5rem;
    max-width: 29rem;
    margin: auto;
    margin-bottom: 20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    height: auto
  }
}

.results-listing-container .results-list-item:last-child {
  border-bottom: none
}

.results-listing-container .results-list-item .lotto-title h3 {
  color: #2c68a5
}

@media only screen and (max-width:900px) {
  .results-listing-container .results-list-item .lotto-title {
    text-align: left
  }

  .results-listing-container .results-list-item .lotto-title p {
    margin: 0
  }
}

.results-listing-container .results-list-item .lottery-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

@media only screen and (max-width:600px) {
  .results-listing-container .results-list-item .lottery-numbers {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number {
  width: 2.6rem;
  height: 2.6rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 .3rem
}

@media only screen and (max-width:900px) {
  .results-listing-container .results-list-item .lottery-numbers .lottery-number {
    width: 2rem;
    height: 2rem;
    font-size: 14px;
    margin: 0 .2rem
  }
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.orange {
  background-color: #e25f2c
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.blue {
  background-color: #38a4d0
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.grey {
  background-color: #4c4d4a
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.superstar {
  background-color: #38a4d0
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.reintegro {
  background-color: #38a4d0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2
}

.results-listing-container .results-list-item .lottery-numbers .lottery-number.bonus {
  background-color: #4c4d4a;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.results-listing-container .results-list-item .multiplier,
.results-listing-container .results-list-item .joker {
  position: absolute;
  left: .3rem;
  bottom: -22px
}

.results-listing-container .results-list-item .multiplier.hassupplement,
.results-listing-container .results-list-item .joker.hassupplement {
  left: 6rem
}

@media only screen and (max-width:900px) {

  .results-listing-container .results-list-item .multiplier,
  .results-listing-container .results-list-item .joker {
    position: relative;
    bottom: inherit;
    left: inherit;
    text-align: center
  }

  .results-listing-container .results-list-item .multiplier.hassupplement,
  .results-listing-container .results-list-item .joker.hassupplement {
    left: 0
  }
}

.results-listing-container .results-list-item .multiplier p,
.results-listing-container .results-list-item .joker p {
  margin-bottom: 0;
  font-size: 12px;
  color: #2c68a5
}

.results-listing-container .results-list-item .result-content {
  background-color: #fff;
  text-align: left;
  font-weight: 500;
  line-height: 21px
}

.results-listing-container .results-list-item .result-content p {
  color: #555
}

.results-listing-container .results-list-item .result-content p:first-child {
  margin-top: 0
}

.results-listing-container .results-list-item .result-content p:last-child {
  margin-bottom: 0
}

.results-listing-container .results-list-item .result-content a {
  color: #f66c1c
}

.results-listing-container .results-list-item .date {
  color: #2c68a5;
  font-size: 15px
}

@media only screen and (max-width:900px) {
  .results-listing-container .results-list-item .date.full {
    display: none
  }
}

.results-listing-container .results-list-item .date.res {
  text-align: left;
  margin: 5px 0 0;
  font-weight: 600;
  color: #7a7b78
}

.results-listing-container.home-page .results-list-item img.cta {
  display: none
}

@media only screen and (max-width:900px) {
  .results-listing-container.home-page .results-list-item {
    padding: 1rem !important;
    position: relative
  }

  .results-listing-container.home-page .results-list-item .col {
    width: 100% !important;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .results-listing-container.home-page .results-list-item div.col img {
    width: 25px;
    height: 25px
  }

  .results-listing-container.home-page .results-list-item img.cta {
    display: block;
    margin: 0;
    background-color: #2c68a5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: .25rem;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
  }

  .results-listing-container.home-page .results-list-item .numbers-col {
    margin: 1rem 0 0
  }

  .results-listing-container.home-page .results-list-item .numbers-col .lottery-numbers {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

@media only screen and (max-width:600px) {
  .results-listing-container.home-page .results-list-item {
    position: relative
  }

  .results-listing-container.home-page .results-list-item div.col {
    display: none
  }

  .results-listing-container.home-page .results-list-item img.cta {
    display: block !important;
    text-align: right;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 24px;
    height: 24px;
    margin-left: .25rem
  }
}

@media only screen and (max-width:900px) {
  .result-content-container {
    width: 100%
  }

  .result-content-container .results-list-item {
    width: 100%;
    margin-bottom: 10px
  }
}

.results-disclaimer {
  max-width: 85%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: left;
  padding: 0 20px
}

@media only screen and (max-width:600px) {
  .results-disclaimer {
    width: 100%;
    max-width: 26rem;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 0
  }
}

.results-disclaimer p {
  opacity: .5;
  color: #fff;
  font-size: 11px;
  letter-spacing: .2px;
  line-height: 1.8
}

.results-disclaimer p:first-child {
  margin-top: 0
}

.results-disclaimer.blue p {
  opacity: .5;
  color: #4a4a4a
}

.result-listing {
  padding: 1.875rem 0;
  background-color: #f8f8f8
}

.result-listing h1 {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  color: #fff
}

.result-listing h1 svg {
  margin-right: .9375rem
}

.result-listing h2 {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700
}

@media only screen and (max-width:600px) {
  .result-listing h2 {
    font-size: 1.3em
  }
}

.result-listing h2 svg {
  margin-right: .9375rem
}

.result-listing p {
  color: #4c4d4a;
  font-weight: 600
}

.result-listing.bg-blue-gradient h2,
.result-listing.bg-blue-gradient p {
  color: #fff
}

@media only screen and (max-width:750px) {
  .result-listing.bg-blue-gradient {
    display: block
  }
}

@media only screen and (min-width:760px) {
  .result-listing {
    padding: 3.75rem 0 5rem
  }

  .result-listing.bg-blue-gradient h2 {
    padding-top: 1.875rem
  }
}

.result-listing .results-actions {
  max-width: 88%;
  padding: 1rem 3rem
}

.result-listing .results-actions p {
  display: block;
  width: 100%;
  margin: 5px 0 0 !important;
  font-weight: 500
}

@media only screen and (max-width:400px) {
  .result-listing.result-listing-section>.container {
    width: 100% !important
  }
}

.result-listing.result-listing-section .results-listing-container {
  max-width: 100%
}

.result-listing.result-listing-section .results-list-item {
  padding: 1.2rem 2rem
}

.result-listing.result-listing-section .results-list-item:nth-child(odd) {
  background: #eaf3fc
}

.result-listing.result-listing-section h2 {
  font-size: 2rem;
  color: #2c68a5
}

.result-listing.result-listing-section p {
  margin: 5px auto
}

.result-listing.result-listing-section .date.res {
  font-size: 1.175em;
  color: #4c4d4a
}

.result-listing.result-listing-section .col:first-child {
  width: 30%
}

.result-listing.result-listing-section .col.numbers-col {
  width: 50%
}

.result-listing.result-listing-section .view-more {
  font-size: 1.175rem;
  color: #2c68a5
}

.result-listing.result-listing-section .view-more img {
  position: relative;
  width: 30px;
  height: 30px;
  top: 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid #2c68a5;
  margin-left: 1.5rem
}

.lottery-contain-four {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 37.5rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 37.5rem;
  flex: 0 0 37.5rem;
  padding: 4px 0
}

.lottery-contain-four .lottery-card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48.5%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 48.5%;
  flex: 0 0 48.5%;
  margin: 0 0 .9375rem;
  min-width: 48.5%;
  max-width: 48.5%;
  font-size: 14px;
  padding: 1.25rem .9375rem !important
}

.lottery-contain-four .lottery-card:nth-of-type(3) {
  margin-bottom: 0
}

.lottery-contain-four.lottery-contains-four--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 auto !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important
}

.lottery-contain-four.lottery-contains-four--column .lottery-card {
  width: 100%;
  max-width: 260px
}

.lottery-play-listing {
  background-image: -webkit-gradient(linear, left top, right top, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
  background-image: -webkit-linear-gradient(left, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  background-image: linear-gradient(to right, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
  padding: .9375rem 0 2.5rem
}

.lottery-play-listing .lottery-play--nav {
  margin-bottom: 1.25rem
}

.lottery-play-listing .lottery-play--nav .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 0 .9375rem;
  max-width: 100%;
  width: 100%
}

.lottery-play-listing .lottery-play--nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0
}

.lottery-play-listing .read-more {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.1875rem
}

.lottery-play-listing .read-more span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: .625rem;
  margin-top: .125rem
}

.lottery-play-listing .read-more span svg {
  height: .75rem
}

.lottery-contain-four {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: .625rem 0
}

.lottery-contain-four .lottery-card {
  margin-bottom: .625rem;
  padding: 1.5625rem 1.875rem
}

.lottery-contain-four .lottery-card .lottery-icon {
  height: 2.5rem;
  width: 2.5rem
}

.lottery-contain-four .lottery-card h3 {
  margin: .9375rem 0 0
}

.lottery-contain-four .lottery-card:last-of-type {
  margin-bottom: 0
}

.tab-lottery-play {
  margin: 0 !important
}

.tab-lottery-play.active {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.tab-lottery-play .lottery-card-info {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  min-width: 100%
}

.tab-lottery-play .lottery-card-info img {
  width: 8.125rem;
  height: auto
}

.tab-lottery-play .lottery-card-info * {
  color: #fff
}

.tab-lottery-play .lottery-card-info p {
  font-size: .9375em;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto
}

.tab-lottery-play .flipper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.tab-lottery-play .lottery-card-flip {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1
}

.tab-lottery-play .lottery-card-flip img {
  width: 3.75rem;
  height: auto;
  margin-bottom: .625rem
}

@media only screen and (min-width:415px) {
  .lottery-play-listing .tabs-container .lottery-card {
    width: 25rem !important
  }

  .lottery-play-listing .lottery-play--nav ul li {
    font-size: .9375em
  }
}

@media only screen and (min-width:760px) {
  .tab-lottery-play .lottery-card-flip {
    margin: 0 .5rem
  }

  .tab-lottery-play .lottery-card-flip .lottery-card-front {
    width: 100%
  }

  .tab-lottery-play {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .tab-lottery-play .lottery-card {
    width: 37.5rem !important
  }
}

@media only screen and (min-width:870px) {
  .tab-lottery-play .lottery-card-info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 55%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%
  }

  .lottery-contains-four.lottery-contains-four--column {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%
  }
}

@media only screen and (min-width:1020px) {
  .lottery-play-listing {
    padding-bottom: 3.125rem
  }

  .tab-lottery-play {
    margin: 1.125rem 0 2.1875rem
  }

  .tab-lottery-play .lottery-card-info,
  .tab-lottery-play .lottery-contain-four,
  .tab-lottery-play .lottery-card-flip {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto !important;
    min-width: 0;
    margin-right: 10px
  }

  .tab-lottery-play .lottery-card-info {
    padding-top: 0;
    padding-right: 0
  }

  .tab-lottery-play .lottery-card-info img {
    width: 6.25rem
  }

  .tab-lottery-play .lottery-card-info p {
    text-align: left;
    line-height: 1.6
  }

  .tab-lottery-play .lottery-contain-four {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -moz-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    margin: 0 10px 0 0
  }

  .tab-lottery-play .lottery-contain-four .lottery-card {
    padding: 1.5625rem .625rem;
    max-width: 210px
  }

  .tab-lottery-play .lottery-card-flip {
    margin: 0;
    -webkit-box-flex: 1.2;
    -webkit-flex: 1.2;
    -moz-box-flex: 1.2;
    -ms-flex: 1.2;
    flex: 1.2;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    min-width: 260px;
    margin-right: 7.5px
  }

  .tab-lottery-play .lottery-card-flip:last-of-type {
    margin-right: 0
  }

  .tab-lottery-play .lottery-card-flip .lottery-card-back p {
    font-size: .875em;
    line-height: 1.6
  }
}

@media only screen and (min-width:1100px) {
  .tabs-container .lottery-card-flip {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }
}

@media only screen and (min-width:1200px) {
  .lottery-contain-four .lottery-card {
    padding: 1.5625rem 2.5rem
  }
}

@media only screen and (max-width:768px) {
  .lottery-contain-four {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .lottery-contain-four .lottery-card:nth-of-type(3) {
    margin-bottom: .625rem
  }
}

.archive-faqs {
  padding: 1.25rem 0 3.75rem
}

.archive-faqs h1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  color: #e25f2c;
  font-size: 2em;
  margin: 0 0 1.875rem
}

.archive-faqs .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.archive-faqs .container>* {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  text-align: left;
  margin-top: 0
}

.archive-faqs .container>p {
  font-weight: 600;
  font-size: 1.25em
}

.archive-faqs .container>p:last-of-type {
  margin-bottom: 1.875rem
}

.archive-faqs .archive-faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .9375rem 1.25rem;
  min-width: auto !important;
  overflow: visible;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100% !important;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
  margin: 0 4% 1.25rem 0;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.archive-faqs .archive-faq:nth-of-type(2n+2) {
  margin-right: 0
}

.archive-faqs .archive-faq svg,
.archive-faqs .archive-faq img {
  max-height: 2.5rem;
  height: auto;
  width: 2.5rem;
  overflow: visible;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-bottom: .625rem
}

.archive-faqs .archive-faq .faq-content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  cursor: pointer;
  text-align: center
}

.archive-faqs .archive-faq .faq-content h3 {
  font-weight: 600;
  margin: 0 0 .3125rem;
  color: #a2a2a2;
  font-size: 1.125em;
  line-height: 1;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.archive-faqs .archive-faq .faq-content p {
  color: #aaa;
  font-size: 1em;
  margin: 0
}

.archive-faqs .archive-faq .faq-content .pdf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: .3125rem;
  font-size: .875em;
  opacity: .7
}

.archive-faqs .archive-faq .faq-content .pdf svg {
  width: .9375rem;
  margin-right: .3125rem;
  margin-bottom: 0
}

.archive-faqs .archive-faq:hover {
  opacity: 1;
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02)
}

.archive-faqs .archive-faq:hover h3 {
  color: #e25f2c
}

.archive-faqs .archive-faq .st0 {
  fill: none;
  stroke: #7a7b78 !important
}

.archive-faqs .archive-faq .st1 {
  fill: none;
  stroke: #7a7b78
}

.archive-faqs .archive-faq .st2 {
  fill: none;
  stroke: #7a7b78
}

@media only screen and (min-width:780px) {
  .archive-faqs h1 {
    text-align: left;
    font-size: 2.625em;
    margin: 1.875rem 0 3.125rem
  }
}

@media only screen and (min-width:900px) {
  .archive-faqs .archive-faq {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc(96%/3);
    -moz-box-flex: 0;
    -ms-flex: 0 0 calc(96%/3);
    flex: 0 0 calc(96%/3);
    max-width: -webkit-calc(96%/3) !important;
    max-width: calc(96%/3) !important;
    margin: 0 2% 1.5625rem 0 !important;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5625rem 1.25rem
  }

  .archive-faqs .archive-faq svg,
  .archive-faqs .archive-faq img {
    width: 2.5rem;
    max-height: 2.5rem;
    margin-bottom: 0
  }

  .archive-faqs .archive-faq img {
    width: 3.75rem;
    max-height: 3.75rem
  }

  .archive-faqs .archive-faq .faq-content {
    text-align: left;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 1.5625rem
  }

  .archive-faqs .archive-faq .faq-content h3 {
    font-size: 1.5625em
  }

  .archive-faqs .archive-faq .faq-content .pdf {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .archive-faqs .archive-faq:nth-of-type(3n+3) {
    margin-right: 0 !important
  }
}

#banner-faq .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/landing/faq-banner.jpg") center right no-repeat
}

#banner-faq .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #banner-faq .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #banner-faq .container {
    background: url("../images/landing/faq-banner-mobile.jpg") center right no-repeat
  }

  #banner-faq .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

.faq-page h2 {
  color: #e25f2c;
  text-align: left
}

.faq-page .select-dropdown {
  display: none
}

.faq-page main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 3rem 0 1rem
}

.faq-page main nav {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -moz-box-flex: 3;
  -ms-flex: 3;
  flex: 3
}

.faq-page main nav h2 {
  margin: 0
}

.faq-page main nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: -webkit-sticky;
  position: sticky;
  top: 8rem
}

.faq-page main nav ul.faq-nav {
  display: block
}

.faq-page main nav ul.faq-nav-mobile {
  display: none
}

@media only screen and (max-width:1280px) {
  .faq-page main nav ul {
    overflow-y: auto;
    max-height: 354px
  }
}

.faq-page main nav ul li {
  margin: 1rem 0
}

.faq-page main nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 0 0 0 .5rem;
  color: #7a7b78;
  opacity: 1;
  border-left: 3px solid transparent;
  font-weight: 600
}

.faq-page main nav ul li a:hover,
.faq-page main nav ul li a.active {
  color: #2c68a5;
  border-left: 3px solid #e25f2c
}

.faq-page main .container {
  -webkit-box-flex: 7;
  -webkit-flex: 7;
  -moz-box-flex: 7;
  -ms-flex: 7;
  flex: 7
}

.faq-page main .container>div:before {
  content: "";
  display: block;
  height: 120px;
  margin: -120px 0 0
}

.faq-page main .container section {
  max-width: initial;
  padding: 2rem !important;
  margin: 0 !important;
  background-color: #fff;
  -webkit-border-radius: .625rem;
  -moz-border-radius: .625rem;
  border-radius: .625rem;
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
  width: 100%
}

.faq-page main .container section:nth-child(n+1) {
  margin: 2rem 0 !important
}

.faq-page main .container section h3 {
  color: #2c68a5;
  margin: 0;
  text-align: left
}

.faq-page main .container section ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0
}

.faq-page main .container section ul li {
  margin: 0;
  border-bottom: 1px solid #e3e3e3
}

.faq-page main .container section ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin: 0;
  color: #7a7b78;
  cursor: pointer;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: 500
}

.faq-page main .container section ul li a.results-expand:after {
  display: none
}

.faq-page main .container section ul li a.results-expand:before {
  content: '';
  background-image: url(../icons/faq-plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  height: 1.2rem;
  width: 1.2rem;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  margin-right: 1.25rem;
  width: 5%
}

.faq-page main .container section ul li a.active h4 {
  color: #2c68a5
}

.faq-page main .container section ul li a.active:before {
  background-image: url(../icons/faq-minus.svg)
}

.faq-page main .container section ul li h4 {
  text-align: left;
  margin: 1rem 0;
  padding: .5rem 0;
  line-height: 1.2;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

.faq-page main .container section ul li .results-content {
  background: #eee;
  text-align: left;
  margin: 0
}

.faq-page main .container section ul li .results-content ol {
  margin-bottom: .5rem
}

.faq-page main .container section ul li .results-content ol li {
  color: #7a7b78;
  border: 0
}

.faq-page main .container section ul li .results-content ol li a {
  display: initial;
  color: #e25f2c;
  padding-left: 0
}

.faq-page main .container section ul li .results-content ul {
  -webkit-padding-start: 40px;
  -moz-padding-start: 40px;
  padding-inline-start: 40px;
  list-style: disc
}

.faq-page main .container section ul li .results-content ul li {
  color: #7a7b78;
  border: 0
}

.faq-page main .container section ul li .results-content h4 {
  color: #2c68a5;
  margin: 0;
  padding: .5rem 1rem 0
}

.faq-page main .container section ul li .results-content h5 {
  margin: 0;
  padding: .5rem 1rem 0
}

.faq-page main .container section ul li .results-content p {
  padding: 0 1rem;
  font-size: 1rem;
  font-family: "Open sans"
}

.faq-page main .container section ul li .results-content p a {
  display: initial;
  color: #e25f2c;
  padding-left: 0
}

.faq-page main .container section ul li .results-content p img {
  max-width: 100%
}

.faq-page section.intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.faq-page section.intro p {
  text-align: left;
  margin: 0
}

.faq-page section.intro p.h2 {
  color: #e25f2c;
  text-align: left;
  font-size: 1.5em;
  font-weight: 600;
  margin: 1rem 0
}

.faq-page section.intro>div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.faq-page section.intro>div>.button {
  margin-top: 4rem;
  z-index: 99
}

@media only screen and (max-width:768px) {
  .faq-page .select-dropdown {
    display: block
  }

  .faq-page main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem 0
  }

  .faq-page main nav {
    display: block
  }

  .faq-page main nav h2 {
    margin: 1rem auto
  }

  .faq-page main nav ul.faq-nav {
    display: none
  }

  .faq-page main nav ul.faq-nav-mobile {
    display: block
  }

  .faq-page main nav ul.select-options {
    top: 0;
    margin: auto
  }

  .faq-page main nav ul.select-options li {
    margin: auto
  }

  .faq-page main .container {
    width: 100%;
    max-width: 100%
  }

  .faq-page main .container section {
    padding: 1rem !important
  }

  .faq-page main .container section .results-expand:before {
    display: inline-table
  }

  .faq-page main .container>div:before {
    content: "";
    display: block;
    height: 210px;
    margin: -210px 0 0
  }

  .faq-page section.intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .faq-page section.intro>div>.button {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 1rem auto auto
  }
}

@media only screen and (max-width:600px) {
  .faq-page main .container section ul li a.results-expand:before {
    width: 10%
  }
}

@media only screen and (max-width:700px) {
  .section.thick.about-betting-section {
    padding-top: 1.5rem
  }
}

.banner-content--container {
  position: absolute;
  width: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 2rem
}

.banner-content--container .banner-list {
  max-width: 75rem
}

@media only screen and (max-width:1100px) {
  .banner-content--container.desktop {
    display: none
  }
}

.banner-content--container.mobile {
  display: none
}

@media only screen and (max-width:1100px) {
  .banner-content--container.mobile {
    display: block;
    position: relative;
    padding: 0
  }
}

.banner-list {
  margin: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 2.5rem
}

.banner-list .list-items-options {
  width: 100%
}

.banner-list .list-items-options .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.banner-list .list-items-options .row img {
  max-width: 1.6rem
}

.banner-list .list-items-options .row .col {
  padding: 1rem 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.banner-list .list-items-options .row .col.orange {
  background-color: #f66c1c;
  color: #fff;
  text-align: center
}

.banner-list .list-items-options .row .col.orange p {
  color: #fff;
  text-transform: uppercase;
  margin: 0
}

@media only screen and (max-width:500px) {
  .banner-list .list-items-options .row .col.orange p {
    font-size: 9px
  }
}

.banner-list .list-items-options .row .col.dark {
  background-color: #2f2b29;
  color: #fff;
  text-align: center
}

.banner-list .list-items-options .row .col.dark p {
  color: #fff;
  text-transform: uppercase;
  margin: 0
}

@media only screen and (max-width:500px) {
  .banner-list .list-items-options .row .col.dark p {
    font-size: 9px
  }
}

.banner-list .list-items-options .row .col:nth-child(1) {
  width: 66.6666%
}

@media only screen and (max-width:500px) {
  .banner-list .list-items-options .row .col:nth-child(1) {
    width: 50%
  }
}

@media only screen and (max-width:400px) {
  .banner-list .list-items-options .row .col:nth-child(1) {
    width: 47%
  }
}

.banner-list .list-items-options .row .col:nth-child(2),
.banner-list .list-items-options .row .col:nth-child(3) {
  width: 33.3333%
}

.banner-list .list-items-options .row .border {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-left: solid 1px #cfcfcf;
  border-right: solid 1px #cfcfcf
}

.banner-list .list-items-options .row .col p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0
}

.banner-list .list-items-options .row .col p strong {
  font-weight: 600;
  margin-bottom: .3rem;
  display: block
}

.banner-list .list-items-options .row.two {
  background-color: #fff
}

.banner-list .list-items-options .row.three {
  background-color: #ececec
}

.banner-list .list-items-options .row.four {
  background-color: #f2f2f2
}

.banner-list .list-items-options .row .icon-container {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.about-betting-section {
  padding: 3rem 0;
  text-align: left
}

@media only screen and (max-width:700px) {
  .about-betting-section {
    padding: 3rem 0
  }
}

.about-betting-section h3 {
  font-size: 26px;
  color: #f66c1c
}

@media only screen and (max-width:700px) {
  .about-betting-section h3 {
    font-size: 23px
  }
}

.about-betting-section p {
  font-size: 18px;
  color: #000;
  letter-spacing: 1px
}

@media only screen and (max-width:700px) {
  .about-betting-section p {
    font-size: 16px
  }
}

.about-betting-section .top-content {
  padding-left: 5rem
}

.about-betting-section .top-content .icon-content {
  top: 0
}

@media only screen and (max-width:900px) {
  .about-betting-section .top-content {
    padding-left: 3.2rem
  }

  .about-betting-section .top-content .icon-content {
    top: .1rem;
    max-width: 1.8rem;
    left: .2rem
  }
}

.about-betting-section .icon-content {
  position: absolute;
  left: .8rem;
  top: 1rem;
  max-width: 3rem;
  width: 100%;
  height: auto
}

@media only screen and (max-width:600px) {
  .about-betting-section .icon-content {
    display: none
  }
}

@media only screen and (max-width:900px) {
  .about-betting-section .icon-content {
    left: 0;
    top: 1.7rem;
    max-width: 2rem
  }
}

@media only screen and (max-width:700px) {
  .about-betting-section .icon-content {
    left: 0;
    top: 1.3rem;
    max-width: 2rem
  }
}

.about-betting-section .middle-content {
  padding: 3rem 0
}

@media only screen and (max-width:700px) {
  .about-betting-section .middle-content {
    padding: 1rem 0
  }
}

.about-betting-section .middle-content .two-col .col:first-child {
  padding-left: 5rem;
  position: relative
}

@media only screen and (max-width:900px) {
  .about-betting-section .middle-content .two-col .col:first-child {
    padding-left: 3rem
  }
}

.about-betting-section .middle-content .two-col .col:last-child {
  padding-left: 5rem;
  position: relative
}

@media only screen and (max-width:900px) {
  .about-betting-section .middle-content .two-col .col:last-child {
    padding-left: 3rem
  }
}

.about-betting-section .middle-content .two-col .col:last-child .badge-wrap {
  position: relative;
  z-index: 10
}

.about-betting-section .middle-content .two-col .col:last-child p {
  padding-right: 7.5rem
}

@media only screen and (max-width:700px) {
  .about-betting-section .middle-content .two-col .col:last-child p {
    padding-right: 0
  }
}

.about-betting-section .middle-content .two-col .col:last-child .content-badge {
  position: absolute;
  z-index: 1;
  max-width: 9rem;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-24%);
  -moz-transform: translateY(-24%);
  -ms-transform: translateY(-24%);
  transform: translateY(-24%)
}

@media only screen and (max-width:700px) {
  .about-betting-section .middle-content .two-col .col:last-child .content-badge {
    max-width: 6rem;
    right: -10px;
    top: 90%;
    -webkit-transform: translateY(-24%);
    -moz-transform: translateY(-24%);
    -ms-transform: translateY(-24%);
    transform: translateY(-24%)
  }
}

.about-betting-section .bottom-content .two-col .col:first-child {
  padding-left: 5rem;
  position: relative
}

@media only screen and (max-width:900px) {
  .about-betting-section .bottom-content .two-col .col:first-child {
    padding-left: 3rem
  }
}

.about-betting-section .bottom-content .two-col .col:last-child {
  padding-left: 5rem;
  position: relative
}

@media only screen and (max-width:900px) {
  .about-betting-section .bottom-content .two-col .col:last-child {
    padding-left: 3rem
  }
}

.about-betting-section .two-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.about-betting-section .two-col .col {
  width: 48%;
  padding-left: 5rem
}

@media only screen and (max-width:900px) {
  .about-betting-section .two-col .col {
    width: 100%;
    padding-left: 3rem
  }

  .about-betting-section .two-col .col:first-child {
    margin-bottom: 4rem
  }
}

@media only screen and (max-width:700px) {
  .about-betting-section .two-col .col {
    margin-bottom: 1rem
  }

  .about-betting-section .two-col .col:first-child {
    margin-bottom: 1rem
  }
}

.about-betting-section .two-col .col ul {
  padding-left: 1.5rem
}

.about-betting-section .two-col .col ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
  position: relative
}

.about-betting-section .two-col .col ul li a {
  font-size: 18px;
  color: #000
}

.about-betting-section .two-col .col ul li a:hover {
  opacity: 1;
  text-decoration: underline
}

.about-betting-section .two-col .col ul li a img {
  width: .7rem;
  position: absolute;
  left: -1.5rem;
  top: .35rem
}

.about-betting-blue {
  padding: 6rem 0;
  background-color: #037bdb
}

@media only screen and (max-width:1280px) {
  .about-betting-blue {
    padding: 3rem 0;
    padding-top: 4rem
  }
}

.about-betting-blue .container {
  max-width: 78.75rem
}

.about-betting-blue .gradient_content {
  background: -webkit-linear-gradient(#f6711f, #ffa954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  margin: 0
}

@media only screen and (max-width:1080px) {
  .about-betting-blue .gradient_content {
    font-size: 45px
  }
}

.about-betting-blue .two-col.wide-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.about-betting-blue .two-col.wide-left .col.sml-col {
  width: 25%;
  position: relative;
  padding-top: 3.5rem
}

@media only screen and (max-width:1280px) {
  .about-betting-blue .two-col.wide-left .col.sml-col {
    width: 100%;
    position: relative;
    padding-top: 0;
    padding-bottom: 1rem
  }
}

.about-betting-blue .two-col.wide-left .col.sml-col .blue-icon {
  max-width: 3.3rem;
  position: absolute;
  left: 0;
  top: 2rem
}

@media only screen and (max-width:1280px) {
  .about-betting-blue .two-col.wide-left .col.sml-col .blue-icon {
    max-width: 3.3rem;
    position: absolute;
    left: 0;
    top: -1rem
  }
}

.about-betting-blue .two-col.wide-left .col.sml-col .left-content {
  padding-left: 5rem;
  color: #fff;
  text-align: left
}

.about-betting-blue .two-col.wide-left .col.sml-col h4 {
  color: #fff;
  margin: 0;
  font-size: 26px
}

.about-betting-blue .two-col.wide-left .col.sml-col p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px
}

.about-betting-blue .two-col.wide-left .col:last-child {
  width: 70%
}

@media only screen and (max-width:1280px) {
  .about-betting-blue .two-col.wide-left .col:last-child {
    width: 100%
  }
}

.about-betting-blue .two-col.wide-left .col:last-child .three-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.about-betting-blue .two-col.wide-left .col:last-child .three-col .col {
  width: 33.33333%;
  padding: 0 .4rem
}

@media only screen and (max-width:700px) {
  .about-betting-blue .two-col.wide-left .col:last-child .three-col .col {
    width: 100%;
    padding: 1rem 0
  }
}

.about-betting-blue .two-col.wide-left .col:last-child .three-col .col .white-box {
  padding: 2rem 1rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5)
}

@media only screen and (max-width:1280px) {
  .about-betting-blue .two-col.wide-left .col:last-child .three-col .col .white-box {
    padding: 2.5rem 3rem
  }
}

@media only screen and (max-width:1080px) {
  .about-betting-blue .two-col.wide-left .col:last-child .three-col .col .white-box {
    padding: 2.5rem 1.5rem;
    height: 220px
  }
}

.about-betting-blue .two-col.wide-left .col:last-child .three-col .col .white-box p {
  margin-bottom: 0
}

.top-content {
  position: relative
}

@media only screen and (max-width:600px) {
  .top-content {
    padding-left: 0 !important
  }
}

@media only screen and (max-width:700px) {
  .top-content {
    padding-left: 3.1rem
  }
}

.top-content img {
  top: -.8rem;
  width: 2.5rem;
  left: 1.2rem
}

@media only screen and (max-width:700px) {
  .top-content img {
    top: -.4rem;
    width: 1.8rem;
    left: .4rem
  }
}

.landing-page {
  text-align: left
}

.landing-page .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.6875rem 0
}

.landing-page .container h1 {
  margin-top: 0;
  color: #000
}

.landing-page .container p {
  color: #000
}

.landing-page .container .landing-left .landing-lotteries {
  margin-top: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.landing-page .container .landing-left .landing-lotteries .landing-lottery {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.landing-page .container .landing-left .landing-lotteries .landing-lottery:first-of-type {
  margin-right: .3125rem
}

.landing-page .container .landing-left .landing-lotteries .landing-lottery:last-of-type {
  margin-left: .3125rem
}

.landing-page .container .landing-left.official-mega-millions p a {
  display: block
}

.landing-page .container .landing-left.official-mega-millions ol li {
  color: #000
}

.landing-page .container .landing-left.official-mega-millions img.us-lotto-img {
  max-width: 760px
}

.landing-page .container .landing-left.official-mega-millions table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  border-spacing: 2px
}

.landing-page .container .landing-left.official-mega-millions table tr {
  border: 1px solid #ddd;
  padding: .35em
}

.landing-page .container .landing-left.official-mega-millions table th,
.landing-page .container .landing-left.official-mega-millions table td {
  padding: .625em;
  text-align: center;
  color: #000
}

.landing-page .container .landing-left.official-mega-millions table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #333 !important;
  color: #fff
}

.landing-page .container .landing-left.official-mega-millions table tr {
  background: #fff
}

.landing-page .container .landing-left.official-mega-millions table tr:nth-child(2n) {
  background: #eee;
  color: #000
}

.landing-page .container .landing-left.official-mega-millions table.division {
  border: 1px solid #aaa;
  background-color: #aaa
}

.landing-page .container .landing-left.official-mega-millions table.division tr:nth-child(2) {
  background: #ffd700;
  padding: 10px !important;
  color: #000
}

.landing-page .container .landing-left.official-mega-millions table.megaplier {
  border: 1px solid #aaa;
  background-color: #eee
}

.landing-page .container .landing-left.official-mega-millions table.megaplier tr:nth-child(1) {
  background: #000
}

.landing-page .container .landing-left.official-mega-millions table.megaplier tr:nth-child(1) td {
  color: #fff;
  padding: 10px;
  font-weight: 700
}

@media only screen and (max-width:600px) {
  .landing-page .container .landing-left.official-mega-millions .table-responsive-container {
    overflow-x: auto
  }

  .landing-page .container .landing-left.official-mega-millions .table-responsive-container table {
    table-layout: auto
  }
}

.landing-page .container .landing-left.official-mega-millions .megaplier td:nth-child(2) {
  background-color: #cc9
}

.landing-page .container .landing-left.official-mega-millions .megaplier td:nth-child(3) {
  background-color: #9c9
}

.landing-page .container .landing-left.official-mega-millions .megaplier td:nth-child(4) {
  background-color: #6c9
}

.landing-page .container .landing-left.official-mega-millions .megaplier td:nth-child(5) {
  background-color: #3c6
}

.landing-page .container .landing-left.official-mega-millions .megaplier td:nth-child(6) {
  background-color: #093
}

.landing-page .container .landing-left.official-mega-millions .lottery-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

@media only screen and (max-width:600px) {
  .landing-page .container .landing-left.official-mega-millions .lottery-numbers {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

.landing-page .container .landing-left.official-mega-millions .lottery-numbers .lottery-number {
  width: 2.6rem;
  height: 2.6rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 .3rem
}

@media only screen and (max-width:900px) {
  .landing-page .container .landing-left.official-mega-millions .lottery-numbers .lottery-number {
    width: 2rem;
    height: 2rem;
    font-size: 14px;
    margin: 0 .2rem
  }
}

.landing-page .container .landing-left.official-mega-millions .lottery-numbers .lottery-number.orange {
  background-color: #f66c1c
}

.landing-page .container .landing-left.official-mega-millions .lottery-numbers .lottery-number.blue {
  background-color: #1b90e8
}

.landing-page .container .landing-right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 22.5rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 22.5rem;
  flex: 0 0 22.5rem;
  width: 22.5rem;
  margin-left: 10%
}

.landing-page .container .landing-right.official-mega-millions {
  margin-left: 5%
}

@media only screen and (max-width:600px) {
  .landing-page .container .landing-right.official-mega-millions {
    margin-left: 0
  }
}

.landing-page .container .landing-right.official-mega-millions .landing-lottery span.jackpot {
  color: #e25f2c;
  font-size: 1rem;
  display: block;
  font-weight: 700
}

.landing-page .container .landing-side {
  margin-bottom: 3.125rem
}

.landing-page .container .landing-lottery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .625rem .9375rem;
  background-color: #f3f1f2;
  margin-bottom: .625rem;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s
}

.landing-page .container .landing-lottery * {
  cursor: pointer
}

.landing-page .container .landing-lottery:hover {
  opacity: .7
}

.landing-page .container .landing-lottery p {
  font-weight: 600
}

.landing-page .container .landing-lottery img {
  margin-right: .625rem;
  width: 3.4375rem
}

.landing-page.game-rules .container {
  padding: 2rem 0
}

.landing-page.game-rules .container section.banner-cta {
  padding: 0 6rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem
}

.landing-page.game-rules .container section.banner-cta.EURJ {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #6f50bd), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #6f50bd 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #6f50bd 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.EURO {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #005fe2), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #005fe2 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #005fe2 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.USPB,
.landing-page.game-rules .container section.banner-cta.USMM {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #ae002d), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #ae002d 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #ae002d 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.SENA {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #209d4d), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #209d4d 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #209d4d 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.UKLO {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #e52a30), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #e52a30 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #e52a30 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.IREL {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #07865b), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #07865b 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #07865b 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta.PRIM {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f94045), to(#1b5cbf));
  background: -webkit-linear-gradient(left, #f94045 25%, #1b5cbf 100%);
  background: linear-gradient(to right, #f94045 25%, #1b5cbf 100%)
}

.landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info h2 {
  color: #fff;
  line-height: 1.2
}

.landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info h2.lottery-jackpot {
  font-size: 1.8rem
}

.landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info p {
  color: #fff;
  margin: 0
}

.landing-page.game-rules .container section.banner-cta .lottery-time {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center
}

.landing-page.game-rules .container section.banner-cta .lottery-time .timer-countdown {
  font-size: 1.4rem;
  display: block
}

.landing-page.game-rules .container section.banner-cta .play-now a.button {
  font-size: 1.2em;
  min-width: 220px
}

@media only screen and (max-width:1024px) {
  .landing-page.game-rules .container section.banner-cta {
    padding: 1rem 3rem !important
  }
}

@media only screen and (max-width:768px) {
  .landing-page.game-rules .container section.banner-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%
  }

  .landing-page.game-rules .container section.banner-cta .lottery-info-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .landing-page.game-rules .container section.banner-cta .lottery-info-container img {
    max-width: 6rem
  }

  .landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info .lottery-name {
    font-size: 1.2rem !important;
    margin: auto
  }

  .landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info .lottery-jackpot {
    font-size: 1.7rem !important;
    margin: auto
  }

  .landing-page.game-rules .container section.banner-cta .lottery-info-container .lottery-info p {
    line-height: 1;
    font-size: .85rem;
    margin: auto
  }

  .landing-page.game-rules .container section.banner-cta .lottery-time {
    margin: .5rem auto
  }

  .landing-page.game-rules .container section.banner-cta .lottery-time .timer-countdown {
    font-size: 1.4rem !important
  }

  .landing-page.game-rules .container section.banner-cta .play-now a.button {
    margin-top: 1rem;
    font-size: 1em
  }
}

.landing-page.game-rules .container h2 {
  color: #2c68a5
}

.landing-page.game-rules .container a.download-pdf {
  color: #2c68a5;
  font-weight: 600
}

.landing-page.game-rules .container table {
  border: 1px solid #4c4d4a;
  width: 100%
}

.landing-page.game-rules .container table .circle {
  display: inline-block;
  height: 19px;
  width: 19px;
  margin: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle
}

.landing-page.game-rules .container table .circle.cyan {
  background: #6cccdc
}

.landing-page.game-rules .container table .circle.yellow {
  background: #f4ec1f
}

.landing-page.game-rules .container table tr th {
  background: #38a4d0;
  padding: 10px 0;
  color: #fff;
  text-align: center
}

.landing-page.game-rules .container table tr th.special {
  background: #2c68a5
}

.landing-page.game-rules .container table tr td {
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  border: 1px solid
}

.landing-page.game-rules .container table tr td.border-right-none {
  border-right: 1px solid #fff
}

.landing-page.game-rules .container ol li {
  color: #333 !important;
  padding: 5px 0
}

@media only screen and (max-width:860px) {
  .landing-page .container {
    display: block;
    padding: 3.125rem 0 0 0
  }

  .landing-page .container .landing-left .landing-lotteries {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .landing-page .container .landing-left .landing-lotteries .landing-lottery:first-of-type {
    margin-right: 0
  }

  .landing-page .container .landing-left .landing-lotteries .landing-lottery:last-of-type {
    margin-left: 0
  }

  .landing-page .container .landing-right {
    margin: 3.125rem 0 0;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
  }

  .landing-page .container .landing-right .landing-lottery {
    display: none
  }
}

.charity-page h2 {
  max-width: 100% !important;
  margin: 1rem auto
}

.charity-page .charity-banner {
  background: url(../images/charity/charity-banner-mobile.jpg) top center no-repeat;
  min-height: 260px;
  padding: 1rem
}

.charity-page .charity-banner .charity-logo {
  width: 200px;
  max-width: 100%
}

.charity-page .charity-banner .charity-cheque {
  width: 300px
}

.charity-page .charity-banner h1 {
  font-size: 1.2rem
}

.charity-page .charity-banner span {
  font-size: 1rem
}

.charity-page .charity-donations {
  padding: 2rem 1rem;
  background: #eee
}

.charity-page .charity-donations h2 {
  text-align: left !important
}

.charity-page .charity-donations h3 {
  font-size: 1.5rem
}

.charity-page .charity-donations ul {
  list-style: none;
  max-width: 1080px;
  padding: 1rem 0
}

.charity-page .charity-donations ul li {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border-left: 5px solid #2c68a5;
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
  width: 320px
}

.charity-page .charity-donations ul li>a {
  width: 290px
}

.charity-page .charity-donations ul li.hiddenStyle {
  display: none !important
}

.charity-page .charity-donations ul li>div {
  padding-left: 10px
}

.charity-page .charity-donations ul .charity-box {
  width: 225px
}

.charity-page .charity-donations ul .charity-desc {
  line-height: 1.2;
  font-weight: 600
}

.charity-page .charity-donations ul .italics {
  font-size: 90%;
  line-height: 2
}

.charity-page .charity-donations ul img {
  width: 50px;
  height: 50px;
  display: block;
  margin-right: 10px !important;
  margin-left: 0 !important
}

.charity-page .charity-promo {
  padding: 2rem
}

.charity-page .charity-promo h2 {
  max-width: 100%;
  text-align: center;
  margin: auto;
  font-weight: normal;
  font-size: 1.5rem;
  color: #4c4d4a
}

.charity-page .charity-grid {
  margin: 2rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

.charity-page .charity-grid a,
.charity-page .charity-grid img {
  width: 280px;
  height: 280px
}

@media(max-width:1200px) {
  .charity-page .container {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:900px) {
  .charity-page .container {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .charity-page .container {
    grid-template-columns: 1fr
  }
}

.charity-page .charity-funding {
  min-height: 300px;
  background: url(../images/charity/funding-banner-mobile.jpg) top center no-repeat;
  padding: 1rem
}

.charity-page .charity-funding h2 {
  font-size: 1.5rem
}

.charity-page .charity-funding>div {
  padding: 1rem;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: auto
}

.charity-page .charity-funding>div p {
  text-align: center;
  max-width: 100%;
  margin: auto auto 1rem;
  font-size: 1rem
}

.charity-page .shimmer {
  margin-top: 6px;
  background: #f6f7f8;
  -webkit-animation: shim infinite 1.2s linear;
  animation: shim infinite 1.2s linear
}

@-webkit-keyframes shim {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

@keyframes shim {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

.charity-page .shimmer_circle {
  width: 65px;
  height: 65px;
  -webkit-border-radius: 65px;
  -moz-border-radius: 65px;
  border-radius: 65px
}

.charity-page .shimmer_circle_heading .shimmer_heading {
  width: 90%;
  margin-left: 3%
}

.charity-page .shimmer_circle_heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.charity-page .shimmer_heading {
  width: 50%;
  height: 20px;
  margin-top: 6px
}

.charity-page .shimmer_small_para {
  height: 24px
}

@media screen and (min-width:600px) {
  .charity-page .charity-banner {
    min-height: 272px !important;
    max-width: 100%;
    background: url(../images/charity/charity-banner.jpg) top center no-repeat;
    padding: 1rem 0
  }

  .charity-page .charity-banner .charity-logo {
    width: 320px;
    height: 100px
  }

  .charity-page .charity-banner .charity-cheque {
    width: 550px;
    height: 200px
  }

  .charity-page .charity-banner h1 {
    font-size: 2rem
  }

  .charity-page .charity-banner span {
    font-size: 1.2rem
  }

  .charity-page .charity-donations {
    padding: 2rem
  }

  .charity-page .charity-donations h3 {
    font-size: 2rem
  }

  .charity-page .charity-donations ul {
    max-width: 1080px;
    padding: 1rem 0
  }

  .charity-page .charity-donations ul li {
    margin: 1rem 0
  }

  .charity-page .charity-donations ul li:nth-child(n+4) {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
  }

  .charity-page .charity-donations ul li.hiddenStyle {
    display: none !important
  }

  .charity-page .charity-donations ul img {
    width: 65px;
    height: 65px;
    display: block;
    margin-left: auto !important
  }

  .charity-page .charity-promo h2 {
    max-width: 60%;
    font-size: 2rem
  }

  .charity-page .charity-funding {
    min-height: 400px !important;
    background: url(../images/charity/funding-banner.jpg) top center no-repeat;
    padding: 1rem 2rem
  }

  .charity-page .charity-funding h2 {
    font-size: 2rem
  }

  .charity-page .charity-funding>div {
    padding: 2rem;
    margin-top: 2rem
  }

  .charity-page .charity-funding>div p {
    max-width: 75%;
    font-size: 1.5rem;
    margin: auto auto 2rem
  }
}

section.video-section {
  padding: 1.875rem 0;
  background: #f8f8f8 !important
}

section.video-section .container>h2 {
  color: #2c68a5;
  font-size: 24px;
  margin: 0 auto
}

section.video-section .container>h2 svg {
  max-width: 2.5rem;
  position: relative;
  margin-right: 15px;
  top: 10px
}

section.video-section .container h3 {
  color: #2c68a5;
  font-weight: 400;
  font-size: 18px;
  margin: .5rem auto 1rem
}

section.video-section .container .video-frame {
  padding: 1rem 0 0
}

section.video-section .container .video-frame iframe {
  width: 600px;
  height: 335px
}

@media only screen and (max-width:600px) {
  section.video-section .container {
    width: 100%
  }
}

.syndicates.banner .container {
  background: url("../images/lottery-banners/syndicates-zero.jpg") left no-repeat !important;
  background-size: cover !important
}

.syndicates.banner .headers {
  -webkit-box-flex: 70%;
  -webkit-flex: 70%;
  -moz-box-flex: 70%;
  -ms-flex: 70%;
  flex: 70%;
  max-width: 45rem
}

.syndicates.banner .headers h1 {
  font-weight: 600;
  max-width: 45rem;
  font-size: 4.5rem;
  line-height: 1;
  z-index: 1;
  position: relative
}

.syndicates.banner .headers h1 span {
  font-size: 2.2rem;
  font-weight: 800
}

.syndicates.banner .headers .tag-line {
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 45rem
}

.syndicates.banner .banner-draws {
  background: transparent;
  padding-right: 3rem
}

.syndicates.banner .banner-draws .banner-draw {
  max-width: 300px;
  margin-bottom: 20px !important;
  padding: 15px 25px
}

.syndicates.banner .banner-draws .banner-draw>div {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.syndicates.banner .banner-draws .banner-draw>div>* {
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
  -moz-box-flex: 1 !important;
  -ms-flex: auto !important;
  flex: auto !important
}

.syndicates.banner .banner-draws .banner-draw div.syndicate-quick-play {
  display: block
}

.syndicates.banner .banner-draws .banner-draw div.syndicate-quick-play p.jackpot {
  font-weight: 600
}

.syndicates.banner .banner-draws .banner-draw p {
  color: #2c68a5 !important
}

.syndicates.banner .banner-draws .banner-draw .orange {
  color: #e25f2c !important
}

.syndicates.banner .banner-draws .banner-draw.info-card {
  padding-top: 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: visible
}

.syndicates.banner .banner-draws .banner-draw.info-card:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4rem;
  top: -2rem;
  left: 0;
  background-image: url("../images/new_img_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center
}

.syndicates.banner .banner-draws .banner-draw.info-card .center {
  display: block;
  margin: auto
}

.syndicates.banner .banner-draws .banner-draw.info-card .center h2,
.syndicates.banner .banner-draws .banner-draw.info-card .center p {
  text-align: center !important
}

.syndicates.banner .banner-draws .banner-draw.info-card .center h2 {
  font-size: 40px !important;
  color: #2c68a5 !important
}

.syndicates.banner.no-syndicates .headers {
  max-width: 100%
}

.syndicates .steps {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.syndicates .steps .col {
  width: 18%;
  padding: 2rem 1rem;
  position: relative
}

.syndicates .steps .col:after {
  content: '';
  display: block;
  position: absolute;
  right: -2rem;
  top: 0;
  bottom: 0;
  left: 0;
  background: url("../images/syndicates/step-divide.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right
}

.syndicates .steps .col:last-child:after {
  display: none
}

.syndicates .steps .col span {
  display: block;
  width: 2rem;
  height: 2rem;
  border: 1px solid #f66c1c;
  text-align: center;
  color: #f66c1c;
  line-height: 1.8;
  font-weight: 400;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  margin: auto
}

.syndicates .steps .col img {
  height: 3rem;
  width: auto;
  margin-top: 1rem;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain
}

.syndicates .steps .col p {
  color: #2c68a5;
  font-size: 1rem;
  margin-bottom: 0
}

.syndicates .bg-blue-gradient {
  padding: 5rem 0 2rem !important;
  position: relative
}

.syndicates .bg-blue-gradient:before {
  content: '';
  display: block;
  position: absolute;
  width: 6rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: -3rem;
  background-image: url(../images/lottery-logos/lottery-syndicates.png);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 8px solid #2da0f1;
  background-size: cover
}

@media only screen and (max-width:600px) {
  .syndicates .bg-blue-gradient {
    padding: 4rem 0 1rem !important
  }

  .syndicates .bg-blue-gradient:before {
    width: 4.25rem;
    height: 4.25rem;
    top: -2rem;
    border: 6px solid #2da0f1
  }
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow {
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  margin-top: 0 !important;
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  position: relative;
  text-align: left
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow.no-syndicates p {
  font-weight: 600
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow.no-syndicates p img {
  max-width: 3rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow.no-syndicates p a {
  text-decoration: none
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow.no-syndicates p span {
  color: #e25f2c;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2
}

@media screen and (max-width:600px) {
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow {
    padding: 2rem .5rem !important
  }
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow:last-child {
  margin-bottom: 0 !important
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .col {
  width: 50%
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title {
  width: 50%
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title img {
  width: 8rem;
  height: 8rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h2 {
  font-size: 2.375em;
  line-height: 1.3;
  margin: 0
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h4 {
  font-size: 1.4rem;
  margin: 0 auto
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h4.orange-text {
  margin: 0
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h4.orange-text.combined-jackpot-title {
  margin: .5rem 0 0
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow p {
  margin: 1rem 0 0
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow p,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow h4,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow h5,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow .trigger {
  color: #2c68a5
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .combined-jackpot-title {
  margin: .625rem 0 0;
  color: #e25f2c;
  font-size: 1em;
  font-family: "Open sans"
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .three-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@supports(-ms-ime-align:auto) {
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .three-col {
    max-width: 150px
  }
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .three-col .col {
  width: 33% !important
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .title img {
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 1rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .shares h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 .5rem;
  min-width: 150px
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .shares p {
  margin: 0;
  font-weight: 100
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .top,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .top .col,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .col {
  width: auto
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .top {
  border-bottom: 1px solid rgba(151, 151, 151, .2);
  padding-bottom: 1rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom {
  padding-top: 1rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .trigger {
  padding-right: 1.2rem;
  display: inline;
  position: relative
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .trigger:before,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .trigger:after {
  -webkit-transition: .5s ease all;
  transition: .5s ease all
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .trigger:before {
  content: 'Show numbers'
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .trigger:after {
  content: '';
  display: block;
  position: absolute;
  width: .9rem;
  height: .9rem;
  right: 0;
  top: .4rem;
  background: url("../images/syndicates/arrow.svg") center center;
  background-repeat: no-repeat
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom .button {
  max-width: 16rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .add,
.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .minus {
  width: 2rem !important;
  height: 2rem !important;
  background: #2c68a5;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .minus span {
  position: absolute;
  top: 10%
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num {
  background: #2c68a5;
  width: 4rem !important;
  height: 4rem !important;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  border-radius: .5rem;
  margin: 0 .5rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num input.qty {
  border: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  font-size: 2rem !important;
  font-weight: 600;
  font-family: inherit;
  height: auto;
  max-height: 35px;
  padding: 0;
  margin: auto
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num input.qty {
    max-width: 60px !important
  }
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num span {
  width: 100%
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num span:first-child {
  font-size: 2rem
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num span:last-child {
  font-size: .7rem;
  text-transform: uppercase
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow .stepper .num h5 {
  margin: 0;
  color: #fff
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h5.total-syndicate-cost {
  min-width: 150px
}

.syndicates .bg-blue-gradient .plays-container .white-box--shadow h5.total-syndicate-cost:before {
  content: 'Total: $'
}

.syndicates .active .trigger:before {
  content: 'Hide numbers' !important
}

.syndicates .active .trigger:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.syndicates .active .expand {
  max-height: 100%;
  -webkit-transition: all ease 1s;
  transition: all ease 1s
}

.syndicates .expand {
  max-height: 0;
  overflow: hidden
}

.syndicates .expand .tables:first-of-type {
  margin-top: 2rem;
  border-top: 1px solid rgba(151, 151, 151, .2)
}

.syndicates .tables {
  width: 100%;
  padding-top: 1rem
}

.syndicates .tables .title h5 {
  text-align: left;
  font-weight: 400;
  color: #f66c1c !important;
  font-size: 1rem !important;
  margin: 2rem 0 !important
}

.syndicates .tables .title h5 span {
  color: #2c68a5
}

.syndicates .tables .title h5 span.multiplier {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  line-height: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.syndicates .tables .title h5 span.multiplier svg {
  width: 18px;
  position: relative;
  top: 2px;
  left: 5px
}

.syndicates .tables .title h5 span.multiplier.checkout-page {
  line-height: 0;
  margin-top: -2px
}

.syndicates .tables .title h5 span.lottery-date {
  display: block;
  line-height: 1.5
}

.syndicates .tables .title img {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  vertical-align: middle
}

.syndicates .tables .four-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.syndicates .tables .four-col .col {
  min-width: -webkit-calc(25%);
  min-width: calc(25%);
  width: auto
}

.syndicates .tables .four-col .col ul,
.syndicates .tables .four-col .col li {
  margin: 0;
  list-style: none
}

.syndicates .tables .four-col .col ul {
  padding: 0 1rem;
  border-right: 1px solid #fb8e0c !important
}

.syndicates .tables .four-col .col.one-col ul {
  border-right: 0 !important;
  padding-right: 0
}

.syndicates .tables .four-col .col:last-child ul {
  border-right: 0 !important;
  padding-right: 0
}

.syndicates .tables .four-col .col:first-child ul {
  padding-left: 0
}

.syndicates .tables .four-col .col:first-child ul li:first-child {
  border: 0
}

.syndicates .tables .four-col .col li {
  padding: .25rem .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: #1b90e8;
  font-size: .9rem;
  border-top: 1px solid #e3e3e3
}

@media screen and (min-width:1200px) {
  .syndicates .tables .four-col .col li:first-child {
    border: 0
  }
}

.syndicates .tables .four-col .col li span {
  width: 100%;
  height: 100%;
  margin: auto 1%;
  padding: 1% 0;
  max-width: 28px;
  min-width: 28px;
  max-height: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: normal;
  color: #e25f2c
}

.syndicates .tables .four-col .col li span.game-number {
  color: #7a7b78;
  font-weight: normal
}

.syndicates .tables .four-col .col li span.blue-text {
  color: #38a4d0
}

.syndicates .tables .four-col .col li.rowcount-8 span {
  margin: auto .5% !important
}

.syndicates .tables .four-col .col li.rowcount-9 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.syndicates .tables .four-col .col li.rowcount-10 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.syndicates .tables .four-col .col li.rowcount-11 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.syndicates .tables .four-col .col li.rowcount-12 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.syndicates .tables .four-col .col.bonus-container ul li:first-child {
  border: 0
}

.syndicates .tables .four-col.flex-column-syndicates {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.syndicates .tables .four-col.flex-column-syndicates .col {
  width: 100%
}

.syndicates .tables .four-col.flex-column-syndicates .col ul {
  padding: 0 1rem
}

.syndicates .tables .four-col.flex-column-syndicates .col ul.standard {
  border-right: 1px solid #fb8e0c !important
}

@media screen and (max-width:1200px) {
  .syndicates .tables .four-col.flex-column-syndicates .col ul.standard {
    border: 0 !important
  }
}

.syndicates .tables .four-col.flex-column-syndicates .col ul.ul-sys {
  border: 0 !important;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.syndicates .tables .four-col.flex-column-syndicates .col ul.ul-sys li {
  border: 0 !important
}

.syndicates .tables .four-col.flex-column-syndicates .col .results-expand-sysentry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: underline !important;
  padding-bottom: 1rem;
  margin: auto;
  text-align: center
}

.syndicates .tables .four-col.flex-column-syndicates .col .results-expand-sysentry:after {
  margin-left: .325rem
}

.syndicates .tables .four-col.flex-column-syndicates .col .results-expand-sysentry span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center
}

.syndicates .syndicate-information {
  padding: 1rem 0
}

.syndicates .syndicate-information ul {
  list-style: none;
  padding: 2rem 0;
  margin: 0
}

.syndicates .syndicate-information ul>li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 1rem 0
}

.syndicates .syndicate-information ul>li>img {
  max-width: 10rem;
  margin-right: 3rem;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.syndicates .syndicate-information ul>li div {
  padding-left: 1rem;
  position: relative
}

.syndicates .syndicate-information ul>li div h1 {
  margin: 0;
  font-size: 1.375em;
  font-weight: 700;
  color: #2c68a5
}

.syndicates .syndicate-information ul>li div p {
  line-height: 1.5;
  max-width: 90%
}

.syndicates .syndicate-information ul>li div table {
  border: 1px solid #4c4d4a
}

.syndicates .syndicate-information ul>li div table tr th {
  color: #fff;
  background: #38a4d0;
  text-align: center
}

.syndicates .syndicate-information ul>li div table tr th:first-child {
  background: #2c68a5
}

.syndicates .syndicate-information ul>li div table tr td {
  text-align: left;
  padding: 5px 10px;
  border: 1px solid
}

.syndicates .syndicate-information ul>li div ul {
  padding: 1rem;
  list-style: disc
}

.syndicates .syndicate-information ul>li div ul li {
  display: list-item;
  padding: initial
}

.syndicates .syndicate-information ul>li div ol {
  padding: 1rem
}

.syndicates .syndicate-information ul>li div ol li {
  display: list-item
}

.syndicates .system-scroll {
  height: 320px;
  overflow-y: scroll;
  background: #eee;
  margin-bottom: .5rem;
  cursor: n-resize;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.syndicates .system-scroll .scroll-msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 0
}

.syndicates .system-scroll .tables .four-col {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.syndicates .system-scroll .tables .four-col .col {
  width: auto
}

.syndicates .system-scroll .tables:first-of-type {
  margin-top: 0 !important;
  border: 0 !important
}

.syndicates #syndicate-custom-text {
  display: block;
  max-width: 90%;
  padding-left: .5rem;
  border-left: 3px solid #e25f2c;
  color: #7a7b78
}

.syndicates .flex-column-syndicates>.scroll-msg {
  display: none !important
}

.syndicates .flex-column-syndicates .tables li .guaranteed-label {
  position: relative;
  background: #e6e6e6
}

.syndicates .flex-column-syndicates .tables li .guaranteed-label:before {
  position: absolute;
  top: -15px;
  left: 0;
  font-size: .6rem
}

@media screen and (min-width:1200px) {
  .syndicates .flex-column-syndicates .tables li:first-child .guaranteed-label.USPB:before {
    content: 'Power'
  }

  .syndicates .flex-column-syndicates .tables li:first-child .guaranteed-label.USMM:before {
    content: 'Mega'
  }

  .syndicates .flex-column-syndicates .tables li:first-child .guaranteed-label.EURO:before {
    content: 'Star';
    left: 5px
  }

  .syndicates .flex-column-syndicates .tables li:first-child .guaranteed-label.EURJ:before {
    content: 'Euro';
    left: 5px
  }
}

@media screen and (max-width:1200px) {
  .syndicates .flex-column-syndicates .tables .col:first-of-type li:first-child>.guaranteed-label.USPB:before {
    content: 'Power'
  }

  .syndicates .flex-column-syndicates .tables .col:first-of-type li:first-child>.guaranteed-label.USMM:before {
    content: 'Mega'
  }

  .syndicates .flex-column-syndicates .tables .col:first-of-type li:first-child>.guaranteed-label.EURO:before {
    content: 'Star'
  }

  .syndicates .flex-column-syndicates .tables .col:first-of-type li:first-child>.guaranteed-label.EURJ:before {
    content: 'Euro'
  }
}

.syndicates .flex-column-syndicates #g-explainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.syndicates .flex-column-syndicates #g-symbol {
  width: 100%;
  height: 100%;
  margin: auto 1%;
  padding: 1% 0;
  max-width: 28px;
  min-width: 28px;
  max-height: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  background-color: #38a4d0
}

.syndicates .shimmer-line {
  height: 10px;
  margin-top: 20px;
  background: #777
}

.syndicates .shimmer-line-br {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px
}

.syndicates .shimmer-line-full {
  width: 100%
}

.syndicates .shimmer-line-80 {
  width: 80%
}

.syndicates .shimmer-line-60 {
  width: 60%;
  margin-left: 5%
}

.syndicates .shimmer-circle {
  background: #777;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%
}

.syndicates .shimmer-circle-md {
  height: 65px;
  width: 65px
}

.syndicates .shimmer-wrapper {
  width: 100%;
  height: 100%;
  -webkit-animation: shimmer-full-view .5s forwards cubic-bezier(.25, .46, .45, .94);
  animation: shimmer-full-view .5s forwards cubic-bezier(.25, .46, .45, .94);
  margin-top: 2rem
}

.syndicates .mt-10 {
  margin-top: 10px
}

.syndicates .ml-10 {
  margin-left: 10px
}

@-webkit-keyframes shimmer-full-view {
  0% {
    background-position: -1000px 0
  }

  100% {
    background-position: 1000px 0
  }
}

@keyframes shimmer-full-view {
  0% {
    background-position: -1000px 0
  }

  100% {
    background-position: 1000px 0
  }
}

@-webkit-keyframes shimmer-animation {
  0% {
    background-position: -1000px 0
  }

  100% {
    background-position: 1000px 0
  }
}

@keyframes shimmer-animation {
  0% {
    background-position: -1000px 0
  }

  100% {
    background-position: 1000px 0
  }
}

.syndicates .shimmer-animate {
  -webkit-animation: shimmer-animation 2s infinite linear;
  animation: shimmer-animation 2s infinite linear;
  background: -webkit-gradient(linear, left top, right top, color-stop(4%, #eff1f3), color-stop(25%, #e2e2e2), color-stop(36%, #eff1f3));
  background: -webkit-linear-gradient(left, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 1000px 100%
}

@media screen and (max-width:1200px) {
  .syndicates .steps {
    display: none !important
  }

  .syndicates .bg-blue-gradient {
    padding: 2rem 0
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .col,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .shares {
    width: 100% !important
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper {
    margin: 1rem auto
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .add,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .minus {
    width: 3rem !important;
    height: 3rem !important
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .add span,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .minus span {
    font-size: 2rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .num {
    margin: 0 1rem;
    width: 5rem !important;
    height: 5rem !important
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .num span:first-child {
    font-size: 2.5rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .stepper .num span:last-child {
    font-size: .9rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .top,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .bottom {
    margin-top: 2rem
  }

  .syndicates .expand .tables .title.flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .syndicates .expand .tables .four-col {
    display: block;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .syndicates .expand .tables .four-col .col {
    width: 100%;
    padding: 0
  }

  .syndicates .expand .tables .four-col .col ul {
    border-right: none !important;
    padding: 0;
    max-width: 280px;
    margin: auto
  }

  .syndicates .expand .tables .four-col .col:first-child ul:first-child li:first-child {
    border: 0
  }

  @supports(-ms-ime-align:auto) {
    .syndicates .three-col {
      max-width: 250px !important
    }
  }
}

@media screen and (max-width:1080px) {
  .syndicates .plays-container .white-box--shadow .col {
    margin: 0
  }

  .syndicates .plays-container .white-box--shadow h1 {
    font-size: 50px
  }
}

@media screen and (max-width:1024px) {
  .syndicates.banner .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 400px;
    background-size: cover !important;
    width: 100% !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .syndicates.banner .container .headers {
    padding: 10% 0 5%;
    max-width: 100%
  }

  .syndicates.banner .container .headers h1 {
    text-align: center;
    font-size: 4rem
  }

  .syndicates.banner .container .headers span.tag-line {
    text-align: center;
    font-size: 1rem
  }

  .syndicates.banner .container .banner-draws {
    width: 100%;
    padding: 10% 0
  }

  .syndicates.banner .container .banner-draws .banner-draw {
    margin: auto
  }
}

@media screen and (max-width:768px) {
  .syndicates .section.thick {
    padding: 2rem 0
  }

  .syndicates .bg-blue-gradient {
    padding: 1rem 0
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow {
    padding: 1.5rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .col {
    width: 100% !important
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .top,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .top,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .bottom {
    margin: 0;
    padding: 1rem 0 0;
    border: 0
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .top p,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .bottom p {
    font-size: 18px;
    font-weight: 500
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .top p.cost-per-share,
  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .bottom p.cost-per-share {
    font-size: .875em
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title {
    width: 100% !important
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title h1 {
    line-height: 1
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .title img {
    width: 6rem !important;
    height: 6rem !important;
    margin: 0 auto 1rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .two-col .button {
    margin-bottom: 1rem
  }

  .syndicates .bg-blue-gradient .plays-container .white-box--shadow .is-label {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px auto;
    color: #fff
  }

  .syndicates .white-box--shadow.active .expand {
    max-height: 100%;
    -webkit-transition: all ease 1s;
    transition: all ease 1s
  }

  .syndicates .expand .tables .four-col {
    display: block
  }

  .syndicates .expand .tables .four-col .col {
    width: 100%
  }

  .syndicates.no-syndicates .headers {
    padding: 20% 0 0 !important
  }
}

@media screen and (max-width:600px) {
  .syndicates .expand .tables:first-of-type {
    margin-top: 1rem
  }

  .syndicates .expand .tables .title h5 {
    margin: 1rem 0 !important
  }

  .syndicates .expand .tables .four-col .col li.rowcount-8 span {
    margin: auto .5% !important
  }

  .syndicates .expand .tables .four-col .col li.rowcount-9 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .syndicates .expand .tables .four-col .col li.rowcount-10 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .syndicates .expand .tables .four-col .col li.rowcount-11 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .syndicates .expand .tables .four-col .col li.rowcount-12 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .syndicates #banner-draws {
    display: block !important
  }

  .syndicates.banner .container {
    background: url("../images/lottery-banners/syndicates-mobile-zero.jpg") left no-repeat !important;
    min-height: 300px
  }

  .syndicates.banner .container .headers h1 {
    font-size: 3rem
  }

  .syndicates.banner .container .headers span.tag-line {
    text-align: center;
    font-size: 1rem
  }

  .syndicates.banner .container .headers p {
    font-size: 1rem
  }

  .syndicates.no-syndicates .headers {
    padding: 25% 0 0 !important
  }
}

.combo-bg-blue-gradient {
  padding: 1rem 0 2rem !important;
  position: relative
}

.png:before {
  content: '';
  display: block;
  position: absolute;
  /* background-color: #2c9ff1;
  border-radius: 25px; */
  width: 234px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: -3rem;
  background-image: url(../img/png.png);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
  background-size: cover
}

@media only screen and (max-width:600px) {
  .combo-bg-blue-gradient {
    padding: 4rem 0 1rem !important
  }

  .png:before {
    width: 192px;
    height: 65px;
    top: -40px;
  }
}

#combo--container .lottery-card--combo {
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset
}

#combo--container .combo-info {
  gap: 0 3rem
}

#combo--container .combo-info img {
  width: 7rem;
  height: 7rem
}

#combo--container .combo-info img.system-logo {
  width: 5rem;
  height: 5rem
}

#combo--container .combo-pricing {
  text-align: right
}

#combo--container .pricing-pricing-info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media only screen and (max-width:860px) {
  #combo--container .lottery-card--combo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.5rem !important
  }

  #combo--container .lottery-card--combo h2 {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
  }
}

@media only screen and (max-width:768px) {
  #combo--container .systems-pricing .button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto
  }

  #combo--container h2 {
    padding-left: 0
  }

  #combo--container .lottery-card--combo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  #combo--container .combo-info {
    gap: 0 2rem;
    text-align: left
  }
}

@media only screen and (max-width:768px) and (max-width:600px) {
  #combo--container .combo-info {
    gap: 0 1rem
  }
}

@media only screen and (max-width:768px) {
  #combo--container .combo-info h2 {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    text-align: left
  }

  #combo--container .combo-info img {
    width: 5rem;
    height: 5rem
  }

  #combo--container .combo-info .lottery-card--amount {
    margin: 0;
    font-size: 2rem
  }

  #combo--container .pricing-pricing-info {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -moz-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

@media only screen and (max-width:768px) and (max-width:600px) {
  #combo--container .pricing-pricing-info {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  #combo--container .pricing-pricing-info p {
    margin: 0
  }

  #combo--container .pricing-pricing-info p:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 1rem
  }
}

@media only screen and (max-width:768px) {
  #combo--container .combo-pricing {
    text-align: center
  }
}

#combo--container .lottery-card--combo .info-icon {
  width: 1.125rem;
  height: 1.125rem
}

#combo--container .is-label {
  top: 0;
  left: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0
}

@media only screen and (max-width:600px) {
  .banner-combo .container .headers h1 {
    font-size: 2.375rem
  }

  .banner-combo .container .headers span {
    font-size: 1.75rem
  }
}

section.all-lotteries-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 80rem;
  margin: auto
}

section.all-lotteries-container .section-content {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -moz-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: left;
  position: relative
}

section.all-lotteries-container .section-content h1,
section.all-lotteries-container .section-content h2 {
  color: #2c68a5
}

section.all-lotteries-container .section-content>p {
  position: relative;
  padding-left: 1rem
}

section.all-lotteries-container .section-content>p:before {
  position: absolute;
  height: 1.5rem;
  width: 4px;
  left: 0;
  top: 5px;
  background: #e25f2c;
  display: block;
  content: ""
}

section.all-lotteries-container .section-content .cta {
  display: none
}

section.all-lotteries-container .section-content .all-lotteries-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: .5rem 1rem
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1.5625rem 3rem;
  margin: 5px auto
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .is-label {
  left: 0;
  top: 0
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .lottery-flag {
  margin: 0;
  width: 5rem;
  height: 5rem
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .lottery-infor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .lottery-infor h2 {
  line-height: 1;
  color: #4c4d4a
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .lottery-infor p.lottery-card--amount {
  padding: 0;
  margin: 0;
  color: #2c68a5
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .lottery-infor .timer {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card .button {
  display: inline-table
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.USPB {
  border-left: 5px solid #133a8d
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.USMM {
  border-left: 5px solid #e52a30
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.IREL {
  border-left: 5px solid #84bf45
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.PRIM {
  border-left: 5px solid #f6b61b
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.EURJ {
  border-left: 5px solid #005fe2
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.EURO {
  border-left: 5px solid #5824ae
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.UKLO {
  border-left: 5px solid #21d3e0
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.SENA {
  border-left: 5px solid #209d4d
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.COMBOS {
  border-left: 5px solid #1a81e9
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.SYNDICATES {
  border-left: 5px solid #e25f2c
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.offer-text {
  padding: 1.5625rem 3rem;
  background: #f9f9f9
}

section.all-lotteries-container .section-content .all-lotteries-list .lottery-card.offer-text p {
  color: #4c4d4a;
  font-size: 1rem;
  padding-left: 1rem
}

section.all-lotteries-container .section-content .faqs-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 1rem
}

section.all-lotteries-container .section-content .faqs-content h2 {
  margin: 0;
  padding-top: 2rem
}

section.all-lotteries-container .section-content .faqs-content h2.schema {
  padding-top: 1rem
}

section.all-lotteries-container .section-content .faqs-content h3 {
  margin: 0;
  padding-top: 2rem;
  color: #2c68a5
}

section.all-lotteries-container .section-content .faqs-content h3.schema {
  padding-top: 1rem
}

section.all-lotteries-container .section-content .faqs-content .faq-answer {
  padding-bottom: 1rem
}

section.all-lotteries-container .section-content .faqs-content .faq-answer p {
  position: relative
}

section.all-lotteries-container .section-content .faqs-content .faq-answer p:first-child:before {
  position: absolute;
  height: 1.5rem;
  width: 3px;
  left: -10px;
  top: 5px;
  background: #e25f2c;
  display: block;
  content: ""
}

section.all-lotteries-container .section-content .faqs-content .play-widget {
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  border-radius: .5rem;
  place-items: center
}

section.all-lotteries-container .section-content .faqs-content .play-widget.us-powerball {
  background: -webkit-linear-gradient(135deg, #d8262d, #2c68a5);
  background: linear-gradient(-45deg, #d8262d, #2c68a5)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.us-megamillions {
  background: -webkit-linear-gradient(135deg, #2c68a5, #58019f);
  background: linear-gradient(-45deg, #2c68a5, #58019f)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.euromillions {
  background: -webkit-linear-gradient(135deg, #38a4d0, #2c68a5);
  background: linear-gradient(-45deg, #38a4d0, #2c68a5)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.superenalotto {
  background: -webkit-linear-gradient(135deg, #d8262d, #209d4d);
  background: linear-gradient(-45deg, #d8262d, #209d4d)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.eurojackpot {
  background: -webkit-linear-gradient(135deg, #209d4d, #2c68a5);
  background: linear-gradient(-45deg, #209d4d, #2c68a5)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.la-primitiva {
  background: -webkit-linear-gradient(135deg, #f48b30, #d8262d);
  background: linear-gradient(-45deg, #f48b30, #d8262d)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.uk-lotto {
  background: -webkit-linear-gradient(135deg, #2c68a5, #d8262d);
  background: linear-gradient(-45deg, #2c68a5, #d8262d)
}

section.all-lotteries-container .section-content .faqs-content .play-widget.irish-lotto {
  background: -webkit-linear-gradient(135deg, #84bf45, #209d4d);
  background: linear-gradient(-45deg, #84bf45, #209d4d)
}

section.all-lotteries-container .section-content .faqs-content .play-widget h3 {
  color: #fff;
  padding-top: 0
}

section.all-lotteries-container .section-content .faqs-content .play-widget a.button {
  margin-right: 2rem
}

section.all-lotteries-container .section-sidebar {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 2rem
}

section.all-lotteries-container .section-sidebar aside {
  margin-bottom: 1rem
}

section.all-lotteries-container .section-sidebar aside.featured {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../images/all-lotteries-blue-bg.jpg) top center no-repeat;
  padding: 1rem;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 0
}

section.all-lotteries-container .section-sidebar aside.featured img {
  max-width: 6rem
}

section.all-lotteries-container .section-sidebar aside.featured h2 {
  color: #fff;
  font-size: 1.5rem;
  margin: 1rem auto 2rem
}

section.all-lotteries-container .section-sidebar aside.featured h3 {
  font-size: 3rem;
  color: #fff;
  margin: 1rem auto 2rem;
  max-width: 90%
}

@media only screen and (min-width:600px) {
  section.all-lotteries-container .section-sidebar aside.featured h3 {
    padding: 0 10px
  }
}

section.all-lotteries-container .section-sidebar aside.featured .button-container {
  margin-top: 2rem
}

section.all-lotteries-container .section-sidebar aside.featured .button-container .button.button-white {
  color: #fff;
  border-color: #fff
}

section.all-lotteries-container .section-sidebar aside.featured .button-container .button:hover {
  color: #26349d
}

section.all-lotteries-container .section-sidebar aside.featured .button-container p {
  color: #fff
}

section.all-lotteries-container .section-sidebar aside.join-winners {
  background: url(../images/all-lotteries-orange-bg.jpg) top center no-repeat;
  padding: 2rem 2.5rem 4rem
}

section.all-lotteries-container .section-sidebar aside.join-winners h2 {
  font-size: 2rem;
  position: relative;
  padding-left: 1rem;
  font-weight: normal
}

section.all-lotteries-container .section-sidebar aside.join-winners h2:before {
  position: absolute;
  height: 100px;
  width: 3px;
  left: 0;
  top: -3.7rem;
  background: #fff;
  display: block;
  content: ""
}

section.all-lotteries-container .section-sidebar aside.join-winners a {
  font-size: 1.5rem;
  font-weight: normal;
  width: 100%;
  margin-left: 2rem;
  font-weight: 600
}

section.all-lotteries-container .section-sidebar aside.join-winners a:hover {
  opacity: 1;
  text-decoration: underline
}

section.lotto-systems-container {
  padding: 5rem 0 2rem !important;
  position: relative
}

section.lotto-systems-container:before {
  content: '';
  display: block;
  position: absolute;
  width: 6rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: -3rem;
  background-image: url(../images/lottery-logos/lottery-systems.png);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 8px solid #2da0f1;
  background-size: cover
}

@media only screen and (max-width:600px) {
  section.lotto-systems-container {
    padding: 3rem 0 1rem !important
  }

  section.lotto-systems-container:before {
    width: 4.25rem;
    height: 4.25rem;
    top: -2rem;
    border: 6px solid #2da0f1
  }
}

section.lotto-systems-container .section-content .all-lotteries-list {
  background: -webkit-gradient(linear, left top, right top, from(#512dc5), to(#2987d1));
  background: -webkit-linear-gradient(left, #512dc5 0%, #2987d1 100%);
  background: linear-gradient(to right, #512dc5 0%, #2987d1 100%)
}

section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list {
  padding: 4rem 0;
  margin: auto
}

section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a {
  max-width: 80%
}

section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a .button {
  margin-top: 0 !important
}

section.lotto-systems-container .section-content .faqs-content {
  padding: 2rem 0
}

section.lotto-systems-container .section-content .faqs-content div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding: 1rem 0
}

section.lotto-systems-container .section-content .faqs-content div>img {
  max-width: 10rem;
  margin-right: 3rem;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

section.lotto-systems-container .section-content .faqs-content div>div {
  padding-left: 1rem;
  position: relative
}

section.lotto-systems-container .section-content .faqs-content div>div h2 {
  margin: 0;
  font-size: 1.375em;
  font-weight: 700;
  color: #2c68a5
}

section.lotto-systems-container .section-content .faqs-content div>div p {
  line-height: 1.5;
  max-width: 90%
}

section.lotto-systems-container .section-content .faqs-content div>div p:before {
  position: absolute;
  height: 50px;
  width: 3px;
  left: 0;
  background: #e25f2c;
  display: block;
  content: ""
}

section.lotto-systems-container .section-content .faqs-content .faq-answer p {
  padding-left: 1rem
}

section.lotto-systems-container .section-content .results-expand {
  margin-top: .5rem
}

section.lottosystems-information table {
  max-width: 90%
}

@media only screen and (max-width:600px) {
  section.lottosystems-information table {
    max-width: 100% !important
  }
}

section.lottosystems-information table.custom-shade tr th {
  background: #38a4d0 !important
}

section.lottosystems-information table.custom-shade tr th.header {
  background: #2c68a5 !important
}

section.lottosystems-information table tr td {
  text-align: center !important
}

section.lottosystems-information table tr td.vertical-middle {
  vertical-align: middle
}

section.lottosystems-information .single-game-img {
  max-width: 320px;
  display: block;
  margin: auto
}

section.lottosystems-information .download-pdf:before {
  content: '';
  display: inline-block;
  position: relative;
  top: .35rem;
  background: url("../icons/download-pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
  width: 1.5rem;
  margin-right: .5rem;
  margin-left: -.1rem
}

section.lottosystems-information p.abbrev:before {
  display: none !important
}

section .play-widget {
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  border-radius: .5rem;
  place-items: center
}

@supports(-ms-ime-align:auto) {
  section .play-widget {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
  }
}

section .play-widget.us-powerball {
  background: -webkit-linear-gradient(135deg, #d8262d, #2c68a5);
  background: linear-gradient(-45deg, #d8262d, #2c68a5)
}

section .play-widget.us-megamillions {
  background: -webkit-linear-gradient(135deg, #2c68a5, #58019f);
  background: linear-gradient(-45deg, #2c68a5, #58019f)
}

section .play-widget.euromillions {
  background: -webkit-linear-gradient(135deg, #38a4d0, #2c68a5);
  background: linear-gradient(-45deg, #38a4d0, #2c68a5)
}

section .play-widget.superenalotto {
  background: -webkit-linear-gradient(135deg, #d8262d, #209d4d);
  background: linear-gradient(-45deg, #d8262d, #209d4d)
}

section .play-widget.eurojackpot {
  background: -webkit-linear-gradient(135deg, #209d4d, #2c68a5);
  background: linear-gradient(-45deg, #209d4d, #2c68a5)
}

section .play-widget.la-primitiva {
  background: -webkit-linear-gradient(135deg, #f48b30, #d8262d);
  background: linear-gradient(-45deg, #f48b30, #d8262d)
}

section .play-widget.uk-lotto {
  background: -webkit-linear-gradient(135deg, #2c68a5, #d8262d);
  background: linear-gradient(-45deg, #2c68a5, #d8262d)
}

section .play-widget.irish-lotto {
  background: -webkit-linear-gradient(135deg, #84bf45, #209d4d);
  background: linear-gradient(-45deg, #84bf45, #209d4d)
}

section .play-widget h3 {
  color: #fff;
  padding-top: 0;
  margin-top: auto;
  margin-bottom: auto
}

section .play-widget a.button {
  margin-right: 2rem
}

section .results-expand.blue-arrow {
  cursor: pointer;
  text-decoration: underline !important
}

section .results-expand.blue-arrow:after {
  position: absolute;
  margin-left: -10px !important
}

@media only screen and (max-width:600px) {
  section .results-expand.blue-arrow:after {
    display: none
  }
}

section .results-expand.blue-arrow.active:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.table-container {
  width: 100%;
  overflow: auto
}

table {
  border: 1px solid #4c4d4a;
  width: 100%;
  margin-top: 1rem
}

table tr th {
  background: #38a4d0;
  padding: 10px 0;
  color: #fff;
  text-align: center
}

table tr th.special {
  background: #2c68a5
}

table tr td {
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  border: 1px solid
}

table tr td.border-right-none {
  border-right: 1px solid #fff
}

@media only screen and (max-width:768px) {
  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a {
    max-width: 90%
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5625rem 2rem
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card .lottery-flag {
    width: 4rem;
    height: 4rem
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card h2 {
    margin-top: 1rem
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card .lottery-infor {
    text-align: center
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card .button {
    margin-top: 1rem !important
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list a.lottery-card .timer {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
  }

  section.lotto-systems-container .section-content div img.lottery-flag {
    display: block
  }

  section .play-widget {
    padding: 1rem !important
  }

  section .play-widget h3 {
    margin: unset !important;
    line-height: 2
  }

  section .play-widget .button {
    margin: auto !important
  }
}

@media only screen and (max-width:600px) {
  section.all-lotteries-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  section.lotto-systems-container .section-content .all-lotteries-list.lotto-systems-list {
    padding: 2rem 0
  }

  section.lottosystems-information table {
    max-width: 100% !important
  }

  section .section-sidebar {
    display: none
  }

  section .play-widget {
    padding: 1rem 0 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    max-width: 100%;
    margin: unset
  }

  section .play-widget h3 {
    margin: auto !important
  }

  section .play-widget a.button {
    margin: auto !important
  }
}

#banner-customer .container {
  min-height: 272px !important;
  max-width: 100%;
  background: url("../images/landing/support/customer-banner.png") center right no-repeat
}

#banner-customer .container h1 {
  font-size: 2rem;
  padding-left: 3rem;
  margin: 0;
  color: #fff;
  font-weight: 600
}

@media screen and (max-width:1000px) {
  #banner-customer .container {
    min-height: 150px !important
  }
}

@media screen and (max-width:600px) {
  #banner-customer .container {
    background: url("../images/landing/faq-banner-mobile.jpg") center right no-repeat
  }

  #banner-customer .container h1 {
    font-size: 1.35rem;
    padding: 0;
    margin: 0 auto
  }
}

#banner-customer .wrapper span {
  padding-left: 3rem;
  line-height: 2
}

@media screen and (max-width:600px) {

  #banner-customer .container h1,
  #banner-customer .container span {
    padding-left: 0 !important;
    margin: .5rem 0 0;
    line-height: 1.2
  }
}

#banner-customer {
  padding-bottom: 0 !important
}

#banner-customer .container {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important
}

#banner-customer span.h3 {
  font-size: 1.75rem
}

#banner-customer h1 {
  font-size: 2.875rem !important
}

#banner-customer span.h4 {
  font-size: 21px
}

.contact-us-main .button {
  width: 158px !important;
  height: 45px !important;
  padding: .75rem 1rem .875rem !important
}

.left-container {
  width: 682px;
  padding: 0
}

.left-container .section-contact-call {
  background: #eaf3fc;
  height: 180px
}

.left-container .section-contact-call .call-container {
  padding: 2rem;
  text-align: left
}

.left-container .section-contact-call .call-container h2 {
  text-align: left;
  margin-top: 0
}

.left-container .section-contact-form {
  background: #eee
}

.left-container .section-contact-form .contact-form-container {
  padding: 2rem;
  text-align: left;
  width: 100%
}

.left-container .section-contact-form .contact-form-container h2 {
  text-align: left;
  margin-top: 0
}

.left-container .section-contact-form .contact-form-container #contact-support--form {
  margin-top: 1rem
}

.left-container .section-contact-form .contact-form-container #contact-support--form .form-flex {
  gap: 0 1rem
}

.left-container .section-contact-form .contact-form-container #contact-support--form input {
  width: 100%
}

.left-container .section-contact-form .contact-form-container #contact-support--form .select-left {
  margin-right: 0 !important
}

.left-container .section-contact-form .contact-form-container #contact-support--form .contact-form-options {
  margin: 1rem 0 !important;
  font-weight: bold
}

.left-container .phone-cta {
  text-decoration: underline;
  cursor: pointer
}

.left-container .svg-logo {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none
}

.left-container .left-content {
  max-width: 480px;
  margin-left: 2rem
}

.right-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0 2rem 2rem;
  margin-left: 4rem
}

.right-container .contact-cta-container {
  max-width: 417px;
  width: 100%;
  margin-bottom: 2rem
}

.right-container .contact-cta-container h2 {
  text-align: left;
  margin-top: 0
}

.right-container .contact-cta-container .mleft-1 {
  margin-left: 1rem
}

.right-container .contact-cta-container svg {
  width: 80px;
  height: 80px
}

.right-container .contact-cta-container p {
  max-width: 300px
}

@media screen and (max-width:1024px) {
  .contact-us-main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .contact-us-main .left-container {
    width: 100%
  }

  .contact-us-main .left-content {
    max-width: unset
  }

  .contact-us-main .right-container {
    margin: auto 0;
    width: 100%
  }

  .contact-us-main .right-container .contact-cta-container {
    max-width: unset
  }

  .contact-us-main .right-container .contact-cta-container p {
    max-width: 100%
  }
}

.footer-accordions-section li h4 {
  color: #2c68a5 !important;
  font-size: 21px !important
}

@media screen and (max-width:600px) {
  #banner-customer {
    padding: 0 !important;
    margin: 0 !important
  }

  #banner-customer .wrapper {
    width: 100%
  }

  #banner-customer .wrapper span.h3 {
    font-size: 21px;
    text-align: center !important
  }

  #banner-customer .wrapper h1 {
    font-size: 28px !important;
    text-align: center !important
  }

  #banner-customer .wrapper span.h4 {
    font-size: 1rem;
    text-align: center !important
  }

  .contact-us-main {
    width: 100%
  }

  .left-container .section-contact-call .call-container {
    padding: 1rem
  }

  .left-container .section-contact-call .call-container h2 {
    line-height: 120%
  }

  .left-container .section-contact-call .call-container h2 .phone-cta {
    display: block
  }

  .left-container .section-contact-form .contact-form-container {
    padding: 1rem
  }

  .left-container .section-contact-form .contact-form-container #contact-support--form {
    margin-top: 0
  }

  .left-container .left-content {
    margin-left: 1rem
  }

  .right-container {
    margin: 0;
    padding: 1rem
  }

  h2 {
    max-width: 100% !important;
    font-size: 21px;
    margin: 0
  }

  .svg-logo {
    width: 60px;
    height: 60px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none
  }

  .mobile-flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .footer-accordions-section li h4 {
    font-size: 1rem !important
  }
}

.app {
  max-width: 80rem;
  margin: auto
}

.app .banner-app .banner {
  padding: 1rem 0
}

.app .banner-app .banner .container {
  width: 100%;
  max-width: 80rem;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  margin: auto;
  min-height: 420px;
  background: url("../images/app/app-banner-new.jpg") center center no-repeat !important
}

.app .banner-app .banner .container .banner-app--container {
  padding: 1rem 1rem 1rem 2rem
}

.app .banner-app .banner .container .banner-app--container h1 {
  margin-bottom: 1rem;
  color: #fff;
  text-align: center;
  font-size: 2rem
}

.app .banner-app .banner .container .banner-app--container h2,
.app .banner-app .banner .container .banner-app--container span.h2 {
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.3em;
  line-height: 1.2
}

.app .banner-app .banner .container .banner-app--container span.trademarknotice {
  color: #fff;
  padding: 15px 0;
  display: block;
  max-width: 25rem;
  text-align: center;
  opacity: .5;
  margin: auto;
  font-size: 12px
}

@media screen and (max-width:1000px) {

  .app .banner-app.banner-has-draws .banner .container h1,
  .app .banner-app.banner-has-draws .banner .container h3 {
    text-shadow: 2px 2px 15px rgba(126, 197, 187, .2)
  }
}

@media screen and (max-width:768px) {

  .app .banner-app .banner .container h1,
  .app .banner-app .banner .container h3 {
    text-shadow: 2px 2px 15px rgba(126, 197, 187, .2)
  }
}

@media screen and (max-width:600px) {
  .app .banner-app .banner {
    background: #f8f8f8;
    padding: 1rem
  }

  .app .banner-app .banner .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, #1c3295), color-stop(0%, #1c3295), to(transparent)), url("../images/app/app-banner-mobile-new.jpg") center top no-repeat !important;
    background: -webkit-linear-gradient(bottom, #1c3295 60%, #1c3295 0%, transparent), url("../images/app/app-banner-mobile-new.jpg") center top no-repeat !important;
    background: linear-gradient(to top, #1c3295 60%, #1c3295 0%, transparent), url("../images/app/app-banner-mobile-new.jpg") center top no-repeat !important
  }

  .app .banner-app .banner .aussie-owned-app {
    padding-bottom: 1rem
  }
}

.app .download-button--container {
  padding-top: 30px;
  text-align: center
}

.app .download-button--container img {
  max-width: 170px
}

.app .main-app-section {
  padding: 1rem 0 2rem
}

@media screen and (max-width:900px) {
  .app .appinfo-container {
    max-width: 800px
  }
}

.app .appinfo-container .three-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.app .appinfo-container .three-col .col {
  width: 30%
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col {
    width: 100%
  }
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col:nth-child(2) img {
    padding: 2rem 0;
    max-width: 300px;
    width: 100%;
    margin: auto
  }
}

.app .appinfo-container .three-col .col ul.app-iconlist-left {
  text-align: right;
  padding: 0 5rem 0 0
}

.app .appinfo-container .three-col .col ul.app-iconlist-left .icon-list-item {
  text-align: right;
  position: absolute;
  right: -3.5rem;
  top: 0;
  max-width: 2.5rem;
  width: 100%
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col ul.app-iconlist-left {
    text-align: left;
    padding: 0 0 0 5rem;
    padding-top: 0
  }

  .app .appinfo-container .three-col .col ul.app-iconlist-left .icon-list-item {
    text-align: left;
    position: absolute;
    left: -3.5rem;
    top: 4px;
    max-width: 2.5rem;
    width: 100%
  }
}

.app .appinfo-container .three-col .col ul.app-iconlist-right {
  text-align: left;
  padding: 0 0 0 5rem
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col ul.app-iconlist-right {
    padding-top: 0
  }
}

.app .appinfo-container .three-col .col ul.app-iconlist-right .icon-list-item {
  text-align: left;
  position: absolute;
  left: -3.5rem;
  top: 0;
  max-width: 2.5rem;
  width: 100%
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col ul.app-iconlist-right .icon-list-item {
    top: 4px
  }
}

.app .appinfo-container .three-col .col ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative
}

@media screen and (max-width:900px) {
  .app .appinfo-container .three-col .col ul li {
    padding-bottom: 10px
  }
}

.app .appinfo-container .three-col .col ul li:last-child {
  padding-bottom: 0
}

.app .appinfo-container .three-col .col ul li .icon-list-item img {
  max-width: 3.9rem;
  width: 100%
}

.app .download-button--container.app-bottom {
  -webkit-transform: translateY(7rem);
  -moz-transform: translateY(7rem);
  -ms-transform: translateY(7rem);
  transform: translateY(7rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media screen and (max-width:900px) {
  .app .download-button--container.app-bottom {
    -webkit-transform: translateY(2rem);
    -moz-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem)
  }
}

.app .download-button--container.app-bottom a.app-button {
  margin: 0 1rem;
  display: inline-block
}

@media screen and (max-width:900px) {
  .app .download-button--container.app-bottom a.app-button {
    margin: 0
  }
}

.app .download-button--container.app-bottom a.app-button img {
  max-width: 180px
}

.app-screenshots--section {
  padding: 0 0 3rem 0
}

.app-screenshots--section .screenshots-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.app-screenshots--section .screenshots-grid img {
  max-width: 285px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px
}

.app-screenshots--section .screenshots-grid h4 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto
}

.app-content--section {
  padding: 6rem 0
}

.app-content--section .two-col.wide-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.app-content--section .two-col.wide-left .col:first-child {
  width: 65%;
  position: relative;
  min-height: 400px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

@media screen and (max-width:900px) {
  .app-content--section .two-col.wide-left .col:first-child {
    width: 100%;
    margin-bottom: 20px
  }
}

.app-content--section .two-col.wide-left .col:first-child img {
  position: absolute;
  left: 50%;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
  max-width: none;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1
}

.app-content--section .two-col.wide-left .col:first-child .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: -webkit-linear-gradient(267deg, transparent 20%, #000 97%);
  background: linear-gradient(183deg, transparent 20%, #000 97%)
}

.app-content--section .two-col.wide-left .col:first-child .content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 70px 20px;
  z-index: 20;
  text-align: left
}

.app-content--section .two-col.wide-left .col:first-child .content-container * {
  color: #fff
}

.app-content--section .two-col.wide-left .col:first-child .content-container h3 {
  font-size: 24px;
  line-height: .5
}

.app-content--section .two-col.wide-left .col:first-child .content-container h3:last-of-type {
  line-height: 1
}

.app-content--section .two-col.wide-left .col:first-child .content-container p {
  font-size: 12px
}

.app-content--section .two-col.wide-left .col:last-child {
  width: 33%;
  background: -webkit-linear-gradient(267deg, #f6711f 6%, #ffa954 100%);
  background: linear-gradient(183deg, #f6711f 6%, #ffa954 100%);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media screen and (max-width:900px) {
  .app-content--section .two-col.wide-left .col:last-child {
    width: 100%
  }
}

.app-content--section .two-col.wide-left .col:last-child .inner {
  padding: 15px 30px;
  padding-top: 90px
}

@media screen and (max-width:900px) {
  .app-content--section .two-col.wide-left .col:last-child .inner {
    padding: 20px 30px
  }
}

.app-content--section .two-col.wide-left .col:last-child .inner h4 {
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  max-width: 94%;
  margin: 0 auto 30px auto
}

.app-content--section .two-col.wide-left .col:last-child .button-wrap {
  display: block;
  margin-top: 0
}

.app-button {
  display: inline-block;
  width: 10rem
}

.why-tlo {
  padding: 2rem;
  background: #ccc
}

.why-tlo .stars {
  width: 140px;
  margin: 5px 0
}

.ratings-box-container {
  position: relative;
  margin-top: 2rem;
  max-width: 350px
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  position: absolute;
  left: 30px;
  top: -14px
}

.ratings-box {
  position: relative;
  height: 230px;
  width: 350px;
  padding: .5rem 1rem;
  background: #fff
}

.ratings-box p {
  margin: 10px 0 0;
  text-align: left
}

.ratings-box h4 {
  margin: 0
}

.app-help {
  background: url("../images/app/help-bg.png") center top no-repeat;
  max-width: 1180px;
  margin: 2rem auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px
}

.app-help .container {
  min-height: 160px
}

.app-help .button {
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content
}

.app-help .help-icon {
  width: 160px;
  margin-right: 5rem
}

.download-app-cta {
  padding: 2rem 0
}

.download-app-cta h2 {
  margin: .5rem auto;
  font-size: 2.2rem;
  color: #000;
  font-weight: bold
}

.download-app-cta img {
  width: 500px;
  max-width: 100%
}

.download-app-cta .app-button {
  width: auto
}

@media screen and (max-width:1200px) {
  .why-tlo h2 {
    text-align: center
  }

  .ratings .ratings-box-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: 5px
  }

  .ratings .ratings-box {
    width: 300px
  }
}

@media screen and (max-width:1000px) {
  .banner .container .banner-app--container {
    padding: 1rem !important
  }

  .banner .container .banner-app--container h1 {
    font-size: 2rem;
    padding-top: 1rem
  }

  .banner .container .banner-app--container h2 {
    font-size: 1.5rem;
    margin-bottom: 15px
  }

  .app-screenshots--section .screenshots-grid {
    display: block
  }

  .ratings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .ratings .ratings-box-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto
  }

  .download-app-cta-container {
    display: block !important;
    margin: auto
  }

  .download-app-cta-container h2 {
    font-size: 2rem
  }
}

@media screen and (max-width:900px) {
  .app .main-app-section {
    padding: 2rem 0
  }

  .app .appinfo-container .three-col .col:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .app .appinfo-container .three-col .col:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .app .appinfo-container .three-col .col:last-child {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .app .app-screenshots--section {
    padding: 0 0 2rem 0
  }

  .app .app-content--section {
    padding: 2rem 0
  }
}

@media screen and (max-width:600px) {
  .banner .container .banner-app--container h2 {
    font-size: 1.2rem
  }

  .banner .container .download-button--container {
    padding-top: 10px
  }

  .site-container h2 {
    max-width: 85%;
    text-align: center;
    margin-left: auto;
    margin-right: auto
  }

  .site-container .why-tlo h2 {
    max-width: 90%
  }

  .content-container {
    padding: 1rem !important;
    display: block;
    margin: auto;
    position: relative !important
  }

  .content-container h3 {
    line-height: 1 !important;
    text-align: center
  }

  .app-help {
    margin-top: 6rem;
    margin: 5rem 1rem 1rem 1rem;
    background: url("../images/app/help-bg-mobile.png") center center no-repeat
  }

  .app-help .container {
    display: block;
    min-height: 230px
  }

  .app-help .help-icon {
    width: 150px;
    margin: -3rem auto auto
  }
}

.footer-accordions-section ul {
  list-style: none
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] {
  list-style: none;
  cursor: pointer;
  padding: 0 5rem;
  background: #e3e3e3;
  border-bottom: 1px solid #ccc
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] a {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.2rem 0;
  margin: 0
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] a:hover {
  opacity: 1
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] a:after {
  display: none
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] h4 {
  font-size: 1.5rem;
  color: #4c4d4a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  text-align: left
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] p {
  font-weight: 500;
  text-decoration: none;
  font-size: 1.5rem;
  color: #4c4d4a;
  margin: 0
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] p a {
  padding: 0 !important
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .view-more {
  font-size: 1.175rem
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] img {
  position: relative;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid #4c4d4a;
  margin-left: 1.5rem;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .active>h4 {
  color: #2c68a5
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .active .view-more {
  display: none
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .active img {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-expand {
  position: relative
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-expand.active:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-expand.active+.results-content {
  margin-top: 1.5625rem;
  display: block
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-expand.active+.results-content.no-slide {
  max-height: 100% !important;
  max-width: 80%;
  margin: 1rem auto
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content {
  overflow: hidden;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  margin-top: 0 !important;
  max-height: 0
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content p {
  font-size: 1.2rem;
  text-align: left;
  display: block;
  margin-bottom: 1rem
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content p.small {
  font-size: 1rem
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content p:last-child {
  padding-bottom: 1rem
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content ul {
  padding: 0 0 1rem
}

.footer-accordions-section li[itemtype="http://schema.org/Question"] .results-content ul li {
  text-align: left;
  font-size: 1.2rem
}

.footer-accordions-section .download-buttons {
  padding-top: 2rem
}

@media only screen and (max-width:1000px) {
  .footer-accordions-section li {
    padding: 1rem
  }
}

@media only screen and (max-width:768px) {
  .footer-accordions-section li p {
    display: none
  }
}

@media only screen and (max-width:600px) {
  .footer-accordions-section li {
    padding: .5rem
  }

  .footer-accordions-section li a {
    padding: .5rem
  }

  .footer-accordions-section li h4 {
    font-size: 1.2rem;
    text-align: left;
    max-width: 80%;
    text-align: left
  }

  .footer-accordions-section li img {
    width: 25px;
    height: 25px
  }

  .footer-accordions-section li .results-content p {
    font-size: 1rem
  }

  .footer-accordions-section li .results-content p:last-child {
    padding-bottom: 0
  }

  .footer-accordions-section li .results-expand.active+.results-content {
    margin-top: 1rem !important
  }
}

.lottery-flag {
  width: 3.75rem;
  height: 3.75rem
}

.lottery-flag-small {
  width: 2.5rem;
  height: 2.5rem
}

.cta-highlight {
  color: #f48b30
}

.read-more {
  text-decoration: underline;
  font-size: 1em;
  line-height: 1.4;
  cursor: pointer
}

.read-more.red {
  color: #d8262d
}

.select-options li img {
  width: 30px
}

.info-icon {
  cursor: pointer;
  border: 2px solid #2c68a5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 1.4375rem;
  height: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.info-icon:before {
  content: 'i';
  font-weight: 700;
  font-size: 13px;
  color: #2c68a5;
  font-family: "Open sans"
}

.signup-error {
  color: #d8262d;
  padding-bottom: .9375em;
  display: none
}

.is-label {
  padding: 5px;
  color: #fff;
  text-transform: uppercase;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 150px;
  font-size: .7rem;
  letter-spacing: 1px;
  position: absolute;
  min-width: 100px;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.is-label.superdraw {
  background: #e25f2c
}

.is-label.must-be-won {
  background: #e52a31
}

.is-label.jackpot-alert {
  background: #209e4d;
  letter-spacing: 0
}

.is-label.best-value {
  background: #365fdb
}

.is-label.record-breaker {
  background: #7050bb
}

.is-label.jackpot-cap {
  background: #d6830d
}

.is-label.high-demand {
  background: #f87523
}

.is-label.syndicate {
  background: #7a7b78
}

.is-label.joker {
  background: #84bf45
}

.is-label.multiplier {
  background: #84bf45
}

.is-label.expired {
  right: 1.2rem;
  padding: 3px;
  min-width: 90px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  background: red;
  color: #fff;
  font-weight: bold
}

.is-label.expired.is-checkout {
  right: 1.7rem
}

@media only screen and (max-width:600px) {
  .is-label.expired {
    font-size: .6rem;
    right: .9rem;
    padding: 2px;
    min-width: 75px
  }

  .is-label.expired.is-checkout {
    right: .3rem
  }
}

.mobile-slide .is-label {
  -webkit-transform: translate(-10px, -25px);
  -moz-transform: translate(-10px, -25px);
  -ms-transform: translate(-10px, -25px);
  transform: translate(-10px, -25px);
  max-width: 130px
}

.syndicates .is-label,
.cart-items .is-label,
.checkout-card .is-label {
  margin-top: 1px;
  position: relative;
  color: #fff !important
}

#account-draws .is-label {
  position: relative;
  color: #fff;
  font-size: .6rem;
  letter-spacing: 1px
}

#guaranteed-power-main {
  max-width: 28px;
  max-height: 28px;
  color: #fff;
  background-color: #e25f2c;
  margin-left: 1px;
  font-size: .875rem;
  max-width: none;
  max-height: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset
}

#guaranteed-power-main span {
  color: #fff;
  top: 48%;
  font-weight: normal
}

#guaranteed-power-g {
  max-width: 28px;
  max-height: 28px;
  color: #fff;
  background-color: #38a4d0;
  margin-left: 1px;
  font-size: .875rem;
  max-width: none;
  max-height: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset
}

#guaranteed-power-g span {
  color: #fff;
  top: 48%;
  font-weight: normal
}

#play-now--custom-form #guaranteed-power-g {
  max-width: none;
  max-height: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset
}

#play-now--custom-form #guaranteed-power-g span {
  font-weight: bold;
  top: 50%
}

#play-now--custom-form #guaranteed-power-main {
  max-width: none;
  max-height: none;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset
}

.g-explainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin: 0 !important;
  line-height: 2
}

.g-explainer .g-symbol {
  width: 100%;
  height: 100%;
  margin: auto 1%;
  padding: 1% 0;
  max-width: 28px;
  min-width: 28px;
  max-height: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff
}

.g-explainer #g-symbol-main {
  background-color: #e25f2c
}

.g-explainer #g-symbol-supp {
  background-color: #38a4d0
}

@media only screen and (max-width:600px) {
  .sm-display-none {
    display: none !important
  }
}

@media only screen and (min-width:980px) {
  .container-desktop {
    max-width: 67.5rem;
    margin: 0 auto;
    width: 95%
  }

  .el-desktop {
    display: block !important
  }

  .el-mobile {
    display: none
  }

  a {
    -webkit-transition: opacity ease-in-out .2s;
    transition: opacity ease-in-out .2s
  }

  a:hover {
    opacity: .6
  }

  .button:hover {
    opacity: 1
  }

  .button.button-white:hover {
    background: #fff;
    color: #e25f2c
  }

  .button.button-orange:hover {
    background: #e25f2c;
    color: #fff
  }

  .button.button-orange-solid:hover,
  .button.button-green-solid:hover,
  .button.button-blue-solid:hover {
    background-position: right center
  }

  .button.button-blue:hover {
    background: #2c68a5;
    color: #fff
  }

  .button.button-icon-inline:hover {
    background: #e25f2c;
    color: #fff;
    border-color: #e25f2c
  }

  .button.button-icon-inline:hover .button-icon {
    border-color: #fff !important
  }

  .button.button-icon-inline:hover svg * {
    fill: white;
    stroke: white
  }

  .button.button-icon-inline:hover svg circle {
    fill: transparent
  }

  .button.button-follow:hover {
    background-color: #2c68a5;
    color: #fff
  }

  .button.button-follow:hover svg * {
    fill: white
  }

  .read-more {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s
  }

  .read-more:hover {
    opacity: .7
  }
}

@media print {
  body:before {
    display: none
  }

  header,
  footer,
  .banner,
  .tab-nav,
  .lottery-cta,
  .lottery-regulations,
  .lottery-footer-cards,
  .lottery-blurb,
  .buttons-container,
  .footer-bottom,
  .footer-logo.secondary-logo {
    display: none !important
  }

  .container,
  .site-container {
    width: 100% !important;
    max-width: 100% !important
  }

  footer:before {
    display: none
  }

  * {
    -webkit-print-color-adjust: exact !important;
    -webkit-filter: opacity(1)
  }

  main {
    top: 0 !important
  }

  .history-print-title {
    display: block !important;
    background-image: -webkit-gradient(linear, left top, right top, from(#2da0f1), color-stop(44%, #289bee), color-stop(68%, #178be4), to(#0076d8));
    background-image: -webkit-linear-gradient(left, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    background-image: linear-gradient(to right, #2da0f1 0%, #289bee 44%, #178be4 68%, #0076d8 100%);
    padding: 20px 0
  }

  .history-print-title p {
    color: #fff;
    font-size: 28px;
    margin: 0;
    font-weight: 600
  }

  .history-row.history-row-titles {
    font-size: 24px !important;
    border-color: #7a7b78
  }

  .history-row {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -moz-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    font-size: 18px !important;
    padding: 0 30px !important
  }

  .history-row .date {
    width: 100px !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100px !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 100px !important;
    flex: 0 0 100px !important;
    margin-right: 20px !important
  }

  .history-row .lottery {
    width: 200px !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 200px !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 200px !important;
    flex: 0 0 200px !important;
    margin-right: auto !important
  }

  .history-row .cost,
  .history-row .balance {
    width: 100px !important;
    -webkit-box-flex: 0 !important;
    -webkit-flex: 0 0 100px !important;
    -moz-box-flex: 0 !important;
    -ms-flex: 0 0 100px !important;
    flex: 0 0 100px !important;
    font-size: 18px
  }

  .print-container {
    width: 85% !important;
    margin: 0 auto;
    display: block
  }

  .account-history {
    margin: 0 !important
  }

  .account-history .tabs-container {
    margin: 50px auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: visible;
    -webkit-box-shadow: 0 0 7px 3px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 7px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, .1);
    width: 85% !important
  }

  .account-history .tabs-container .history-row {
    padding: 0
  }

  .print-logo img {
    width: 180px
  }

  footer {
    page-break-inside: avoid
  }
}