/* 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; }

html, body {
  background: #63CECA;
  width: 100%;
  height: 100%;
  overflow: hidden; }

main {
  width: 100%;
  height: 100%; }

.curtain {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #63CECA;
  z-index: 10;
  opacity: 0;
  transition: all 1.5s ease-out; }

.is-preloading .curtain {
  opacity: 1; }

.logo {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 20;
  transform: translate(0%, 0%);
  transition: all 0.7s ease-out; }
  .logo img {
    width: 240px;
    height: auto;
    transition: all 0.7s ease-out; }
  @media (max-width: 767px) {
    .logo {
      top: 20px;
      left: 20px; }
      .logo img {
        width: 180px; } }
  @media (max-width: 500px) {
    .logo {
      top: 15px;
      left: 15px; }
      .logo img {
        width: 130px; } }

.holder {
  display: flex;
  width: 100%;
  height: 100%;
  align-content: center; }

.msg_holder {
  flex: 4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center; }

.msg {
  padding: 15px 30px;
  flex-basis: 100%; }

.wheel-holder {
  flex: 7; }

.msg-divider {
  padding-left: 30px;
  padding-top: 15px;
  padding-bottom: 15px; }
  .msg-divider i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
    margin-right: 20px; }
    .msg-divider i:last-child {
      margin-right: 0; }

.msg {
  font-family: minerva-modern, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 24px; }
  .msg a {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1.14px;
    padding: 0 21px;
    display: inline-block;
    margin: 0 3px;
    color: white;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    height: 44px;
    line-height: 44px;
    position: relative; }
    .msg a:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      border: 2px solid white;
      transition: all 0.2s;
      display: block;
      z-index: 1; }
    .msg a:hover:before {
      border: 3px solid white; }
  .msg span {
    display: flex;
    justify-items: center; }

.msg-primary {
  font-size: 22px;
  line-height: 1.45455;
  font-weight: normal; }
  @media (max-width: 1023px) {
    .msg-primary {
      font-size: 19px; } }

.wheel-holder {
  position: relative;
  overflow: hidden;
  background: url(../img/background-oval.svg) 50% 50% no-repeat;
  background-size: contain; }
  .wheel-holder:before {
    content: '';
    display: block;
    padding-top: 100%;
    width: 100%; }

#wheel {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }
  #wheel > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  #wheel #wheel1 {
    z-index: 4; }
  #wheel #wheel2 {
    z-index: 3; }
  #wheel #wheel3 {
    z-index: 2; }
  #wheel #wheel4 {
    z-index: 1; }

.circle {
  background-color: #63CECA;
  border-radius: 50%;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 1s; }
  .circle.is-set {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2); }
  .circle.is-hovered {
    background: #72D7D4; }
  .circle img {
    width: 100%;
    height: auto;
    display: block; }

#wheel1 {
  width: 36.84211%; }

#wheel2 {
  width: 57.89474%; }

#wheel3 {
  width: 78.94737%; }

#wheel4 {
  width: 100%; }

#spincontrol {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100; }
  #spincontrol.circle-hover {
    cursor: grab; }
  #spincontrol.circle-grab {
    cursor: grabbing; }

@keyframes setAnimation {
  0% {
    background: #72D7D4; }
  30% {
    background: #d7f3f2; }
  100% {
    background: #63CECA; } }
#scramble-msg {
  display: none; }

@media (max-width: 1023px) {
  .msg a {
    height: 32px;
    line-height: 32px; } }
@media (max-width: 767px) {
  .holder {
    display: block;
    padding-top: 60px; }

  .msg {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.375;
    padding-left: 20px;
    padding-right: 20px; }

  .msg-primary {
    font-size: 16px; }

  .msg-divider {
    display: none; } }
@media (max-width: 500px) {
  .holder {
    padding-top: 40px; }

  .msg {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 12px; }
    .msg a {
      font-size: 12px;
      letter-spacing: 1px;
      line-height: 30px;
      height: 30px; }

  .msg-primary {
    font-size: 16px;
    line-height: 19px; } }
@media (max-width: 330px) {
  .msg {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
    padding-top: 5px;
    font-size: 11px; }
    .msg a {
      font-size: 11px;
      letter-spacing: 1px;
      line-height: 26px;
      height: 26px; }

  .msg-primary {
    font-size: 13px;
    line-height: 16px; } }

/*# sourceMappingURL=styles.css.map */
