

@font-face {
    font-family: 'arialBlack';
    src: url('../fonts/arial/arialblack.eot');
    src: url('../fonts/arial/arialblack.eot?#iefix') format('embedded-opentype'),
         url('../fonts/arial/arialblack.woff') format('woff'),
         url('../fonts/arial/arialblack.ttf') format('truetype'),
         url('../fonts/arial/arialblack.svg#arialblack') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'franklinGothicDemi';
    src: url('../fonts/franklingothic/franklingothicdemi.eot');
    src: url('../fonts/franklingothic/franklingothicdemi.eot?#iefix') format('embedded-opentype'),
         url('../fonts/franklingothic/franklingothicdemi.woff') format('woff'),
         url('../fonts/franklingothic/franklingothicdemi.ttf') format('truetype'),
         url('../fonts/franklingothic/franklingothicdemi.svg#franklingothicdemi') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'impact';
    src: url('../fonts/impact/impact.eot');
    src: url('../fonts/impact/impact.eot?#iefix') format('embedded-opentype'),
         url('../fonts/impact/impact.woff') format('woff'),
         url('../fonts/impact/impact.ttf') format('truetype'),
         url('../fonts/impact/impact.svg#impact') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'malgun';
    src: url('../fonts/malgun/malgun.eot');
    src: url('../fonts/malgun/malgun.eot?#iefix') format('embedded-opentype'),
         url('../fonts/malgun/malgun.woff') format('woff'),
         url('../fonts/malgun/malgun.ttf') format('truetype'),
         url('../fonts/malgun/malgun.svg#malgun') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'malgunBold';
    src: url('../fonts/malgun/malgunbd.eot');
    src: url('../fonts/malgun/malgunbd.eot?#iefix') format('embedded-opentype'),
         url('../fonts/malgun/malgunbd.woff') format('woff'),
         url('../fonts/malgun/malgunbd.ttf') format('truetype'),
         url('../fonts/malgun/malgunbd.svg#malgunbd') format('svg');
    font-weight: normal;
    font-style: normal;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #555555;
  background: url(../img/bgbody.jpg?v=0) center top fixed no-repeat;
  background-size: 100%;
  background-color: #ddd;

  font-size: 1rem;
}

