@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  background-color: #00142d;
  background: #fff;
	background: linear-gradient(to bottom, #01010d, #02023c);
  background-attachment: fixed;
  color: #fff;
  font-family: "ProximaNova";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  color: #fff;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.375rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

.button.alert {
  color: #fff;
}

.button.alert:hover,
.button.alert:focus {
  color: #fff;
}

.button.success {
  color: #fff;
}

.button.success:hover,
.button.success:focus {
  color: #fff;
}

.grid-container,
hr {
  max-width: 990px;
}

.slick-nav {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 30rem;
  background: rgba(255, 255, 255, 0.3);
  color: #333;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  margin-top: -24px;
  z-index: 93;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
  cursor: pointer;
}

.slick-nav:hover {
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.slick-prev {
  left: 2rem;
  padding-right: 4px;
}

.slick-next {
  right: 2rem;
  padding-left: 4px;
}

#header {
	background: linear-gradient(#fff, #fff);
  border-bottom: 5px solid #d50616;
}

#header .logo img {
  width: 120px;
}

#header .top-menu {
  background: #07076c;
  border-radius: 0 0 6px 6px;
  padding: .5rem 1rem;
}

#header .top-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

#header .top-menu ul li {
  display: block;
  line-height: 1;
  font-size: .875rem;
}

#header .top-menu ul li + li {
  padding-left: .5rem;
  margin-left: .5rem;
  border-left: 1px solid #999;
}

#header .top-menu ul li a {
  color: #fff;
}

#header .top-menu ul li a:hover {
  text-decoration: underline;
}

#header h1 {
  margin: 1rem 0;
  font-size: 1.75rem;
  display: block;
  color: #07076c;
  text-transform: uppercase;
}

#header #mainmenu ul {
  border: 1px solid #000;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#header #mainmenu ul li {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

#header #mainmenu ul li + li {
  border-left: 1px solid #000;
}

#header #mainmenu ul li a {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#00284a), to(#101010));
  background: linear-gradient(#07076c, #07076c);
  color: #fff;
  line-height: 32px;
  font-size: .875rem;
  -webkit-transition: all ease .1s;
  transition: all ease .1s;
}

#header #mainmenu ul li:hover a {
  
  background: linear-gradient(#d50616, #7e040e);
}

#header #mainmenu ul li.livedraw a {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), to(#730505));
  background: linear-gradient(#ff0000, #730505);
}

#content {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.maincontent {
  background: #101010;
  padding: 1rem 1rem 0;
  -webkit-box-shadow: 0px 2px 4px 2px #242728;
          box-shadow: 0px 2px 4px 2px #242728;
}

.table-container {
  background: #212121;
  padding: .5rem;
  margin-bottom: 1rem;
}

.table-container h3 {
  display: block;
  margin: -.5rem;
  margin-bottom: .5rem;
  padding: 0 .5rem;
  font-size: .875rem;
  line-height: 32px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#545454), color-stop(49%, #212121), color-stop(50%, #000000));
  background: linear-gradient(to bottom, #545454 0%, #212121 49%, #000000 50%);
}

table {
  border-collapse: separate;
  margin: 0;
}

table tbody {
  background: none;
  border: none;
}

table tbody tr {
  background: none;
}

table tbody tr td {
  padding: .25rem;
  line-height: 1.2;
  font-size: .875rem;
  text-align: center;
}

table tbody tr.boxday-tr1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#545454), to(#000));
  background: linear-gradient(to bottom, #fff, #646363);
}

table tbody tr.boxday-tr1 td {
  color: #07076c;
  line-height: 1.8;
  font-weight: bold;
  font-size: .875rem;
  text-align: center;
}

table tbody tr.boxday-tr2 {
  background: #000;
}

table tbody tr.boxday-tr3 {
  background: #1a0406;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: .5rem;
}

.section-header .sidebar-logo {
  margin-right: 1rem;
}

.section-header .sidebar-logo img {
  max-width: 64px;
}

.section-header .sidebar-text h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.section-header .sidebar-text h5 {
  font-size: .75rem;
  color: #fff;
  margin: 0;
}

.full-payment-label, .entry-header {
  margin-bottom: 1rem;
}

.full-payment-label h4, .entry-header h4 {
  text-align: center;
  display: block;
  margin: 0;
 background: linear-gradient(to bottom, #fff, #646363);
  color: #07076c;
  font-size: .875rem;
  padding: 1rem 0;
}

.winner-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid #545454;
}

.winner-entry .winner-label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  text-align: center;
  font-size: 1.375rem;
  color: #d50616;
  font-weight: bold;
}

.winner-entry .winner-number {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  text-align: center;
  font-size: 1.375rem;
  color: #fff;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 5px;
}

.secondary-winner-container {
  padding: .5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.secondary-winner-container .secondary-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  text-align: center;
	color:#fff;
}

.secondary-winner-container .secondary-section + .secondary-section {
  border-left: 1px solid #545454;
}

.secondary-winner-container .secondary-section h5 {
  font-size: 1rem;
  font-weight: bold;
}

.secondary-winner-container .secondary-section ul {
  display: block;
  margin: 0;
  padding: 0;
}

.secondary-winner-container .secondary-section ul li {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: 2px;
}

.secondary-winner-container .secondary-section ul li.active {
  -webkit-animation: blink .1s 1 ease-in-out;
          animation: blink .1s 1 ease-in-out;
}

.secondary-winner-container .secondary-section ul li:nth-child(1) {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.secondary-winner-container .secondary-section ul li:nth-child(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.secondary-winner-container .secondary-section ul li:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.secondary-winner-container .secondary-section ul li:nth-child(4) {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.secondary-winner-container .secondary-section ul li:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bottom-content {
  margin: 0 -1rem 0;
  background: #fff;
}

.footer-guide {
  background: url(../images/bgfoot.png) repeat-x bottom;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	padding-bottom: 3rem;
}

.footer-guide .guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
}

.footer-guide .guide + .guide {
  margin-left: 1rem;
}

.footer-guide .guide .guide-icon {
  margin-right: .25rem;
  width: 52px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
}

.footer-guide .guide .guide-icon img {
  display: block;
}

.footer-guide .guide h3 {
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  color: #212121;
}

.footer-guide .guide p {
  font-size: 12px;
  line-height: 1.2;
  margin: 0;
  color: #212121;
}

.footer-links {
  padding: 1rem;
}

.footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-links ul li {
  display: block;
  font-size: .75rem;
}

.footer-links ul li a {
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-links ul li a .icon {
  margin-right: .5rem;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

#footer {
  padding: 1rem 0;
}

#footer .copyright {
  font-size: .75rem;
	text-align: center;
}

#footer .copyright a {
  color: #d50616;
  font-weight: bold;
}

.btnred{
	background: linear-gradient(#ff0000, #730505);
}
.livedraw-container {
  background: url(../images/bg.jpg) no-repeat center center;
  background-size: cover;
  margin: 0 -1rem 1rem;
}

.livedraw-container .full-payment-label {
  margin-bottom: 0;
}

.article {
  margin-bottom: 1rem;
}

.article h1 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.article .article-content {
  background: #fff;
  padding: 2rem;
  color: #212121;
}
/*# sourceMappingURL=app.css.map */