@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
#fb-root {
  height: 0 !important;
  width: 0 !important;
}
#fb-root .fb_dialog {
  z-index: 100 !important;
}

header.header {
  height: 50px;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  padding: 5px 0;
  background: #091b34;
  display: flex;
  align-items: center;
}
header.header .nav-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
header.header .nav-bar .left .logo img {
  height: 40px;
}
header.header .nav-bar .center {
  flex: 1;
  margin: 0 10px;
}
header.header .nav-bar .center #search-bar {
  max-width: 400px;
  margin: auto;
}
header.header .nav-bar .center #search-bar #search-bar-wrapper {
  border-radius: 3px;
  box-shadow: none;
}
header.header .nav-bar .center #search-bar #search-bar-wrapper input#search-input {
  line-height: 35px;
}
header.header .nav-bar .center #search-bar #search-bar-wrapper i {
  line-height: 35px;
  width: 35px;
}
@media (max-width : 480px) {
  header.header .nav-bar .center #search-bar #search-bar-wrapper {
    border-radius: 2px;
  }
  header.header .nav-bar .center #search-bar #search-bar-wrapper input {
    padding-right: 30px;
  }
  header.header .nav-bar .center #search-bar #search-bar-wrapper i {
    width: 30px;
    font-size: 16px;
  }
}
header.header .nav-bar #mobile-toggle {
  display: none;
}
@media (max-width : 480px) {
  header.header .nav-bar #mobile-toggle {
    display: none;
  }
}
header.header .nav-bar .right {
  display: flex;
  align-items: center;
}
header.header .nav-bar .right .user-nav {
  margin: 0 10px;
}
header.header .nav-bar .right .user-nav .user-logo {
  display: inline-block;
  border-radius: 100%;
  border: solid 1px rgba(255, 255, 255, 0.5);
  position: relative;
}
header.header .nav-bar .right .user-nav .user-logo img {
  border-radius: 100%;
  height: 35px;
  width: 35px;
  object-fit: cover;
}
header.header .nav-bar .right .user-nav .user-logo .sub.widget {
  position: absolute;
  font-size: 8px;
  text-transform: uppercase;
  color: white;
  left: 0px;
  transform: translateX(-50%);
  bottom: 0;
  background: grey;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding: 0px 5px;
  border-radius: 2px;
  border: solid 1px rgba(0, 0, 0, 0.3);
}
header.header .nav-bar .right .questions-btn {
  border: solid 1px white;
  height: 35px;
  width: 35px;
  background: transparent;
  border-radius: 100%;
}
header.header .nav-bar .right .questions-btn i {
  line-height: 28px;
  color: white;
}
header.header .nav-bar .right .fb-sign-up {
  padding: 7px 10px;
  margin: 20px 0;
  font-size: 10px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #3C5A99;
  background: linear-gradient(to right, #3C5A99 8%, #213f68 30%, #3C5A99 54%);
  background-size: 1000px 640px;
  position: relative;
}
@media (max-width: 800px) {
  header.header {
    height: 40px;
  }
  header.header .nav-bar .left .logo img {
    height: 25px;
  }
  header.header .nav-bar .center #search-bar #search-bar-wrapper {
    margin: 5px 0;
  }
  header.header .nav-bar .center #search-bar #search-bar-wrapper input {
    line-height: 30px;
    font-size: 10px;
  }
  header.header .nav-bar .center #search-bar #search-bar-wrapper i {
    width: 30px;
    line-height: 30px;
    background: transparent;
  }
}

footer.footer {
  position: fixed;
  height: 30px;
  width: 100%;
  bottom: 0;
  z-index: 100;
  text-align: center;
}
footer.footer p#copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.full-width-img {
  width: 100%;
}