a {
  color: #337ab7;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

.hovertrans:hover {
  opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

p, li {
	color: #111;
}

.container {
  /*max-width: 1480px;*/
}

.bgcontainer {
  background: rgba(255,255,255,0.8);
  padding-top: .5rem
  /*border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(to right, darkblue, darkorchid) 1;
  border-radius: 1rem;  */
}

.d-flex-allctr {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-gradient2 {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.mt1 {
  margin-top:1rem;
}

.mt2 {
  margin-top:2rem;
}

.mt3 {
  margin-top:3rem;
}

.mb1 {
  margin-bottom:1rem;
}

.mb2 {
  margin-bottom:2rem;
}

.mb3 {
  margin-bottom:3rem;
}

.mr1 {
  margin-right:1rem;
}

.mr2 {
  margin-right:2rem;
}

.mr3 {
  margin-right:3rem;
}

.ml1 {
  margin-left:1rem;
}

.ml2 {
  margin-left:2rem;
}

.ml3 {
  margin-left:3rem;
}

.justify-content-center {
  justify-content: center;
}

.align-item-center {
  align-items: center;
} 

.centers {
  display: table;
  margin-left:auto;
  margin-right: auto;
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-danger {
    background-color: #d9534f;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #9c1a09;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffc407;
  border-top-color: #ffdc6a;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #9c1a09;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #950819;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #3fbbc0;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0 0px 0;
  top: 40px;
}

.top-header {
  background-color: #2D3030;
  height: 40px;
  z-index: 400;
  display: block;
  width: 100%;
  z-index: 400;
  position: relative;
  margin-bottom:20px;
}

.top-header-content {
	display: flex;
	line-height: 40px;
	justify-content: flex-end;
}

.top-header-content div:first-child {
	margin-right: 1rem;
}

.top-header-text a {
  color: #A5B6B4 !important;
  font-size: 13px !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-weight: 400;
}

.top-header-icon a {
  color: #A5B6B4 !important;
  font-size: 18px !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  font-weight: 400;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  height: 90px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar-nav {
background: #333333;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #dd1818, #333333);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #dd1818, #333333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.navbar-expand-lg .navbar-nav .nav-link {
  font-size: 1.3rem;
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
background: #f12711;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Appointment Button */
.appointment-btn {
  margin-left: 25px;
  background: #3fbbc0;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 6px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #555555;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #0098d5;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  text-align: center;
  font-weight: bold;
}

.mobile-nav a:active {
  background: #004c6a;
  color: #fff;
}

.mobile-nav a:visited {
  color: #fff;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3fbbc0;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #002475;
  overflow: hidden;
  position: relative;
  margin-top:2rem;
}

@media (min-width: 992px) {
  #hero {
    height: 368px;
  }
}

.slideshow-border {
  background: #fff;
  border-radius:10px 10px 0 0;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .container {
  text-align: center;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.4);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(63, 187, 192, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #3fbbc0;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 368px;
  }
  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    /*height: 160vh;*/
    height: 368px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Center section
--------------------------------------------------------------*/

.centerheading {
background: #333333;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #dd1818, #333333);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #dd1818, #333333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  /*margin-top:3rem;*/
  color: #fff;
  padding: 1rem;
  font-weight: normal;
  font-family:malgunBold;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}

.hdg-home {
  color: #1f1f1f;
  font-size:30px;
  font-family: malgunBold;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom:2rem;
}

.sidenav-hdg {
color: #fff;
font-weight: bold;
font-size: 23px;
text-align: center;
padding:10px;
font-style: italic;
position: relative;
background: #460904;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #cc5333, #460904);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #cc5333, #460904); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.sidenav {
padding: 15px;	
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,d7d7d7+100 */
background: #f5f5f5; /* Old browsers */
background: -moz-linear-gradient(top,  #f5f5f5 0%, #d7d7d7 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #f5f5f5 0%,#d7d7d7 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #f5f5f5 0%,#d7d7d7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#d7d7d7',GradientType=0 ); /* IE6-9 */
}

.sidenav ul, .sidenav li {
	margin:0; padding: 0; list-style: none;
}

.sidenav li {
	background: url(../img/sidenav-bullet.png?v=0) no-repeat center left;
  background-size: 16px;
	border-top:1px solid #bfbfbf;
	padding-top:7px;
	padding-bottom:7px;
	padding-left: 32px;
}

.sidenav li:first-child {
	border-top: none;
}

.sidenav li a {
	color: #9c1a09;
	font-weight: bold;
  text-decoration: none;
}

.sidenav li a:hover {
	color: #910b1b;
}

.bg-homeresult-wrapper {
	background: #00539a;
	padding:30px;
}

.hdg-home-main-result {
  height: 90px;
  min-height: 90px;
  max-height: 100%;
  background: linear-gradient(rgba(171, 18, 18, 0.66), rgba(18, 16, 2, 0.66)), url(../img/bg-home-result.jpg);
  color: #fff !important;
  background-size: auto 100%;
  text-shadow: 0px 1px 2px #000;
  border-bottom: 2px solid #444;
}

.panel-heading, .panel-footer {
    padding: 15px 30px;
}

.panel-title {
	font-size: 20px;
}

.body-homeresult {
	background: #fff;
	padding:10px 20px 20px 20px;
	text-align: center;
}

.kota h2{
  font-size: 24px;
  font-family: malgunBold;
  font-weight: normal;
  text-transform: capitalize;
  color: #1f1f1f;
  padding-bottom: 0px;
  margin-bottom:5px;
  padding-top: 10px;
}

.ball {
  background: url(../img/ball1.png?v=2) no-repeat;
  width: 67px;
  height: 67px;
  font-size: 24px;
  font-weight: 700;
  color: #9c1a09;
}


.prizeNum {
	margin-top:10px;
}

.viewmore {
  text-align: right;
}

.pageHeader, .pageContent {
	padding: 50px 50px 20px 50px !important;
}

.pageRight img {
  margin-bottom:20px;
}

.pageContent {
	background: #f8f9f9;
}

.panel, .panelWhite, .results-main-wrap, .entriesWrapper {
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 12%);
  border: none;
  margin: 30px 0;
}

.star {
  width: 70px;
}

.results-main-wrap {
  padding: 30px;
  margin-bottom: 20px;
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 15px #ddd;
}

.results-main-wrap.detail-result {
  padding:15px;
}

.detail-prize {
  font-size: 36px;
}

.date {
  width: 64px;
  height: 70px;
  background: url(../img/date.png?v=2) no-repeat;
}

.date .result-month {
  padding-top: .15rem;
}

.date .result-day {
  line-height: 1.5rem;
}

.date .result-dayname {
  line-height: 1.2rem;
  color: #9c1a09;
}

.result-jackpot {
	margin-top:5px;
}

.result-jackpot, .result-jackpot a {
	color: #212121;
	font-weight: bold;
	font-size: 14px;
}

.result-jackpot span {
	color: #9c1a09;
}

table.table-style {
  border: 1px solid #005fa9;
  /*padding: 10px;*/
  margin-bottom: 20px;
}

table.table-style th {
  border-bottom: 1px solid #005fa9;
}

.bdr-right {
  border-right: 1px solid #005fa9;
}

.bdr-top {
  border-top: 1px solid #005fa9;
}

.bdr-bottom {
  border-bottom: 1px solid #005fa9;
}



.pagination {
    text-align: center;
    margin: 20px;
    display: flex;
    justify-content: center;
}
.pagination a, .pagination strong {
    background: #0192e3;
    margin-right: 3px;
    padding: 4px 12px;
    text-decoration: none;
  line-height: 1.5em;
  color: #fff;
  
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.pagination a:hover {
    background-color: #BEBEBE;
    color: #fff;
}
.pagination a:active {
  background: rgba(190, 190, 190, 0.75);
}
.pagination strong {
  background: #535353;
    color: #fff;
}

.btns {
  background: #005fa9;
  color: #fff;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  width: 70%;
  margin-top: 8px;
  cursor: pointer;
}


.btns:hover {
  background: #003c6b;
}

.btns a {
  color: #fff;
  margin-top: 10px;
  padding-top: 20px;
}

.red-ball {
  background: url("../img/bg-red-ball.png") no-repeat;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  color: #5d0000;
}

#hot-lottos, #wild-card-2, #twobytwos {
background: #005fa9;  /* fallback for old browsers */
  padding: 20px;
  padding-bottom: 20px;
  /*width: 805px;*/
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.prize {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

#powerballs {
background: #ee1d25;  /* fallback for old browsers */
  padding: 20px 10px;
  width: 46.45%;
  -moz-border-radius: 10px;
  border-radius: 10px;
  float: left;
  margin: 0 10px;
  margin-bottom: 20px;
  text-align: center;
}

#fullname, #email, #message {
  padding:10px;
  width:95%;
  border:none;
  border:1px solid #ccc;
}

#simpan {
  background:none;
  border:none;
  width:89px;
  height:39px;
  background:url(../img/but_submit.png?v=3) no-repeat top;
  cursor:pointer;
}

#simpan:hover {
  background-position:bottom;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00c2f7+0,006783+100 */
background: linear-gradient(to bottom,  #9c1a09 0%,#460e06 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.footnav a {
  color: #fff;
  font-size: 16px;
  margin-left: 2rem;
}

.footnav a:first-child {
  margin-left: 0;
}

.copyright {
  color: #fff !important;
  padding:0 0 0 0;
}

.foottext {
  height: 69px;
  overflow: hidden;
}

