.checker .ball span, .checker__grid .ball span, .checker__close span, .checker__results .ball span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.checker__numbers {
  background: linear-gradient(to bottom, #2ba2d9 0%, #1d5eb1 100%); }

.checker {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  z-index: 999;
  width: 100%; }
  @media (max-width: 767px) {
    .checker {
      justify-content: center; } }
  .checker.fixed {
    position: fixed;
    top: 0; }
  .checker__status {
    color: #3a66ab;
    font-size: 1.5em; }
    @media (max-width: 767px) {
      .checker__status {
        margin-bottom: 10px;
        font-size: 1.2em;
        text-align: center; } }
    .checker__status span {
      display: block;
      font-size: .75em; }
  .checker__balls {
    display: flex; }
  .checker .ball {
    width: 60px;
    height: 60px;
    margin-left: 10px;
    border-radius: 5px;
    background: #3a66ab;
    color: #fff;
    position: relative;
    font-size: 2.2em;
    font-weight: 800; }
    @media (max-width: 767px) {
      .checker .ball {
        font-size: 1.5em;
        width: 38px;
        height: 38px; } }
  .checker__numbers {
    padding: 40px;
    margin-bottom: 40px; }
  .checker__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .checker__grid .ball {
      background: #fff;
      width: calc(100% /17);
      height: 47px;
      border-radius: 3px;
      margin: 0 2px 5px 2px;
      position: relative;
      font-size: 1.4em;
      transition: all .2s ease-in-out; }
      @media (max-width: 767px) {
        .checker__grid .ball {
          width: calc(100% / 6);
          height: 38px; } }
      .checker__grid .ball.Selected {
        background: #ffdf3e;
        font-weight: 800; }
      .checker__grid .ball.Disabled {
        opacity: .5; }
  .checker__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px; }
    .checker__buttons .btn {
      padding: 10px; }
  .checker__close {
    width: 35px;
    height: 35px;
    background: #fe4e5b;
    position: absolute;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    top: -18px;
    right: 10px;
    cursor: pointer; }

.checker__results {
  margin-bottom: 20px;
  display: none; }
  .checker__results.is-active {
    display: block; }
  .checker__results__header {
    display: flex;
    justify-content: space-between;
    background: #3a66ab;
    padding: 5px 20px;
    color: #fff;
    text-align: center; }
    .checker__results__header div:first-child {
      width: 25%; }
    .checker__results__header div:last-child {
      width: 20%; }
  .checker__results .balls {
    display: flex;
    flex: 1;
    justify-content: center; }
    @media (max-width: 767px) {
      .checker__results .balls {
        order: 2;
        margin: 20px 0; } }
  .checker__results .ball {
    width: 48px;
    height: 48px;
    margin-left: 10px;
    border-radius: 5px;
    background: #fe4e5b;
    color: #fff;
    position: relative;
    font-size: 1.75em;
    font-weight: 800; }
    @media (max-width: 767px) {
      .checker__results .ball {
        width: 32px;
        height: 32px;
        font-size: 1.3em; } }
    .checker__results .ball.Disabled {
      background: #dcdcdd; }

.checker__result {
  margin: 5px 0;
  padding: 15px;
  background: #f4f4f4;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center; }
  @media (max-width: 767px) {
    .checker__result {
      flex-wrap: wrap; }
      .checker__result:nth-child(odd) {
        background: #fff; } }
  .checker__result.jackpot {
    background: #ffdf3e; }

.checker__date {
  display: flex;
  align-items: center;
  width: 25%;
  line-height: 1em; }
  @media (max-width: 767px) {
    .checker__date {
      width: 60%;
      order: 1; } }
  .checker__date .icon {
    width: 25px;
    margin-right: 10px; }
  .checker__date img {
    width: 100%; }
  .checker__date span {
    display: block;
    font-weight: 700; }

.checker__win {
  width: 20%;
  text-align: center;
  color: #3a66ab; }
  @media (max-width: 767px) {
    .checker__win {
      width: 40%;
      text-align: right;
      order: 1; } }
  .checker__win span {
    display: block; }
    .checker__win span:first-child {
      font-size: 1.4em;
      font-weight: 700; }
  .checker__win span.nomatch {
    font-size: 1em;
    font-weight: 100; }

.checker__jackpot {
  color: #fe4e5b;
  font-size: 1.3em;
  line-height: 1.5em; }

.btn__reset {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center; }
  .btn__reset:hover {
    text-decoration: none;
    background: #fe4e5b; }
  .btn__reset img {
    width: 25px;
    height: 25px;
    margin-right: 10px; }

.checker__tabs {
  display: flex;
  margin-top: 10px; }

.checker__tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcdcdd;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all .2s ease-in-out; }
  .checker__tab h2 {
    margin: 0;
    color: #3a66ab; }
    @media (max-width: 767px) {
      .checker__tab h2 {
        font-size: 1.3em;
        padding: 5px; } }
  .checker__tab.is-active {
    background: rgba(58, 102, 171, 0.9); }
    .checker__tab.is-active h2 {
      color: #fff; }
  @media (max-width: 767px) {
    .checker__tab img {
      width: 50px; } }
  @media (max-width: 767px) {
    .checker__tab {
      justify-content: center;
      padding: 5px;
      border-radius: 7px 7px 0 0; } }

/*# sourceMappingURL=_sourcemaps/checker.css.map */
