@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
}

* {
  -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: Open sans, 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: inherit;
  font-family: inherit
}

b,
strong {
  font-weight: 700
}

.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
}

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: red;
  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', sans-serif;
  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
}

.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
}

.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
}

.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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  -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', sans-serif;
  -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', sans-serif;
  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
  }
}

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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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%
}

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

.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-name h2.home-banner-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, .2);
  margin: 1rem 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("../img/banner-desktop.png") 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%, #2d459b), to(transparent)), url("../img/banner-desktop.png") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, #2d459b 45%, transparent), url("../img/banner-desktop.png") 0% 0 no-repeat;
    background: linear-gradient(to top, #2d459b 45%, transparent), url("../img/banner-desktop.png") 0% 0 no-repeat
  }
}

@media(min-width:768px) and (max-width:1000px) {
  #banner-home .container {
    background: -webkit-gradient(linear, left bottom, left top, from(#2d459b), to(transparent)), url("../img/banner-tablet.png") center right no-repeat;
    background: -webkit-linear-gradient(bottom, #2d459b 0%, transparent), url("../img/banner-tablet.png") center right no-repeat;
    background: linear-gradient(to top, #2d459b 0%, transparent), url("../img/banner-tablet.png") center right no-repeat;
    margin: auto
  }
}

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

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

#banner-home-superdraw .container {
  background: url("../images/lottery-banners/superdraw-zero.jpg") center right no-repeat
}

@media screen and (max-width:1001px) {
  #banner-home-superdraw .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%, #0b5bb0), to(transparent)), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat;
    background: -webkit-linear-gradient(bottom, #0b5bb0 45%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat;
    background: linear-gradient(to top, #0b5bb0 45%, transparent), url("../images/lottery-banners/superdraw-zero.jpg") 0% 0 no-repeat
  }
}

@media(min-width:768px) and (max-width:1000px) {
  #banner-home-superdraw .container {
    background: -webkit-gradient(linear, left bottom, left top, from(#0b5bb0), to(transparent)), url(0.html) center right no-repeat;
    background: -webkit-linear-gradient(bottom, #0b5bb0 0%, transparent), url(0.html) center right no-repeat;
    background: linear-gradient(to top, #0b5bb0 0%, transparent), url(0.html) center right no-repeat;
    margin: auto
  }
}

@media screen and (max-width:600px) {
  #banner-home-superdraw .container {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #0b5bb0), 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, #0b5bb0 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, #0b5bb0 30%, rgba(0, 0, 0, 0) 75%, transparent), url("../images/lottery-banners/superdraw-mobile-zero.jpg") 95% 0 no-repeat !important;
    margin: auto
  }
}

@media screen and (max-width:1024px) {
  #banner-home-superdraw .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-home-superdraw .jackpot-play {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 1rem auto
}

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

@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
  }
}

#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
  }
}

.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: 3rem 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.2em;
  margin: 0 0 .625rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0;
  font-weight: 600;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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-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
}

.recent-winners {
  display: block;
  padding: 1rem 0 0
}

.recent-winners .container {
  padding: 1rem 0 0;
  width: 100%;
  position: relative;
  max-width: 100% !important
}

