@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap");
*,
:after,
:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 0.55rem;
}
@media (max-width: 380px) {
    html.tutorial-page {
        font-size: 0.5rem;
    }
}
body,
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-family: Ubuntu, sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #00141f;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
}
body {
    display: flex;
    flex-direction: column;
}
body:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #00141f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
@keyframes spin {
    0% {
        transform: translate(-50%, -50%);
    }
    to {
        transform: translate(-50%, -50%) rotate(1turn);
    }
}
body:after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 3.75rem;
    height: 3.75rem;
    border: 0.3125rem solid #00bbf2;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
body.loading:before {
    opacity: 0.8;
    visibility: visible;
}
body.loading:after {
    opacity: 1;
    visibility: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #00bbf2;
}
.page {
    width: 100%;
    flex: 1;
    overflow: auto;
}
.page:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
    background: url(../images/main-illustration@3x.webp) no-repeat top;
    background-size: 100% auto;
}
.page-tuto.tutorugby:after{
  background: url(../images/rugby-illustration.webp) no-repeat top;
  background-size: 100% auto;
}
.arrow {
    display: inline-block;
    border: 0.6875rem solid transparent;
}
.arrow--success {
    border-bottom-width: 1.125rem;
    border-bottom-color: #0cff00;
}
.arrow--warning {
    border-left-width: 1.125rem;
    border-left-color: #ff9000;
}
.arrow--danger {
    border-top-width: 1.125rem;
    border-top-color: red;
}
.text-center {
    text-align: center;
}
.color-success {
    color: #00bb42;
}
.color-warning {
    color: #fecb34;
}
.color-danger {
    color: #e71629;
}
.container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.page-main {
    padding: 0 3.125rem 4.375rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.page-main .prono-logo {
  width: 75%;
  margin: 0.25rem auto 1.25rem;
  top: 16px;
  position: relative;
}
.page-main .co-anim-logo {
    display: table;
    width: 100%;
    max-width: 13.375rem;
    margin: 4.375rem auto 0;
}
.page-tutoscan {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.875rem 1.875rem 4.375rem;
}
.page-tutoscan:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    background-color: #00080d;
}
.page-tutoscan .prono-logo {
    max-width: 15rem;
    margin: 2.5rem auto 0;
}
.page-tuto {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.875rem 1.875rem 4.375rem;
}
.page-tuto.slide-0:before {
    opacity: 0;
}
.page-tuto:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    background-color: #00080d;
    transition: opacity 0.3s;
}
.page-tuto .prono-logo {
    max-width: 15rem;
    margin: 2.5rem auto 0;
}
.page-tuto .tuto-slider .slide:first-child .slide-inner {
    justify-content: center;
    margin-top: 6.25rem;
}
.page-tuto .tuto-slider .slide-inner {
    align-items: center;
}
.page-tuto .tuto-slider .slide .results {
    width: 20.625rem;
    margin-top: 3.125rem;
}
.page-tuto .tuto-slider .slide .results__header,
.page-tuto .tuto-slider .slide .results__item {
    display: flex;
    line-height: 1;
    font-weight: 500;
}
.page-tuto .tuto-slider .slide .results__header > *,
.page-tuto .tuto-slider .slide .results__item > * {
    width: 33.33%;
}
.page-tuto .tuto-slider .slide .results__header {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: -0.875rem;
}
.page-tuto .tuto-slider .slide .results__item {
    font-size: 2.25rem;
    padding: 1.25rem 0;
    border-radius: 1.0625rem;
    margin-top: 1.5rem;
}
.page-tuto .tuto-slider .slide .results__item--success {
    background-color: #00bb42;
}
.page-tuto .tuto-slider .slide .results__item--warning {
    background-color: #fecb34;
}
.page-tuto .tuto-slider .slide .results__item--warning img {
    transform: rotate(-90deg);
}
.page-tuto .tuto-slider .slide .results__item--danger {
    background-color: #e71629;
}
.page-tuto .tuto-slider .slide .results__item--danger img {
    transform: rotate(180deg);
}
.page-tuto .tuto-slider .slide .results__item img {
    width: 2.25rem;
}
.page-signup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.875rem;
}
.page-signup:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    background-color: #00080d;
}
.page-signup .top-section {
    width: 100%;
    background-color: #00141f;
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    padding: 3.125rem 1.875rem;
}
.page-signup .prono-logo {
    display: table;
    max-width: 14.75rem;
    margin: 0 auto 3.5rem;
}
.page-signup .bottom-section {
    position: relative;
    z-index: -1;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    padding: 2.5rem 1.875rem 1.875rem;
    background-color: #00141f;
    border-radius: 0 0 0.9375rem 0.9375rem;
    margin: -0.625rem 0.625rem 0;
}
.page-signup .bottom-section a {
    margin-left: 0.9375rem;
    color: #00bbf2;
}
.page-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.875rem;
}
.page-login:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    background-color: #00080d;
}
.page-login .top-section {
    width: 100%;
    background-color: #00141f;
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    padding: 3.125rem 1.875rem;
}
.page-login .prono-logo {
    display: table;
    max-width: 14.75rem;
    margin: 0 auto 3.5rem;
}
.page-login .bottom-section {
    position: relative;
    z-index: -1;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    padding: 2.5rem 1.875rem 1.875rem;
    background-color: #00141f;
    border-radius: 0 0 0.9375rem 0.9375rem;
    margin: -0.625rem 0.625rem 0;
}
.page-login .bottom-section a {
    margin-left: 0.9375rem;
    color: #00bbf2;
}
.page-competitions {
    background-color: #00141f;
    padding: 8.125rem 1.875rem 4.375rem;
    display: flex;
    flex-direction: column;
}
.page-competitions .avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.875rem;
    margin-bottom: 3.125rem;
}
.page-competitions .avatar-container img {
    width: 9.375rem;
    height: 9.375rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 0.375rem #00141f, 0 0 0 0.5625rem #00bbf2;
}
.page-competitions .username {
    margin-top: 1.25rem;
    font-size: 1.25rem;
}
.page-competitions .page-title {
    font-size: 3rem;
    font-weight: 500;
}
.page-competitions .toggles {
    display: flex;
    margin-top: 1.25rem;
}
.page-competitions .toggles .toggle {
    font-size: 1.25rem;
    padding: 1.375rem 1.875rem 1.375rem 1.5625rem;
    background-color: rgba(60, 90, 154, 0.2);
    border-radius: 3.125rem;
    margin-right: 1.25rem;
}
.page-competitions .toggles .toggle.active {
    background: linear-gradient(270deg, #00bbf2, #00658c);
}
.page-competitions .toggles .toggle:before {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    background-color: #0fe933;
    margin-right: 0.75rem;
}
.page-competitions .toggles .toggle:last-child:before {
    background-color: #e90f0f;
}
.page-competitions .competitions {
    margin-top: 1.5625rem;
    padding: 3.125rem 1.25rem 1.875rem;
    background-color: #0c2238;
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    overflow: auto;
}
.page-competitions .competitions.disabled .competition .image img {
    filter: grayscale(100%);
}
.page-competitions .competitions.disabled .new-competition {
    display: none;
}
.page-competitions .competitions .competition {
    width: calc(50% - 3.75rem);
    margin: 0 1.875rem 1.25rem;
}
.page-competitions .competitions .competition .image {
    background-color: #00658c;
    border-radius: 0.9375rem;
    padding: 0.875rem 1rem;
}
.page-competitions .competitions .competition .image img {
    width: 100%;
}
.page-competitions .competitions .competition .name {
    display: block;
    font-size: 1.25rem;
    line-height: 1.28;
    text-transform: uppercase;
    margin-top: 1rem;
}
.page-competitions .competitions .new-competition {
    display: block;
    width: calc(50% - 3.75rem);
    margin: 0 1.875rem 1.25rem;
}
.page-competitions .competitions .new-competition:after {
    content: "";
    display: block;
    padding: 0.875rem 1rem 100%;
    border-radius: 0.9375rem;
    background: url(../images/plus-circle.svg) no-repeat 50% #162d4c;
    background-size: 3.5rem 3.5rem;
}
.page-competition {
    padding: 0 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
}
.page-competition:after {
    display: none;
}
.page-competition header {
    position: relative;
    z-index: -1;
    margin: 0 -1.875rem;
}
.page-competition header .background {
    width: 100%;
}
.page-competition header .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8.125rem 0 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-competition header .content .logo {
    max-width: 8.125rem;
}
.page-competition header .content .title {
    font-size: 1.25rem;
    line-height: 1.28;
    text-transform: uppercase;
    margin-top: 0.875rem;
}
.page-competition .card {
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    background-color: #0c2238;
    margin-bottom: 1.5625rem;
}
.page-competition .card-title {
    font-size: 1.625rem;
    font-weight: 500;
    text-align: center;
    padding: 1.5rem 3.75rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-competition .card-body {
    padding: 1.5rem 1.875rem;
}
.page-competition .card--podium .card-body {
    padding: 1.5rem 1rem;
    overflow-y: scroll;
}
.page-competition .card--intro {
    margin-top: -6.25rem;
}
.page-competition .card--intro .card-title {
    display: flex;
    align-items: center;
    text-align: left;
}
.page-competition .card--intro .card-title .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.375rem;
    height: 3.375rem;
    background-color: #fff;
    border-radius: 50%;
    padding: 0 0.625rem;
    margin-right: 3.75rem;
}
.page-competition .card--intro .card-title .logo img {
    width: 100%;
}
.page-competition .card--intro .line {
    display: flex;
    justify-content: space-between;
}
.page-competition .card--intro .line strong {
    font-size: 1.65625rem;
    font-weight: 500;
    margin-bottom: 0.3125rem;
}
.page-competition .card--intro .line span {
    margin-top: 0.125rem;
}
.page-competition .card--intro .line .arrow {
    margin-right: 0.5rem;
}
.page-competition .card--matchs .line {
    display: flex;
    align-items: center;
    padding-bottom: 1.25rem;
}
.page-competition .card--matchs .line:not(:last-child) {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    margin-bottom: 1.25rem;
}
.page-competition .card--matchs .line .left {
    width: 4.375rem;
}
.page-competition .card--matchs .line .left .icon {
    width: 3.4375rem;
    height: 3.4375rem;
    background: linear-gradient(270deg, #00bbf2, #00658c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-competition .card--matchs .line .left .icon img {
    width: 2.5rem;
}
.page-competition .card--matchs .line .middle {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    border-left: 1px solid hsla(0, 0%, 100%, 0.2);
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-competition .card--matchs .line .middle .country {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    text-transform: uppercase;
}
.page-competition .card--matchs .line .middle .country img {
    height: 2.75rem;
    margin-bottom: 1rem;
}
.page-competition .card--matchs.sport_3 .line .middle .country img {
    height: 2.5rem;
}
.page-competition .card--matchs .line .middle .score {
    margin: 0 1rem;
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
}
.page-competition .card--matchs .line .right .points {
    width: 3.4375rem;
    margin-left: 0.9375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
}
.page-competition .card--matchs .line .right .points .number {
    font-size: 1.625rem;
    font-weight: 500;
}
.page-competition .card--matchs .line.coming .left .icon {
    background: #fff;
}
.page-competition .card--matchs .line.coming .middle {
    border: none;
    justify-content: flex-start;
    margin-left: 3.125rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}
.page-competition .card--matchs .update-date {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #a5cced;
}
.page-competition .card--podium table {
    width: 100%;
    font-size: 1.25rem;
    text-align: left;
    white-space: nowrap;
    border-collapse: collapse;
}
.page-competition .card--podium table th {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0 1.25rem 0.625rem;
}
.page-competition .card--podium table td {
    padding: 0 0.3rem;
}
.page-competition .card--podium table td:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-competition .card--podium table td:first-child .arrow--success {
    margin-bottom: -0.125rem;
}
.page-competition .card--podium table td:first-child .arrow--warning {
    margin-bottom: -0.3125rem;
}
.page-competition .card--podium table td:first-child .arrow--danger {
    margin-bottom: -0.875rem;
}
.page-pronostics {
    padding: 0 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
}
.page-pronostics:after {
    display: none;
}
.page-pronostics header {
    position: relative;
    z-index: -1;
    margin: 0 -1.875rem;
}
.page-pronostics header .background {
    width: 100%;
}
.page-pronostics header .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8.125rem 2.5rem 6.25rem;
    display: flex;
    align-items: center;
}
.page-pronostics header .content .left {
    flex: 1;
}
.page-pronostics header .content .left .title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
}
.page-pronostics header .content .left .competition {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
}
.page-pronostics header .content .left .competition .logo {
    width: 3.125rem;
    height: auto;
}
.page-pronostics header .content .left .competition .name {
    font-size: 1.25rem;
    margin-left: 0.875rem;
    text-transform: uppercase;
}
.page-pronostics header .content .right .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.125rem;
    height: 7.125rem;
    border-radius: 50%;
    background-color: #fff;
}
.page-pronostics header .content .right .logo img {
    width: 4.375rem;
    height: auto;
}
.page-pronostics .scores-container {
    padding: 2.5rem 1.875rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    background-color: #0c2238;
    margin-top: -6.25rem;
    flex: 1;
    overflow: auto;
}
.page-pronostics .scores-container .line {
    display: flex;
    text-align: center;
}
.page-pronostics .scores-container .line > * {
    width: 33.33%;
}
.page-pronostics .scores-container .line:not(:last-child) {
    padding-bottom: 1.5625rem;
    margin-bottom: 1.875rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-pronostics .scores-container .country {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-pronostics .scores-container .country img {
    height: 3.125rem;
    width: 4.625rem;
    margin-bottom: 0.9375rem;
}
.page-pronostics .scores-container .country .name {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1;
}
.page-pronostics .scores-container .data {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-pronostics .scores-container .data .score {
    font-size: 2.45rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5625rem;
    display: flex;
}
.page-pronostics .scores-container .data .score input {
    width: 6.125rem;
    font: inherit;
    color: #fff;
    text-align: center;
    background: none;
    outline: none;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    margin: 0 0.375rem;
}
.page-pronostics .scores-container .data .score input::-moz-placeholder {
    opacity: 1;
    color: #fff;
}
.page-pronostics .scores-container .data .score input::placeholder {
    opacity: 1;
    color: #fff;
}
.page-pronostics .scores-container .data .score input:focus {
    border-color: #00bbf2;
}
.page-pronostics .scores-container .data .date {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.6);
}
#KioskBoard-VirtualKeyboard {
    background: #00141f !important;
}
#KioskBoard-VirtualKeyboard .kioskboard-row-numpad span[class^="kioskboard-key"] {
    min-height: 0 !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: #002439 !important;
    box-shadow: 0 0.3125rem 0 0.05px hsla(0, 0%, 100%, 0.25) !important;
}
#KioskBoard-VirtualKeyboard .kioskboard-row-numpad span.kioskboard-key-enter {
    background-color: #00bbf2 !important;
}
.page-classement {
    padding: 0 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
}
.page-classement:after {
    display: none;
}
.page-classement header {
    position: relative;
    z-index: -1;
    margin: 0 -1.875rem;
}
.page-classement header .background {
    width: 100%;
}
.page-classement header .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8.125rem 2.5rem 6.25rem;
    display: flex;
    align-items: center;
}
.page-classement header .content .left {
    flex: 1;
}
.page-classement header .content .left .title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
}
.page-classement header .content .left .competition {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
}
.page-classement header .content .left .competition .logo {
    width: 3.125rem;
    height: auto;
}
.page-classement header .content .left .competition .name {
    font-size: 1.25rem;
    margin-left: 0.875rem;
    text-transform: uppercase;
}
.page-classement header .content .right .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.125rem;
    height: 7.125rem;
    border-radius: 50%;
    background-color: #fff;
}
.page-classement header .content .right .logo img {
    width: 4.375rem;
    height: auto;
}
.page-classement .ranking-table tbody td:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-classement .ranking-table tbody td:nth-child(2) {
    width: 100%;
}
.page-classement .ranking-table tbody td:nth-child(3),
.page-classement .ranking-table tbody td:nth-child(4),
.page-classement .ranking-table tbody td:nth-child(5),
.page-classement .ranking-table tbody td:nth-child(6),
.page-classement .ranking-table tbody td:nth-child(7) {
    text-align: center;
}
.page-concurrents {
    padding: 0 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
}
.page-concurrents:after {
    display: none;
}
.page-concurrents header {
    position: relative;
    z-index: -1;
    margin: 0 -1.875rem;
}
.page-concurrents header .background {
    width: 100%;
}
.page-concurrents header .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8.125rem 2.5rem 6.25rem;
    display: flex;
    align-items: center;
}
.page-concurrents header .content .left {
    flex: 1;
}
.page-concurrents header .content .left .title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
}
.page-concurrents header .content .left .competition {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
}
.page-concurrents header .content .left .competition .logo {
    width: 3.125rem;
    height: auto;
}
.page-concurrents header .content .left .competition .name {
    font-size: 1.25rem;
    margin-left: 0.875rem;
    text-transform: uppercase;
}
.page-concurrents header .content .right .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.125rem;
    height: 7.125rem;
    border-radius: 50%;
    background-color: #fff;
}
.page-concurrents header .content .right .logo img {
    width: 4.375rem;
    height: auto;
}
.page-concurrents .ranking-table tbody td:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-concurrents .ranking-table tbody td:first-child {
    width: 100%;
}
.page-concurrents .ranking-table tbody td:nth-child(5) {
    text-align: center;
}
.page-quarter {
    padding: 0 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
}
.page-quarter:after {
    display: none;
}
.page-quarter header {
    position: relative;
    z-index: -1;
    margin: 0 -1.875rem;
}
.page-quarter header .background {
    width: 100%;
}
.page-quarter header .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8.125rem 2.5rem 6.25rem;
    display: flex;
    align-items: center;
}
.page-quarter header .content .left {
    flex: 1;
}
.page-quarter header .content .left .title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
}
.page-quarter header .content .left .competition {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
}
.page-quarter header .content .left .competition .logo {
    width: 3.125rem;
    height: auto;
}
.page-quarter header .content .left .competition .name {
    font-size: 1.25rem;
    margin-left: 0.875rem;
    text-transform: uppercase;
}
.page-quarter header .content .right .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.125rem;
    height: 7.125rem;
    border-radius: 50%;
    background-color: #fff;
}
.page-quarter header .content .right .logo img {
    width: 4.375rem;
    height: auto;
}
.page-quarter .ranking-table tbody td:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.page-quarter .ranking-table tbody td:first-child {
    width: 100%;
}
.page-quarter .ranking-table tbody td:nth-child(2),
.page-quarter .ranking-table tbody td:nth-child(3),
.page-quarter .ranking-table tbody td:nth-child(4) {
    text-align: center;
}
.page-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #00141f;
}
#qr-reader {
    width: 100%;
    border: none !important;
}
#qr-reader img {
    display: none;
}
#qr-reader #qr-reader__header_message {
    border: 0 !important;
    padding: 1.875rem !important;
    margin: 2.5rem 2.5rem 0 !important;
}
.qr-alert {
    display: none;
    padding: 1.25rem 1.875rem;
    font-size: 1rem;
    text-align: center;
    background-color: #c82100;
}
.page-newrecord {
    background-color: #00141f;
    padding: 8.75rem 3.75rem 1.875rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-newrecord .illustration {
    width: 10.25rem;
    height: auto;
}
.page-newrecord .title {
    font-size: 2.1875rem;
    font-weight: 500;
    line-height: 1.14;
    margin-top: 3.125rem;
}
.page-newrecord .subtitle {
    font-size: 1.25rem;
    line-height: 1.24;
    color: #d8e2ff;
    margin-top: 3.125rem;
    margin-bottom: 1.875rem;
}
#qr-reader button,
.btn {
    display: inline-block;
    border: none;
    outline: none;
    padding: 1.25rem 1.875rem;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    border-radius: 3.125rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(44, 48, 178, 0.4);
    background: linear-gradient(270deg, #00bbf2, #00658c);
    margin-top: 2.1875rem;
}
.btn--outline {
    background: none;
    border: 1px solid #fff;
    box-shadow: none;
}
.btn--light {
    background: #fff;
    color: #00bbf2;
}
.btn--link {
    font-size: 1.125rem;
    padding: 0;
    background: none;
    box-shadow: none;
    text-decoration: underline;
    margin-top: 1.25rem;
}
.btn--small,
.input {
    font-size: 1.25rem;
}
.input {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    background-color: rgba(60, 90, 154, 0.2);
    border-radius: 1.875rem;
    padding: 1.25rem 1.875rem;
    font-family: inherit;
    color: #fff;
    margin-top: 1.875rem;
    background-position: 1.875rem;
    background-size: 1.25rem auto;
    background-repeat: no-repeat;
}
.input::-moz-placeholder {
    color: #fff;
    opacity: 1;
}
.input::placeholder {
    color: #fff;
    opacity: 1;
}
.input--icon {
    padding-left: 3.875rem;
}
.input--icon-right {
    padding-right: 3.875rem;
    background-position: right 1.875rem center;
}
select {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 1.875rem;
    padding: 1.25rem 4.0625rem 1.25rem 1.875rem;
    font-family: inherit;
    font-size: 1.25rem;
    color: #fff;
    margin-top: 1.875rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/chevron-down.svg) no-repeat right 2.1875rem center rgba(60, 90, 154, 0.2);
    background-size: 1.25rem auto;
}
#main-nav {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 8.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2.25rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
    background-color: #00141f;
}
#main-nav .burger-menu,
#main-nav .scan-btn {
    outline: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4.125rem;
    height: 4.125rem;
    background-color: #00a7d9;
    border-radius: 50%;
}
#main-nav .burger-menu:after,
#main-nav .burger-menu:before,
#main-nav .burger-menu span {
    content: "";
    display: block;
    width: 2.25rem;
    height: 0.1875rem;
    background-color: #fecc23;
    border-radius: 0.125rem;
    margin: 0.3125rem 0;
}
#main-nav .scan-btn {
    background: url(../images/scan.webp) no-repeat 50% #00a7d9;
    background-size: 2.1875rem 2.1875rem;
}
#main-nav .prono-logo {
    max-width: 14.75rem;
}
#topbar {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    background-color: #00141f;
    padding: 1.875rem 0;
}
#topbar .btn-back {
    border: none;
    outline: none;
    width: 7.5rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}
