:root {
  --wheel-font: 'Lato', 'Quicksand', sans-serif;
  --wheel-size: 50vh;
  --wheel-slice-spacing: 50px;
  --wheel-border-size: 5px;
  --wheel-color: #fcb919;
  --neutral-color: white;
  --PI: 3.14159265358979;
  --nb-item: 0;
  --item-nb: 0;
  --selected-item: 0;
  --nb-turn: 5;
  --spinning-duration: 5s;
  --reset-duration: 0s;
}

/* Conteneur de la roue = cercle rose extérieur */
.wheel-container {
  display: block;
  position: relative;
  box-sizing: content-box;
  width: calc(var(--wheel-size) + 2 * var(--wheel-border-size));
  height: calc(var(--wheel-size) + 2 * var(--wheel-border-size));
  padding: 3px;
  margin: auto;
  background-color: #ffecad;
  border: solid var(--wheel-color) 5px;
  border-radius: 50%;
  user-select: none;
}

/* Roue */
.wheel {
  display: block;
  position: relative;
  box-sizing: content-box;
  margin: auto;
  width: var(--wheel-size);
  height: var(--wheel-size);
  overflow: hidden;
  border-radius: 50%;
  border: solid var(--wheel-color) var(--wheel-border-size);
  background-color: var(--wheel-color);
  transition: transform var(--reset-duration);
  transform: rotate(0deg);
  cursor: pointer;
}

.wheel.done {
  transition: transform 0s !important;
  transform: rotate(calc(-360deg * var(--selected-item) / var(--nb-item, 1))) !important;
}

.wheel.spinning {
  transition: transform var(--spinning-duration);
  transform: rotate(calc(var(--nb-turn) * 360deg + (-360deg * var(--selected-item) / var(--nb-item, 1))));
}

/* Centre de la roue = rond blanc au centre */
.wheel-center {
  display: block;
  position: absolute;
  content: '';
  background-image: url(../../images/dial.eeb289.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%) rotate(90deg);
  border-radius: 50%;
}

/* Element sur la roue */
.wheel-item {
  display: block;
  position: absolute;
  box-sizing: border-box;

  /* position de l'item */
  top: 50%;
  left: 50%;
  width: 50%;
  transform-origin: center left;
  transform: translateY(-50%) rotate(calc(var(--item-nb) * (360deg / var(--nb-item, 1))));

  /* texte */
  color: var(--neutral-color);
  text-align: right;
  padding: 0 25px 0 80px;
  font-family: var(--wheel-font);
  font-weight: bold;
}

/* Background de l'élément = triangle rose plus clair */
.wheel-item:before {
  content: ' ';
  display: block;
  position: absolute;
  box-sizing: border-box;
  z-index: -1;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 0px;
  opacity: 0.25;

  /*
    Largeur du triangle
    Je ne sais pas pourquoi j'ai besoin d'ajouter
      " + var(--wheel-size) / 2 " dans slice-max-width  ==> donne 2.PI.R + R
    mais globalement ca marche a peu près bien
    TODO: A étudier
  */
  --slice-max-width: calc(var(--PI) * var(--wheel-size) + var(--wheel-size) / 2);
  --slice-width: calc((var(--slice-max-width) / var(--nb-item)) - var(--wheel-slice-spacing));
  border: solid transparent calc(var(--slice-width) / 2);
  border-left: solid transparent 0;
  /* profondeur du triangle = du centre de la roue à la bordure = 300px / 2 */
  border-right: solid var(--neutral-color) calc(var(--wheel-size) / 2);
}