.recent-winners .winners-experience-title {
  padding: 1.5rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#2c68a5), to(#38a4d0));
  background: -webkit-linear-gradient(left, #2c68a5, #38a4d0);
  background: linear-gradient(to right, #2c68a5, #38a4d0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative
}

.recent-winners .winners-experience-title h2 {
  font-size: 1.8rem
}

.recent-winners .winners-experience-title h3 {
  font-size: 1.5rem;
  font-weight: normal
}

.recent-winners .winners-grid {
  width: 100%;
  max-width: 1180px;
  margin-bottom: 0;
  min-height: 375px;
  margin: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.recent-winners .winners-grid .winner-block {
  max-width: 283px;
  height: auto;
  min-height: 375px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .2)
}

.recent-winners .winners-grid .winner-block a {
  padding: 0;
  position: relative
}

.recent-winners .winners-grid .winner-block a:hover {
  opacity: 1
}

.recent-winners .winners-grid .winner-block a img {
  max-width: 600px;
  max-height: 338px
}

.recent-winners .winners-grid .winner-block p {
  margin: 0;
  padding: 0 10px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c68a5;
  line-height: 1.2;
  margin-top: .5rem
}

.recent-winners .winners-grid .winner-block p.date {
  font-weight: normal;
  font-size: 1rem;
  color: #4c4d4a
}

.recent-winners .winners-grid .winner-block span {
  display: block;
  border: 1px solid #2c68a5;
  padding: 5px;
  text-align: left;
  color: #2c68a5;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 1rem auto 0;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  border: 2px solid #2c68a5;
  padding: .5rem 2rem;
  font-weight: bold
}

@media only screen and (min-width:600px) {
  .recent-winners .winners-grid .winner-block span {
    position: absolute;
    bottom: 1rem;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }
}

.recent-winners .more-link {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: .5rem 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  border-radius: 2rem;
  position: absolute;
  right: 5%
}

@media only screen and (max-width:1100px) {
  .recent-winners .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
  }

  .recent-winners .winners-grid {
    margin-bottom: 1rem;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
  }

  .recent-winners .winners-grid .winner-block {
    margin: 1rem 0 !important
  }
}

@media only screen and (max-width:768px) {
  .recent-winners {
    -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
  }

  .recent-winners .winners-block-container .winners-block {
    -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
  }

  .recent-winners .winners-block-container .winners-block .winner-block {
    margin: 1rem 0
  }

  .recent-winners .winners-block-container .winners-block .winner-block p {
    padding-left: 0
  }

  .recent-winners .winners-block-container .winners-block .winner-block p:before {
    display: none
  }
}

@media only screen and (max-width:600px) {
  .recent-winners {
    padding: 0 0 1rem;
    background: none
  }

  .recent-winners .container {
    width: 92.5%
  }

  .recent-winners .winners-experience-title {
    padding: 1rem 0;
    display: block
  }

  .recent-winners .winners-experience-title h2 {
    font-size: 1.5rem
  }

  .recent-winners .more-link {
    display: block;
    position: unset;
    margin: 1rem auto .5rem;
    max-width: 120px;
    padding: .5rem 1rem
  }

  .recent-winners .winners-grid .winner-block {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    width: 100%
  }

  .recent-winners .winners-grid .winner-block a {
    padding-bottom: 1rem
  }
}

.recent-news #news-winners-grid {
  min-height: 375px
}

.recent-news .news-title {
  padding: 1.5rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#2c68a5), to(#38a4d0));
  background: -webkit-linear-gradient(left, #2c68a5, #38a4d0);
  background: linear-gradient(to right, #2c68a5, #38a4d0);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative
}

.recent-news .news-title h2 {
  font-size: 1.8rem
}

.recent-news .winner-block a {
  position: relative
}

.recent-news .publish-date {
  margin: 0 0 .5rem !important
}

.recent-news .news-label {
  right: 10px;
  margin: 0 !important;
  color: #fff !important;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
  border: 1px solid transparent !important;
  text-align: center !important
}

.recent-news .label-0 {
  background: rgba(216, 38, 45, .75)
}

.recent-news .label-1 {
  background: rgba(44, 104, 165, .75)
}

.recent-news .label-2 {
  background: rgba(56, 164, 208, .75)
}

.recent-news .label-3 {
  background: rgba(32, 157, 77, .75)
}

.recent-news .read-more {
  position: absolute;
  left: 10px;
  bottom: 0;
  text-decoration: none;
  padding: 3px !important
}

@media only screen and (max-width:600px) {
  .recent-news {
    padding: 0 0 1rem
  }

  .recent-news .news-title {
    background-position: 100% 0;
    padding: 1rem;
    display: block
  }

  .recent-news .news-title h2 {
    font-size: 1.5rem
  }
}

.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: 2rem .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-card-front{
  padding-bottom: 1rem!important;
}

.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: 12rem;
  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-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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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', sans-serif;
  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-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-footer-sponsors {
  background: #f8f8f8;
  padding: 2.1875rem 0;
  margin: 1rem 0
}

.footer-sponsors-container {
  margin-top: 1rem;
  width: 100%
}

.footer-sponsors-container img {
  width: 153px;
  height: 72px
}

@media only screen and (max-width:1000px) {
  .footer-sponsors-container img {
    width: 120px;
    height: 62px
  }
}

@media only screen and (max-width:768px) {
  .lottery-footer-sponsors {
    padding: 1rem 0
  }

  .footer-sponsors-container {
    display: block !important
  }

  .footer-sponsors-container img {
    display: block !important;
    margin: 0 1rem .5rem
  }
}

@media only screen and (max-width:600px) {
  .footer-sponsors-container {
    width: 600px
  }
}

.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', sans-serif;
  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: 32%;
  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: 50%
}

.result-listing.result-listing-section .col.numbers-col {
  width: 30%
}

.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
}

.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
  }
}

.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
  }
}

@-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)
  }
}

.lottery-flag {
  width: 234px;
}
@media only screen and (max-width:600px) {
  .lottery-flag {
    width: 134px;
    height: fit-content;
  }
  
}

.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
}

.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
}

@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 !important
  }

  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
  }
}