#topbar .btn-back img {
    width: 1.875rem;
}
.main-menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.875rem;
    font-size: 1.875rem;
    font-weight: 500;
    transform: translateY(-1.875rem);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.main-menu.open {
    transform: none;
    visibility: visible;
    opacity: 1;
}
.main-menu:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(180deg, #00bbf2, #00658c);
    opacity: 0.95;
}
.main-menu a {
    margin: 0.25rem 0;
}
.main-menu .close {
    outline: none;
    border: none;
    width: 2.8125rem;
    height: 2.8125rem;
    position: absolute;
    left: 50%;
    bottom: 12.5rem;
    transform: translateX(-50%);
    background: none;
}
.main-menu .close:after,
.main-menu .close:before {
    content: "";
    width: 100%;
    border-bottom: 0.3125rem solid #fff;
    position: absolute;
    top: 50%;
    left: 0;
}
.main-menu .close:before {
    transform: translateY(-50%) rotate(45deg);
}
.main-menu .close:after {
    transform: translateY(-50%) rotate(-45deg);
}
.score-box {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    min-width: 7.25rem;
    border-radius: 1.0625rem;
    background-color: #00bbf2;
}
.score-box--success {
    background-color: #00bb42;
}
.score-box--warning {
    background-color: #fecb34;
}
.score-box--danger {
    background-color: #e71629;
}
.score-box--light {
    background-color: #fff;
    color: #00141f;
}
.score-box--info{
  background-color: #00bb9e;
}
.score-box--orange{
  background-color: #ff8a00;
}
.score-box--oragne_f{
  background-color: #ff5a00;
}
.score-box__title {
    display: block;
    line-height: 1.13;
    text-transform: uppercase;
}
.score-box__score {
    display: block;
    font-size: 2.25rem;
    letter-spacing: 0.18px;
}
.tuto-slider {
    display: flex;
}
.tuto-slider .slide {
    display: inline-flex !important;
    text-align: center;
}
.tuto-slider .slide-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3.125rem 2.5rem 1.875rem;
    background-color: #00141f;
    border-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
}
@media(max-width:245px) {
  .tuto-slider .slide-inner{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.tuto-slider .slide-inner{

}
.tuto-slider .slide .title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    color: #00bbf2;
    margin: 0 -1.25rem;
}
.tuto-slider .slide .title img {
    height: 2.25rem;
    margin-left: 1.25rem;
}
.tuto-slider .slide .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.13;
    margin-top: 1.5rem;
}
.tuto-slider .slide .illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
    position: relative;
}
.tuto-slider .slide .illustration img {
    height: auto;
    max-width: 100%;
    max-height: 20.625rem;
}
.tuto-slider .slide .illustration .score-box {
    position: absolute;
    top: 2.1875rem;
    right: 2.1875rem;
}
.tns-nav {
    text-align: center;
    margin-top: 2.25rem;
}
.tns-nav button {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 0.4375rem;
    margin: 0 0.25rem;
    background-color: #466982;
    border: none;
    outline: none;
    transition: width 0.3s;
}
.tns-nav button.tns-nav-active {
    width: 2.5rem;
    background-color: #00bbf2;
}
.ranking-table-container {
    background-color: #0c2238;
    border-radius: 0.9375rem;
    margin-top: -6.25rem;
    flex: 0 1 auto;
    overflow: auto;
}
.ranking-table {
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    border-collapse: collapse;
    white-space: nowrap;
}
.ranking-table thead {
    position: sticky;
    top: 0;
}
.ranking-table thead th {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.9375rem;
    background-color: #00bbf2;
}
.ranking-table-container.ranking-sport_2 .ranking-table thead th {
    font-size: 1.25rem;
    padding: 0.65rem;
}
/*
.ranking-table thead th:first-child:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00bbf2;
    z-index: -1;
    top: 0;
    left: 0;
}*/
.ranking-table thead th:not(:last-child) {
    border-right: 1px solid #00bbf2;
}
.ranking-table thead th:nth-child(3),
.ranking-table thead th:nth-child(4) {
    text-align: center;
}
.ranking-table thead th.small {
    font-size: 0.875rem;
    font-weight: 400;
    vertical-align: bottom;
}
.ranking-table thead th[colspan] {
    padding-top: 0;
    padding-bottom: 0;
    height: 1px;
}
.ranking-table thead th .col-container {
    display: flex;
    background-color: #fff;
    margin: 0 -0.9375rem;
    border-top-left-radius: 0.9375rem;
}
.ranking-table thead th .col-container .next,
.ranking-table thead th .col-container .prev {
    border: none;
    outline: none;
    width: 2rem;
    background: url(../images/chevron-left.svg) no-repeat 50%;
    background-size: 0.875rem auto;
}
.ranking-table thead th .col-container .next:not(.next-reverse),
.prev-reverse {
    transform: rotate(180deg);
}
.page-concurrents .ranking-table thead th .col-container .prev[data-page="0"],
.page-concurrents .ranking-table thead th .col-container .next[data-page="0"]{
  display: none;
}
.ranking-table thead th .score-container {
    display: flex;
    align-items: center;
    background-color: #00bbf2;
    padding: 0 0.75rem;
    border-top-left-radius: 0.9375rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
}
.ranking-table thead th .score-container .country {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ranking-table thead th .score-container .country img {
    width: 1.875rem;
    height: 1.25rem;
}
.ranking-table thead th .score-container .country .name {
    font-size: 0.875rem;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 0.25rem;
}
.ranking-table thead th .score-container .score {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0.375rem;
}
.ranking-table tbody tr:nth-child(2n) {
    background-color: #214466;
}
.ranking-table tbody tr.is-user {
    position: sticky;
    bottom: 0;
    background-color: #00bbf2 !important;
}
.ranking-table tbody tr.is-user td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
/*
.ranking-table tbody tr.is-user td:first-child:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00bbf2;
    z-index: -1;
    top: 0;
    left: 0;
}*/
.ranking-table tbody td {
    padding: 0 0.9375rem;
}
.ranking-table tbody td:not(:last-child) {
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
}
.ranking-table tbody .arrow {
    margin-right: -0.75rem;
}
.ranking-table tbody .arrow--success {
    margin-bottom: -0.125rem;
}
.ranking-table tbody .arrow--warning {
    margin-bottom: -0.3125rem;
}
.ranking-table tbody .arrow--danger {
    margin-bottom: -0.875rem;
}
#bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00bbf2;
    min-height: 6.875rem;
    padding: 0 1.875rem;
    box-shadow: 0 -0.46875rem 1.09375rem 0 rgba(0, 20, 31, 0.4);
}
#bottom-bar .infos-btn,
.superfina_img .infos-btn,
#bottom-bar .return-btn,
#bottom-bar .user-btn {
    border: none;
    outline: none;
    width: 3.125rem;
    height: 3.125rem;
    background: no-repeat 50%;
    background-size: 100% auto;
}
#bottom-bar.full-poles .infos-btn,
#bottom-bar.full-poles .return-btn,
#bottom-bar.full-poles .user-btn{
  width: 2.75rem;
  height: 2.75rem;
}
#bottom-bar .return-btn {
    background-image: url(../images/return.svg);
}
#bottom-bar .infos-btn,
.superfina_img .infos-btn {
    background-image: url(../images/infos.svg);
}
#bottom-bar .user-btn {
    background-image: url(../images/user-plus.svg);
}
#bottom-bar .poles {
    display: flex;
    max-width: calc(100% - 55px);
}
#bottom-bar .owl-item{
  display: flex;
  justify-content: center;
}
#bottom-bar .poles .pole {
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 50%;
    background-color: #fff;
    font-size: 0.75rem;
    line-height: 1;
    color: #00bbf2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    box-shadow: 0 0.46875rem 1.09375rem 0 rgba(44, 48, 178, 0.4);
}
#bottom-bar.full-poles .poles .pole{
    width: 4rem;
    height: 4rem;
    margin: 0 0.15rem;
}
#bottom-bar.bar-competition.full-poles {
    padding: 0 0.5rem;
}
#bottom-bar .poles .pole .number {
    font-size: 1.625rem;
    font-weight: 500;
    margin-top: 0.1875rem;
}

