/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* basics */

body, html {
    font-family: Neris,"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    line-height: 1.42857143;
    color: #fff;
    border: 1px solid darkgrey;
    position: relative;
    height: 100%;
    background-color: white;
}

* {
    box-sizing: border-box;
}

/* bar */

.bar {
    width: 100vw;
    height: 4vh;
    position: relative;
    overflow: hidden;
    background-color: #b21c49;
    border: 2px solid #b21c49;
    margin: -2px -2px 10px -2px;
}

/* caption area */
h1 {
    line-height: 1.1;
    font-size: 1.25em;
    color: #b21c49;
    font-family: "Neris-Light", "Neris";
    letter-spacing: -0.02em;
    text-align: center;
}

.countdown {
    font-size: 1em;
    color: #035b81;
    font-family: "Neris-Light", "Neris";
    letter-spacing: 0em;
    text-align: center;
}

.timer-svg {
  height: 1.5em;
  width: 1.5em;
  top: .3em;
  position: relative;
  margin: 0 5px;
}

.timer {
  font-family: "Neris";
  margin: 0 5px;
}

.background-svg {
  height: 45vh;
  width: 45vw;
  margin: 5px auto;
  display: block;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}

/* number input */

form {
    vertical-align: middle;
    text-align:center;
    margin: 5px auto;
    padding: 5vh;
    position: absolute;
    bottom: 0;
    width: 100%;
}

input.circle {
    width: 45px;
    height: 45px;
    padding: 10px 5px;
    margin: 0 5px;
    display: inline-block;
    line-height: 1;
    border-radius: 50%;
    color: #000;
    text-align: center;
    background: #FFF;
    border: 1px solid #848484;
    font-size: 24px;
    user-select: text;
    -webkit-appearance: textfield;
    -webkit-rtl-ordering: logical;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: none;
}

input.circle:focus {
    border-color: #ffa900;
}

input.circle.error {
    border-color: #ffa900;
    border-width: 3px;
}

@media (max-width: 420px) {
    input.circle {
        width: 35px;
        height: 35px;
        padding: 5px;
        margin-right: 0;
        font-size: 15px;
    }
}

/* Quick pick */

.quick-pick {
    color: #b21c49;
    font-size: 18px;
    line-height: 1.42857143;
    display: inline-block;
    padding-left: 4px;
    cursor: pointer;
}

.quick-pick .icon, .quick-pick .label {
    display: inline-block;
    margin-left: 5px;
}

.quick-pick .icon .icon-bar {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 1px;
    background-color: #ffa900
}

.quick-pick .icon .icon-bar:nth-child(1) {
    margin-left: 6px;
    margin-bottom: 2px
}

.quick-pick .icon .icon-bar:nth-child(2) {
    margin-left: 3px;
    margin-bottom: 2px
}

.quick-pick .icon .icon-bar:nth-child(3) {
    margin-left: 0;
    margin-bottom: 0
}

@media (max-width: 420px) {
    .quick-pick {
        font-size: 15px;
    }
}

/* play now button */

button.play-now {
    width: 50vw;
    border-radius: 25px;
    border-width: 2px;
    padding: 8px 24px;
    font-size: 1em;
    font-family: Neris-SemiBold, Neris;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.5;
    color: #b21c49;
    border: 5;
    border-color: #b21c49;
    cursor: pointer;
    margin-top: 15px;
}

@media (max-width: 420px) {
    button.play-now {
      font-size: 0.7em;
    }
}

button.play-now:focus {
  outline: 0;
}

button.play-now:active {
    background: #97001d;
    box-shadow: none;
    color: #fff;
}

#error {
    color: rgb(254, 215, 49);
    width: 250px;
    height: 25px;
    font-size: 0.7em;
    text-align: center;
    display: block;
    margin: auto;
}

/* Font Face */
@font-face {
    font-family: Neris;
    src: url(./Neris-SemiBold.woff) format('woff');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Neris-Light;
    src: url(./Neris-Light.woff) format('woff');
    font-style: normal
}