.page {
  background: linear-gradient(45deg, #091b34, #102f59);
}
.page .page-wrapper {
  padding: 50px 0;
  width: 100%;
  z-index: 10;
}
@media (max-width: 800px) {
  .page .page-wrapper {
    padding: 40px 0;
  }
}

@media (max-width: 800px) {
  .revert-row {
    flex-direction: column-reverse;
  }
}

.gauge {
  display: block;
  position: relative;
}
.gauge .levels {
  display: flex;
}
.gauge .levels > .level {
  flex: 1;
  height: 5px;
}
.gauge .levels > .level:first-child {
  background: rgba(0, 0, 0, 0.2);
}
.gauge .levels > .level:nth-child(2) {
  background: rgba(0, 0, 0, 0.4);
}
.gauge .levels > .level:last-child {
  background: rgba(0, 0, 0, 0.8);
}
.gauge .bar {
  height: 10px;
  width: 2px;
  display: block;
  background: black;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.gauge.bad .bar {
  background: #ff5d55;
  box-shadow: 0 0 5px 1px rgba(255, 93, 85, 0.5);
}
.gauge.bad .bar::after {
  content: "passable";
  color: #ff5d55;
  position: absolute;
  transform: translateX(-50%);
  margin-top: 10px;
  font-size: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(255, 93, 85, 0.5);
}
.gauge.bad .levels .level:first-child {
  background: #ff5d55;
  box-shadow: 0px 0px 5px 1px rgba(255, 93, 85, 0.5);
}
.gauge.average .bar {
  background: orange;
  box-shadow: 0 0 5px 1px rgba(255, 165, 0, 0.5);
}
.gauge.average .bar::after {
  content: "correct";
  color: orange;
  position: absolute;
  transform: translateX(-50%);
  margin-top: 10px;
  font-size: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}
.gauge.average .levels .level:nth-child(2) {
  background: orange;
  box-shadow: 0px 0px 5px 1px rgba(255, 165, 0, 0.5);
}
.gauge.good .bar {
  background: #41ab5d;
  box-shadow: 0 0 5px 1px rgba(65, 171, 93, 0.5);
}
.gauge.good .bar::after {
  content: "bon";
  color: #41ab5d;
  position: absolute;
  transform: translateX(-50%);
  margin-top: 10px;
  font-size: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(65, 171, 93, 0.5);
}
.gauge.good .levels .level:nth-child(3) {
  background: #41ab5d;
  box-shadow: 0px 0px 5px 1px rgba(65, 171, 93, 0.5);
}

.gauge-point {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.gauge-point.bad {
  background: #ff5d55;
  box-shadow: 0 0 5px 1px rgba(255, 93, 85, 0.5);
}
.gauge-point.average {
  background: orange;
  box-shadow: 0 0 5px 1px rgba(255, 165, 0, 0.5);
}
.gauge-point.good {
  background: #41ab5d;
  box-shadow: 0 0 5px 1px rgba(65, 171, 93, 0.5);
}

.btn {
  cursor: pointer;
}
.btn.trans-white {
  border: solid 2px white;
  border-radius: 2px;
}
.btn.trans-white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #102f59;
}
.btn.trans-white.green {
  color: #41ab5d;
  border: solid 2px #41ab5d;
}
.btn.trans-white.green:hover {
  color: white;
  background: #41ab5d;
}
.btn.btn-lg {
  font-size: 16px !important;
  line-height: 40px;
}
.btn.trans-green {
  border: solid 2px #41ab5d;
  border-radius: 2px;
  color: #41ab5d;
}
.btn.trans-green:hover {
  background: #41ab5d;
  color: white;
}
.btn.trans-red {
  border: solid 2px #ff5d55;
  color: #ff5d55;
  border-radius: 2px;
}
.btn.trans-red:hover {
  background: #ff5d55;
  color: white;
}
.btn.block {
  width: 100%;
}
.btn.green {
  background: #41ab5d;
}

img.lazy-load {
  background-color: #152743;
  overflow: hidden;
  animation-name: color_change;
  animation-duration: 1s;
  animation-iteration-count: 10;
}

.challenger-level-bg {
  background: #ff0207 !important;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #ff0207, #0825ff) !important;
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(45deg, #ff0207, #0825ff) !important;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: 1px 1px 1px #780206;
  color: white !important;
}

.diamond-level-bg {
  /*
  background: #0099F7; !* fallback for old browsers *!
  background: -webkit-linear-gradient(45deg, #F11712, #0099F7) !important; !* Chrome 10-25, Safari 5.1-6 *!
  background: linear-gradient(45deg, #F11712, #0099F7) !important; !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *!
  */
  background: #000000 !important;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #000000, #434343) !important;
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(45deg, #000000, #434343) !important;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.platinum-level-bg {
  background: #2c3e50 !important;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #3498db, #2c3e50) !important;
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(45deg, #3498db, #2c3e50) !important;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gold-level-bg {
  background: #FDE08D;
  text-shadow: 0px 0px 100px #f4cc5b !important;
  background: -webkit-linear-gradient(45deg, #ba9145, #f4cc5b, #DF9F28) !important;
  background: linear-gradient(45deg, #ba9145, #f4cc5b, #DF9F28) !important;
}

.silver-level-bg {
  background: #999999 !important;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #999999, #d1d0d0, #999999) !important;
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(45deg, #999999, #d1d0d0, #999999) !important;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bronze-level-bg {
  background: #db9128 !important;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #db9128, #975e17);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(45deg, #db9128, #975e17) !important;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.challenger-level-fc {
  background: -webkit-linear-gradient(45deg, #ff0207, #0825ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diamond-level-fc {
  background: -webkit-linear-gradient(45deg, #434343 40%, #1f1f1f, #434343 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platinum-level-fc {
  background: -webkit-linear-gradient(45deg, #3498db, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-level-fc {
  background: -webkit-linear-gradient(45deg, #ba9145, #f4cc5b, #DF9F28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.silver-level-fc {
  background: -webkit-linear-gradient(45deg, #999999, #d1d0d0, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bronze-level-fc {
  /* fallback for old browsers */
  background: -webkit-linear-gradient(45deg, #db9128, #975e17);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.attaque-obj-bg {
  background: #3498db !important;
}

.passes-obj-bg {
  background: #50d171 !important;
}

.dribble-obj-bg {
  background: orange !important;
}

.communication-obj-bg {
  background: #ff5d55 !important;
}

.defense-obj-bg {
  background: #e6ab02 !important;
}

.positionnement-obj-bg {
  background: violet !important;
}

.intelligence-obj-bg {
  background: grey !important;
}

.globale-obj-bg {
  background: #091b34 !important;
}

.min-h-0 {
  min-height: 0 !important;
}

.flex-4 {
  flex: 4 !important;
}

.flex-3 {
  flex: 3 !important;
}

.flex-2 {
  flex: 2 !important;
}

.flex-1 {
  flex: 1 !important;
}

.position-row {
  border: solid 1px rgba(0, 0, 0, 0.1);
}

.fs-12 {
  font-size: 12px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.h-15 {
  height: 15% !important;
}

.h-40 {
  height: 40% !important;
}

.w-40 {
  width: 40% !important;
}

.w-30 {
  width: 30% !important;
}

.w-70 {
  width: 70% !important;
}

.h-10 {
  height: 10% !important;
  min-height: 60px !important;
}

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