.react-root{}.react-root .page-container{background-color:lightgrey;overflow:auto;display:block}.react-root .layout-cb{padding:1rem 2rem;max-width:150rem;width:100%;min-height:100vh;margin-left:auto;margin-right:auto}@media screen and (max-width: 768px){.react-root .layout-cb{padding:1rem 0}}.react-root div:focus{outline:none !important}.react-root .reward-center{margin-left:auto;margin-right:auto;max-width:150rem;padding:0 2rem}.react-root .header-cb{display:-webkit-box;display:flex;box-shadow:rgba(0,0,0,0.1) .1rem .2rem .2rem .1rem;margin-bottom:2rem;border-radius:0.5rem;background-color:#fff}.react-root .header-cb__item{padding:1rem 2rem;font-weight:bold}.react-root .header-cb__item:first-child{border-bottom-left-radius:0.5rem}.react-root .header-cb__selected{border-bottom:solid 0.5rem #1c3866}.react-root .rewards-top{margin:2rem 0;border-radius:1rem}.react-root .rewards-top__points{display:-webkit-box;display:flex;background-image:-webkit-gradient(linear, left top, right top, color-stop(41%, #a5d4ff), color-stop(92%, #d1e8ff));background-image:linear-gradient(to right, #a5d4ff 41%, #d1e8ff 92%);-webkit-box-pack:justify;justify-content:space-between;border-top-left-radius:0.5rem;border-top-right-radius:0.5rem}@media screen and (max-width: 768px){.react-root .rewards-top__points{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}.react-root .rewards-top__tooltip{box-shadow:rgba(0,0,0,0.1) .1rem .2rem .2rem .1rem;width:320px;padding:1rem;margin-top:1rem;margin-right:auto;margin-left:auto;background-color:#fff;border-radius:0.5rem}.react-root .rewards-top__left{display:-webkit-box;display:flex;padding:2rem 3rem;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .rewards-top__left{padding-bottom:0;margin-bottom:2rem}}@media screen and (max-width: 480px){.react-root .rewards-top__left{margin-bottom:2rem;padding:2rem 1rem;padding-bottom:0}}.react-root .rewards-top__container{display:-webkit-box;display:flex;width:calc(100% + 2rem);margin-left:-1rem}.react-root .rewards-top__slider-arrow{box-shadow:rgba(0,0,0,0.1) .1rem .2rem .2rem .1rem;color:#334350;background-color:#fff}.react-root .rewards-top__slider-arrow:hover,.react-root .rewards-top__slider-arrow:active{background-color:#fff !important;color:#334350 !important}.react-root .rewards-top__scratch-card{-webkit-box-flex:0;flex:0 0 auto;margin:0 1rem}.react-root .rewards-top__img{z-index:2;height:6rem}.react-root .rewards-top__img--avg{height:10rem;width:10rem}.react-root .rewards-top__img--small{height:3rem}.react-root .rewards-top__img--big{height:16rem;border-radius:1rem}.react-root .rewards-top__lp{margin-left:2rem}@media screen and (max-width: 480px){.react-root .rewards-top__lp{width:70%}}.react-root .rewards-top__lp-top{display:-webkit-box;display:flex}@media screen and (max-width: 480px){.react-root .rewards-top__lp-top{display:-webkit-box;display:flex}}.react-root .rewards-top__lp-bottom{display:-webkit-box;display:flex;font-size:1.4rem;background-color:#334350;border-radius:1.5rem;-webkit-box-align:center;align-items:center;padding:1rem;color:#fff}@media screen and (max-width: 480px){.react-root .rewards-top__lp-bottom{display:none}}.react-root .rewards-top__right{display:-webkit-box;display:flex;padding:2rem 3rem;padding-left:0;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .rewards-top__right{padding:2rem 3rem;flex-wrap:wrap;padding-top:0;position:relative}}@media screen and (max-width: 480px){.react-root .rewards-top__right{flex-wrap:wrap;padding:2rem 1rem;padding-top:0}}.react-root .rewards-top__rp-left{margin-top:-1.2rem}@media screen and (max-width: 768px){.react-root .rewards-top__rp-left{position:relative;width:100%}}.react-root .rewards-top__rp-text{text-align:center}@media screen and (max-width: 768px){.react-root .rewards-top__rp-text{position:absolute;top:-9rem;right:0;width:calc(100% - 14rem);margin-right:2rem}}@media screen and (max-width: 480px){.react-root .rewards-top__rp-text{width:calc(100% - 12rem)}}.react-root .rewards-top__rp-sw{background-color:#334350;padding:1rem 2rem 1rem 9rem;border-radius:0.5rem;color:#fff;margin-left:-4rem}.react-root .rewards-top__rp-sw:focus,.react-root .rewards-top__rp-sw:hover{color:#fff;background-color:#334350 !important}.react-root .rewards-top__rp-sw span{width:100%;right:0;margin-left:auto;text-align:center}@media screen and (max-width: 768px){.react-root .rewards-top__rp-sw{position:absolute;top:-5.5rem;left:0;width:96%;-webkit-transform:translate(0, -22%);transform:translate(0, -22%);margin-left:4%}}.react-root .rewards-top__goodies{max-width:100% !important;min-width:30rem;width:60%;height:60%;max-height:50rem}@media screen and (max-width: 768px){.react-root .rewards-top__goodies{width:100%;height:100%;max-height:100%}}.react-root .rewards-top__goodies table{overflow:scroll;border:none}.react-root .rewards-top__goodies table th{background-color:#d1e8ff;font-weight:bold}.react-root .rewards-top__goodies table tr{background-color:#e6f3ff}.react-root .rewards-top__goodies table .table__row{border:none !important}.react-root .rewards-top__address{padding:1rem;border-radius:3rem;background-color:#fcd04d;margin-bottom:2rem;text-align:center}.react-root .rewards-top__address a{text-decoration:underline;font-weight:800;color:#000}.react-root .rewards-top__underlined{font-size:2rem;padding-bottom:0.5rem;border-bottom:0.2rem solid #000}@media screen and (max-width: 768px){.react-root .rewards-top__rp-right-tapable{flex-basis:100%;-webkit-box-pack:end;justify-content:flex-end}}.react-root .rewards-top__rp-right{display:-webkit-box;display:flex;margin-left:1.5rem;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between}.react-root .rewards-top__cards{background-color:#fff;padding:2rem 3rem;border-bottom-left-radius:0.5rem;border-bottom-right-radius:0.5rem}.react-root .rewards-top__cards-h{margin-bottom:1rem}.react-root .rewards-top__cards-item{width:32rem;height:17rem;margin:0 1rem;border:solid 0.1rem #31a5a5;border-radius:1rem}.react-root .rewards-how{display:-webkit-box;display:flex;padding:2rem 3rem;border-radius:0.4rem;margin:2rem 0;background-color:#334350;color:#fff;-webkit-box-pack:justify;justify-content:space-between;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .rewards-how{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:stretch;align-items:stretch}}.react-root .rewards-how__left{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.react-root .rewards-how__left-r{margin-left:2rem}.react-root .rewards-how__right{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .rewards-how__right{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;margin-top:1rem}}.react-root .rewards-how__right-r{margin-left:1rem;color:#fff;padding:1rem 2rem;background-color:#ff506c;font-weight:bold;border-radius:0.3rem}@media screen and (max-width: 768px){.react-root .rewards-how__right-r{text-align:center;margin-top:1rem;width:100%}}.react-root .rewards-earn{margin:2rem 0;padding:2rem 3rem;background-color:#fff;border-radius:0.5rem}.react-root .rewards-earn__container{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;width:35%;margin-left:auto;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .rewards-earn__container{width:100%}}.react-root .rewards-earn__item{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:justify;justify-content:space-between;background-color:#e6f3ff;padding:2rem;margin:1rem 0;border-radius:0.5rem}@media screen and (max-width: 768px){.react-root .rewards-earn__item{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:start;align-items:flex-start}}.react-root .rewards-earn__left{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}.react-root .rewards-earn__icontainer{position:relative;width:6rem;height:6rem;border-radius:50%;background-color:#fff;flex-shrink:0}.react-root .rewards-earn__icontainer--large{width:9rem;height:9rem}@media screen and (max-width: 480px){.react-root .rewards-earn__icontainer--large{height:6rem;width:6rem}}.react-root .rewards-earn__center-img{position:absolute;top:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);left:50%}@media screen and (max-width: 480px){.react-root .rewards-earn__center-img{height:4rem;width:4rem}}.react-root .rewards-earn__full-img{position:relative;height:100%;width:100%}.react-root .rewards-earn__img{margin:0 0.5rem}.react-root .rewards-earn__img:first-child{margin:0 0.5rem 0 0}.react-root .rewards-earn__left-r{margin-left:1rem}.react-root .rewards-earn__helper{color:grey}.react-root .rewards-earn__bottom{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;margin-top:0.5rem}.react-root .rewards-earn__bottom h5{margin-bottom:0}.react-root .rewards-earn__icons{display:-webkit-box;display:flex;margin-top:0.7rem}.react-root .rewards-earn__icons span{margin:auto;font-weight:800}.react-root .rewards-earn__icons--whatsapp{background-size:contain;-o-object-fit:contain;object-fit:contain;width:2.5rem;height:2.5rem;cursor:pointer;margin:1rem 0.75rem;background-image:url(../../images/whatsapp.069703.png);-webkit-transform:scale(1.3);transform:scale(1.3)}.react-root .rewards-earn__icons--messenger{background-size:contain;-o-object-fit:contain;object-fit:contain;width:2.5rem;height:2.5rem;cursor:pointer;margin:1rem 0.75rem;background-image:url(https://assets-v2.scaler.com/packs/images/messenger.cded5b.png)}.react-root .rewards-earn__icons--linkedin{background-size:contain;-o-object-fit:contain;object-fit:contain;width:2.5rem;height:2.5rem;cursor:pointer;margin:1rem 0.75rem;background-image:url(https://assets-v2.scaler.com/packs/images/linkedin.7f2ac3.png)}.react-root .rewards-earn__icons--gmail{background-size:contain;-o-object-fit:contain;object-fit:contain;width:2.5rem;height:2.5rem;cursor:pointer;margin:1rem 0.75rem;background-image:url(https://assets-v2.scaler.com/packs/images/gmail.01e1db.png)}.react-root .rewards-earn__right-f{padding:1rem;background-color:#fff;border:dashed 0.1rem #1c3866;border-radius:0.2rem;width:100%;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;min-width:20rem}@media screen and (max-width: 768px){.react-root .rewards-earn__right-f{width:100%;margin-top:2rem}}.react-root .rewards-earn__right-s{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;color:#fff;background-color:#ff506c;padding:1rem 2rem;font-weight:bold;-webkit-box-pack:center;justify-content:center;border-radius:0.5rem}.react-root .rewards-earn__right-s:hover{background-color:#ff506c !important}@media screen and (max-width: 768px){.react-root .rewards-earn__right-s{flex-basis:100%;margin-top:2rem}}.react-root .rewards-earn__right-l{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;flex-wrap:wrap}@media screen and (max-width: 768px){.react-root .rewards-earn__right-l{width:100%}}.react-root .rewards-referral-link{text-decoration:underline;font-size:1.2rem;margin-left:1rem}@media screen and (max-width: 768px){.react-root .rewards-referral-link{flex-basis:100%;margin-left:0;margin-top:1rem}}.react-root .rewards-container{margin:2rem 0;background-color:#fff;border-radius:2rem;height:100vh}.react-root .rewards-container__small{height:40vh;width:100vh}.react-root .rewards-footer{background-image:linear-gradient(106deg, #0f86ff -3%, #0053b2 98%);padding:2rem 3rem;margin-top:2rem;border-radius:0.5rem;display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between;-webkit-box-align:center;align-items:center;color:#fff}.react-root .rewards-footer__img{width:45%}@media screen and (max-width: 768px){.react-root .rewards-footer__img{width:100%}}@media screen and (max-width: 768px){.react-root .rewards-footer{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse;text-align:center}}.react-root .rewards-footer p{margin-bottom:2rem}.react-root .rewards-footer div{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}@media screen and (max-width: 768px){.react-root .rewards-footer div{display:block}}.react-root .rewards-footer a{align-self:baseline;margin-left:0}.react-root .rewards-footer a div{margin-left:0}.react-root .triangle-right{width:0;height:0;border:1rem solid #fcd04d;-webkit-clip-path:polygon(42% 89%, 89% 55%, 42% 24%, 57% 57%);clip-path:polygon(42% 89%, 89% 55%, 42% 24%, 57% 57%);margin-right:0.5rem}.react-root .circle-cb{width:2rem !important;height:2rem;border-radius:1rem;background-color:#fff;color:#000;text-align:center;margin-right:0.6rem}.react-root .margin-small{margin-left:0.5rem}.react-root .margin-right{margin-right:0.5rem}.react-root .margin-top{margin-top:2rem}.react-root .padding-top--small{padding-top:0.5rem}.react-root .pointer-cb{cursor:pointer}.react-root .sc-modal{background-color:transparent !important;border-color:transparent !important;text-align:center}.react-root .sc-modal__info{margin-top:2rem;color:#fff}.react-root .sc-modal__close{background-color:#acb7bf;border-radius:50%;right:0;top:0;position:absolute;font-size:3.2rem;-webkit-transform:translateX(-75%);transform:translateX(-75%);z-index:100;cursor:pointer}.react-root .rewards-timer{display:-webkit-box;display:flex}.react-root .rewards-timer div{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;padding:0.5rem;border:solid 0.1rem #b8c7f3;background-color:#ffffff;text-align:center;width:4rem;margin:0 0.5rem;border-radius:0.5rem}.react-root .rewards-timer span:first-child{font-weight:bolder}.react-root .rewards-timer span:last-child{font-size:1.2rem}.react-root .tracking-timer{display:-webkit-inline-box;display:inline-flex}.react-root .tracking-timer span:first-child{font-weight:bolder;margin-right:0.25rem}.react-root .tracking-timer div{margin:0 0.25rem}.react-root .left-align-slick>.slick-list>.slick-track{margin-left:0}.react-root #referral-uri{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-right:auto}.react-root .spin-wheel{display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .spin-wheel{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}.react-root .spin-wheel__main{z-index:2}@media screen and (max-width: 768px){.react-root .spin-wheel__main{margin-top:4rem}}@media screen and (max-width: 480px){.react-root .spin-wheel__main{margin-top:12rem}}.react-root .spin-wheel__loading{height:50vh;width:100vh}@media screen and (max-width: 768px){.react-root .spin-wheel__loading{height:100vh}}.react-root .spin-wheel__icon{position:absolute;right:0;top:0;cursor:pointer;-webkit-transform:translate(-50%, 35%);transform:translate(-50%, 35%);font-size:2.4rem}.react-root .spin-wheel__content{position:relative;padding:4rem;padding-left:20%;margin-left:-15%;background-color:#fff;z-index:1;border-radius:0.5rem;max-width:50%}@media screen and (max-width: 768px){.react-root .spin-wheel__content{padding:2rem;padding-top:3.5rem;margin-left:0;max-width:unset;text-align:center;height:25rem;width:100%}}.react-root .spin-wheel__button{background-color:#334350;padding:1rem 2rem;border-radius:0.5rem;color:#fff;margin-bottom:0.5rem;text-transform:uppercase;cursor:pointer}.react-root .spin-wheel__button--locked{color:#9099a0}.react-root .spin-wheel__button--locked img{margin-right:1rem}@media screen and (max-width: 768px){.react-root .spin-wheel__button{width:100%}}.react-root .spin-wheel__modal{max-width:100% !important;height:100% !important;min-width:40rem !important;background-color:transparent;border-color:transparent;-webkit-transform:translate(-50%, -25%);transform:translate(-50%, -25%)}@media screen and (max-width: 768px){.react-root .spin-wheel__modal{background-color:#fff;border-color:#fff;width:100% !important;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}}.react-root .spin-wheel__win{display:-webkit-box;display:flex;margin:2rem 0;margin-left:auto;margin-right:auto;-webkit-box-pack:start;justify-content:flex-start;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .spin-wheel__win{width:100%;-webkit-box-pack:center;justify-content:center}}.react-root .spin-wheel__win-img{z-index:3;width:20rem}.react-root .spin-wheel__win-img img{width:15rem !important;height:15rem !important}.react-root .spin-wheel__win-text{text-align:left;background-color:#e6f3ff;padding:2rem;padding-left:10rem;margin-left:-8rem;z-index:2}.react-root .active{border-bottom-left-radius:0 !important;border-bottom-right-radius:0 !important}.react-root .tracking__container{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;background-color:#fff;padding:2rem;border-radius:0.5rem}.react-root .tracking__heading{display:-webkit-box;display:flex;-webkit-box-pack:justify;justify-content:space-between}.react-root .tracking__toolbox{display:-webkit-box;display:flex;padding:0 1rem;-webkit-box-align:center;align-items:center;cursor:pointer;flex-wrap:wrap}@media screen and (max-width: 768px){.react-root .tracking__toolbox{-webkit-box-pack:center;justify-content:center;max-width:31%}}@media screen and (max-width: 768px){.react-root .tracking__toolbox span{flex-basis:100%;text-align:center}}.react-root .tracking__toolbox select{cursor:pointer;margin-left:3rem;margin-right:0.5rem;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff}@media screen and (max-width: 768px){.react-root .tracking__toolbox select{margin-left:0}}.react-root .tracking__toolbox:hover{background-color:#e6f3ff}.react-root .tracking__toolbox:hover select{background-color:#e6f3ff}.react-root .tracking__accordian{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.react-root .track-accordian__container{display:-webkit-box;display:flex;cursor:pointer;-webkit-box-pack:justify;justify-content:space-between;margin-top:1rem;background-color:#e6f3ff;padding:3rem;border-radius:0.5rem}@media screen and (max-width: 768px){.react-root .track-accordian__container{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (max-width: 768px){.react-root .track-accordian__subtitle{display:-webkit-box;display:flex;flex-wrap:wrap}}.react-root .track-accordian__left{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-pack:center;justify-content:center}.react-root .track-accordian__icon{margin-right:1rem;margin-bottom:-0.4rem}@media screen and (max-width: 768px){.react-root .track-accordian__icon{margin-bottom:0.4rem}}.react-root .track-accordian__right{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center}@media screen and (max-width: 768px){.react-root .track-accordian__right{margin-top:2rem;align-self:flex-end}}.react-root .track-accordian__date{text-decoration:underline;font-weight:800}.react-root .track-accordian__label--rise{display:inline-block;color:#4bca5e;font-weight:800}.react-root .track-accordian__label--fall{display:inline-block;color:#ff001f;font-weight:800}.react-root .track-accordian table{border:none}.react-root .track-accordian table th{background-color:#d1e8ff;font-weight:bold}.react-root .track-accordian table tr{background-color:#e6f3ff}.react-root .track-accordian table .table__row{border:none !important}.react-root .ev-modal{max-width:100% !important;width:60rem !important;height:100% !important;background-color:transparent !important;border-color:transparent !important;-webkit-transform:translate(-50%, -50%) !important;transform:translate(-50%, -50%) !important;padding-top:5rem}.react-root .ev-modal:before{visibility:hidden !important}.react-root .ev-modal__container{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;background-color:#fff;min-width:40rem}.react-root .ev-modal__action{padding-right:1rem;margin-left:auto;cursor:pointer}.react-root .ev-modal__title{margin-top:3rem;text-align:center}.react-root .ev-modal__img{left:50%;top:50%;-webkit-transform:translate(-42%, -50%);transform:translate(-42%, -50%);position:absolute;height:5rem;width:5rem}.react-root .ev-modal__content{margin:1rem 2rem;padding:1rem 2rem;background-color:#f2f3f3}.react-root .ev-modal__icon{position:absolute;height:8rem;width:8rem;background-color:#dfebff;border-radius:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:99}.react-root .ev-modal__scratch{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;margin-top:2rem;padding:2rem 1rem;background-color:#e6f3ff;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;margin-bottom:-1rem}.react-root .ev-modal__scratch span{margin:2rem 0}.react-root .ev-button{padding:1rem 2rem;cursor:pointer;text-decoration:none;border-radius:0.7rem;border:solid 0.2rem;font-weight:bold}.react-root .ev-button.primary{background-color:#ff506c;color:#fff !important;border-color:#ff506c}.react-root .ev-button.inverted{background-color:transparent;color:#334350;border-color:#334350}.react-root .redeem__store{display:-webkit-box;display:flex;margin:2rem 0;border-radius:0.4rem;background-image:linear-gradient(117deg, #0f86ff -1%, #0053b2 104%);padding:2rem 3rem}.react-root .redeem__store--inv{background-image:linear-gradient(117deg, #233f5a -1%, #2b4966 104%)}.react-root .redeem__store-content{display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;color:#fff;padding:2rem;-webkit-box-align:start;align-items:flex-start;-webkit-box-pack:center;justify-content:center}@media screen and (max-width: 768px){.react-root .redeem__store-content{-webkit-box-align:initial;align-items:initial;text-align:center}}.react-root .redeem__store-img{position:relative;padding:2rem;align-self:center;width:90%}@media screen and (max-width: 768px){.react-root .redeem__store-img{display:none}}.react-root .redeem__store-wheel{position:relative;padding:2rem;align-self:center}@media screen and (max-width: 768px){.react-root .redeem__store-wheel{display:none}}.react-root .redeem__cta{color:#fff;padding:1rem 2rem;border-radius:0.3rem;background-color:transparent;margin-top:2rem}@media screen and (max-width: 768px){.react-root .redeem__cta{width:100%}}.react-root .redeem__cta--red{font-weight:bold;background-color:#ff506c}.react-root .redeem__cta--white{border:0.1rem solid #fff}

:root{--wheel-font: 'Lato', 'Quicksand', sans-serif;--wheel-size: 50vh;--wheel-slice-spacing: 50px;--wheel-border-size: 5px;--wheel-color: #fcb919;--neutral-color: white;--PI: 3.14159265358979;--nb-item: 0;--item-nb: 0;--selected-item: 0;--nb-turn: 5;--spinning-duration: 5s;--reset-duration: 0s}.wheel-container{display:block;position:relative;box-sizing:content-box;width:calc(var(--wheel-size) + 2 * var(--wheel-border-size));height:calc(var(--wheel-size) + 2 * var(--wheel-border-size));padding:3px;margin:auto;background-color:#ffecad;border:solid var(--wheel-color) 5px;border-radius:50%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.wheel{display:block;position:relative;box-sizing:content-box;margin:auto;width:var(--wheel-size);height:var(--wheel-size);overflow:hidden;border-radius:50%;border:solid var(--wheel-color) var(--wheel-border-size);background-color:var(--wheel-color);-webkit-transition:-webkit-transform var(--reset-duration);transition:-webkit-transform var(--reset-duration);transition:transform var(--reset-duration);transition:transform var(--reset-duration), -webkit-transform var(--reset-duration);-webkit-transform:rotate(0deg);transform:rotate(0deg);cursor:pointer}.wheel.done{-webkit-transition:-webkit-transform 0s !important;transition:-webkit-transform 0s !important;transition:transform 0s !important;transition:transform 0s, -webkit-transform 0s !important;-webkit-transform:rotate(calc(-360deg * var(--selected-item) / var(--nb-item, 1))) !important;transform:rotate(calc(-360deg * var(--selected-item) / var(--nb-item, 1))) !important}.wheel.spinning{-webkit-transition:-webkit-transform var(--spinning-duration);transition:-webkit-transform var(--spinning-duration);transition:transform var(--spinning-duration);transition:transform var(--spinning-duration), -webkit-transform var(--spinning-duration);-webkit-transform:rotate(calc(var(--nb-turn) * 360deg + (-360deg * var(--selected-item) / var(--nb-item, 1))));transform:rotate(calc(var(--nb-turn) * 360deg + (-360deg * var(--selected-item) / var(--nb-item, 1))))}.wheel-center{display:block;position:absolute;content:'';background-image:url(../../images/dial.eeb289.png);background-position:center;background-repeat:no-repeat;background-size:contain;width:150px;height:150px;z-index:2;top:50%;left:50%;-webkit-transform:translate(-35%, -50%) rotate(90deg);transform:translate(-35%, -50%) rotate(90deg);border-radius:50%}.wheel-item{display:block;position:absolute;box-sizing:border-box;top:50%;left:50%;width:50%;-webkit-transform-origin:center left;transform-origin:center left;-webkit-transform:translateY(-50%) rotate(calc(var(--item-nb) * (360deg / var(--nb-item, 1))));transform:translateY(-50%) rotate(calc(var(--item-nb) * (360deg / var(--nb-item, 1))));color:var(--neutral-color);text-align:right;padding:0 25px 0 80px;font-family:var(--wheel-font);font-weight:bold}.wheel-item:before{content:' ';display:block;position:absolute;box-sizing:border-box;z-index:-1;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);padding-left:0px;opacity:0.25;--slice-max-width: calc(var(--PI) * var(--wheel-size) + var(--wheel-size) / 2);--slice-width: calc((var(--slice-max-width) / var(--nb-item)) - var(--wheel-slice-spacing));border:solid transparent calc(var(--slice-width) / 2);border-left:solid transparent 0;border-right:solid var(--neutral-color) calc(var(--wheel-size) / 2)}

