/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

/**
Correct the inability to style clickable types in iOS and Safari.
*/

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

table {
  border-collapse: collapse;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

#lotto-widget .tw-border-yellow-400{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

#lotto-widget .tw-rounded-full{
  border-radius: 9999px;
}

#lotto-widget .tw-border-4{
  border-width: 4px;
}

#lotto-widget .tw-border-t-4{
  border-top-width: 4px;
}

#lotto-widget .tw-border-b-4{
  border-bottom-width: 4px;
}

#lotto-widget .tw-flex{
  display: flex;
}

#lotto-widget .tw-hidden{
  display: none;
}

#lotto-widget .tw-flex-row{
  flex-direction: row;
}

#lotto-widget .tw-flex-col{
  flex-direction: column;
}

#lotto-widget .tw-items-end{
  align-items: flex-end;
}

#lotto-widget .tw-items-center{
  align-items: center;
}

#lotto-widget .tw-justify-center{
  justify-content: center;
}

#lotto-widget .tw-justify-between{
  justify-content: space-between;
}

#lotto-widget .tw-font-medium{
  font-weight: 500;
}

#lotto-widget .tw-font-bold{
  font-weight: 700;
}

#lotto-widget .tw-h-12{
  height: 3rem;
}

#lotto-widget .tw-h-16{
  height: 4rem;
}

#lotto-widget .tw-text-2xl{
  font-size: 1rem;
  line-height: 2rem;
}

#lotto-widget .tw-text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

#lotto-widget .tw-text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

#lotto-widget .tw-mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

#lotto-widget .tw-mx-auto{
  margin-left: auto;
  margin-right: auto;
}

#lotto-widget .tw-mt-2{
  margin-top: 0.5rem;
}

#lotto-widget .tw-mr-2{
  margin-right: 0.5rem;
}

#lotto-widget .tw-mt-4{
  margin-top: 1rem;
}

#lotto-widget .tw-mb-4{
  margin-bottom: 1rem;
}

#lotto-widget .tw-mt-8{
  margin-top: 2rem;
}

#lotto-widget .tw-py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

*{
  --tw-shadow: 0 0 #0000;
}

*{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

#lotto-widget .tw-text-center{
  text-align: center;
}

#lotto-widget .tw-text-right{
  text-align: right;
}

#lotto-widget .tw-text-red-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

#lotto-widget .tw-w-12{
  width: 3rem;
}

#lotto-widget .tw-w-16{
  width: 4rem;
}

#lotto-widget .tw-w-3\/4{
  width: 75%;
}

#lotto-widget .tw-w-full{
  width: 100%;
}

@-webkit-keyframes tw-spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes tw-spin{
  to{
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tw-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tw-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes tw-pulse{
  50%{
    opacity: .5;
  }
}

@keyframes tw-pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes tw-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes tw-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

#lotto-widget
{
  width: 100%;
}

@media (min-width: 640px){
  #lotto-widget{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  #lotto-widget{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  #lotto-widget{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  #lotto-widget{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  #lotto-widget{
    max-width: 1536px;
  }
}

#lotto-widget{
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto', sans-serif!important;
}

#lotto-widget .lotto-widget-tab-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

#lotto-widget .lotto-widget-tab-link
{
  border-color: transparent;
  border-bottom-width: 2px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px){
  #lotto-widget .lotto-widget-tab-link{
    font-size: 1.5rem;
    line-height: 1;
  }
}

#lotto-widget .lotto-widget-tab-link{
  color: #e6e6e6;
}

#lotto-widget .lotto-widget-tab-link.active {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  color: black;
}

#lotto-widget .lotto-widget-tab {
  margin-bottom: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px){
  #lotto-widget .lotto-widget-tab{
    margin-bottom: 4rem;
    margin-top: 6rem;
  }
}

#lotto-widget .date {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.25rem;
  text-align: center;
}

#lotto-widget .lotto-widget-pane-header {
  border-top-width: 4px;
  border-bottom-width: 4px;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 2.25rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#lotto-widget .lotto-circle {
  border-radius: 9999px;
  border-width: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-right: 0.5rem;
  width: 4rem;
}

@media (min-width: 640px){
  #lotto-widget .lotto-circle{
    border-width: 4px;
    height: 6rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-right: 1rem;
    width: 6rem;
  }
}

@media (min-width: 768px){
  #lotto-widget .lotto-circle{
    font-size: 3rem;
    line-height: 1;
  }
}

#lotto-widget .lotto-circle{
  border-color: #fff4b6;
}

#lotto-widget .lotto-circle-small {
  border-radius: 9999px;
  border-width: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-right: 0.5rem;
  width: 3rem;
}

@media (min-width: 640px){
  #lotto-widget .lotto-circle-small{
    border-width: 4px;
    height: 5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-right: 1rem;
    width: 5rem;
  }
}

@media (min-width: 768px){
  #lotto-widget .lotto-circle-small{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

#lotto-widget .lotto-circle-small{
  border-color: #fff4b6;
}

#lotto-widget .lotto-widget-pane-header:after {
  font-family: FontAwesome;
  content: '\f078';
  float: right;
}

#lotto-widget .lotto-widget-pane-header.open:after {
  font-family: FontAwesome;
  content: '\f077';
  float: right;
}

#lotto-widget .lotto-widget-pane {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#lotto-widget table.lotto-widget-table {
  border-collapse: collapse;
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: 100%;
}

@media (min-width: 768px){
  #lotto-widget table.lotto-widget-table{
    font-size: 1.5rem;
    line-height: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
}

@media (min-width: 1024px){
  #lotto-widget table.lotto-widget-table{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

#lotto-widget table.lotto-widget-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

#lotto-widget table.lotto-widget-table thead tr {
  background-color: #e6e6e6;
}

#lotto-widget table.lotto-widget-table thead tr th, #lotto-widget table.lotto-widget-table tbody tr td{
  padding: 0.5rem;
}

#lotto-widget .cta {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-transform: uppercase;
  background-color: #d20a11;
}

@media (min-width: 640px){
  #lotto-widget .sm\:tw-border-8{
    border-width: 8px;
  }

  #lotto-widget .sm\:tw-h-20{
    height: 5rem;
  }

  #lotto-widget .sm\:tw-h-24{
    height: 6rem;
  }

  #lotto-widget .sm\:tw-text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  #lotto-widget .sm\:tw-text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  #lotto-widget .sm\:tw-mr-4{
    margin-right: 1rem;
  }

  #lotto-widget .sm\:tw-w-20{
    width: 5rem;
  }

  #lotto-widget .sm\:tw-w-24{
    width: 6rem;
  }

  #lotto-widget .sm\:tw-w-1\/2{
    width: 50%;
  }
}

@media (min-width: 768px){
  #lotto-widget .md\:tw-flex-row{
    flex-direction: row;
  }

  #lotto-widget .md\:tw-text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  #lotto-widget .md\:tw-text-left{
    text-align: left;
  }

  #lotto-widget .md\:tw-w-3\/4{
    width: 75%;
  }
}

@media (min-width: 1024px){
}

@media (min-width: 1280px){
}

@media (min-width: 1536px){
}