/*---------------*/
.ranking-sort {padding-left: 0px;width: 100%;}
.ranking-sort li {
  margin-top:10px;
  list-style-type:none;
  padding: 11px 10px;
  background: #214466;
  max-width: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: 100%;
}
.ranking-sort li button {
    width: 20px;
    height: 20px;
    font-size: 11px;
    padding: 2px;
    margin-top: 0;
    margin-right: 4px;
}
.ranking-sort .pull-right {
  margin: 0;
  font-size: 13px;
  margin-left: 9px;
  font-weight: 600;
}

.ranking-sort li button.btn-danger {
    background: linear-gradient(270deg, #e85656, #ff1616);
}

.ranking-sort li button.btn-primary {
    background: linear-gradient(270deg, #25922d, #1e8b19);
}
.ecart-txt__title {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -2rem;
    right: 2.1875rem;
    color: #fff;
    font-size: 1.5rem;
}
.score-boxes .ecart-txt__title {
    position: relative;
    bottom: auto;
    text-align: left;
    padding: 0.5rem 1.25rem;
}
.color-green_light {
    color: #79e852;
}

#phone{
  background-image: none !important;
}
.iti__country-list{
  border: 0px solid #00b4ea;
}
.iti__country.iti__highlight {
  background-color: rgb(61 88 124);
}
.iti.iti--allow-dropdown {
  width: 100%;
  margin-top: 15px;
}
.hide {
  display: none;
}
.int-phone.error-msg{
  color: red;
}
.int-phone.valid-msg{
  color: #00C900;
}

.int-phone.error-msg,
.int-phone.valid-msg {
  position: absolute;
  right: 7px;
  top: 10px;
  font-size: 12px;
}
