html,
body {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  background-color: #000000;
  color: #fff;
}

body {
  display: flex;
  height: 100vh;
  flex-direction: column;
}

main,
header,
footer {
  padding: 0 40px;
}

main {
  margin-top: 75px;
}

#mobile-menu {
  opacity: 0;
  height: 0;
  transition: ease-in-out;
  transition-duration: 0.3s;
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  overflow: hidden;
}
#mobile-menu .menu-item {
  padding: 20px;
  font-size: 18px;
  letter-spacing: -1;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.7;
  cursor: pointer;
}

#mobile-menu.show {
  opacity: 1 !important;
  height: auto;
  padding: 40px;
}

#mobile-menu .menu-item.active {
    color: #fa6600; 
    opacity: 1; 
}

header {
  min-height: 75px;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid rgba(255, 255, 255, 0.1098039216);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
header .logo {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
  padding-left: 60px;
  background-image: url("../img/HARLEY-DAVIDSON.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 48px auto;
  height: 100%;
  display: flex;
  align-items: center;
}
header #indicator {
  position: absolute;
  content: " ";
  height: 5px;
  background-color: #fa6600;
  bottom: -5px;
  transition: cubic-bezier(0.87, 0.04, 0.18, 0.99);
  transition-duration: 0.3s;
}
header menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header menu .menu-item {
  display: flex;
  padding-left: 32px;
  height: 100%;
  align-items: center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  opacity: 0.7;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 40px;
  letter-spacing: -1px;
  cursor: pointer;
  transition-duration: 0.2s;
  color: #fff;
  text-decoration: none;
}
header menu .menu-item.active, header menu {
  color: #fa6600;
  opacity: 1;
}
header menu .menu-item.live {
  background-image: url("../img/live.svg");
}
header menu .menu-item.live.active, header menu .menu-item.live:hover {
  background-image: url("../img/live--active.svg");
}
header menu .menu-item.archives {
  background-image: url("../img/archive.svg");
}
header menu .menu-item.archives.active, header menu .menu-item.archives:hover {
  background-image: url("../img/archive--active.svg");
}
header menu .menu-item.competitors {
  background-image: url("../img/download.svg");
}
header menu .menu-item.competitors.active, header menu .menu-item.competitors:hover {
  background-image: url("../img/download--active.svg");
}
header menu .menu-item.signout {
  background-image: url("../img/logout.svg");
}
header menu .menu-item.signout.active, header menu .menu-item.signout:hover {
  background-image: url("../img/logout--active.svg");
}
header .btn {
  border: none;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition-duration: 0.2s;
}
header .btn:hover {
  opacity: 1;
}
main .btn.btn-primary {
  background-color: #fa6600;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 15px;
  height: 46px;
  margin-left: 40px;
  margin-right: 40px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-image: url("../img/download.svg");
  padding-left: 50px;
}

.btn-login {
    background-color: #fa6600; /* Same orange color, but can be changed if needed */
    color: #fff;
    font-size: 18px; /* Maintains font size */
    text-transform: uppercase;
    font-weight: bold;
    padding: 0 15px;
    height: 46px;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 25px auto; /* Slightly larger icon size */
   /* background-image: url("../img/HARLEY-DAVIDSON.svg");*/
   /* padding-left: 50px;*/
}

.standings-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 10px 0;*/ /* Add padding as needed */
}

.btn-standings {
    background-color: #fa6600; /* Example color, adjust as needed */
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-standings:hover {
    background-color: #e95e00; /* Darker shade for hover effect */
}


header .btn-menu {
  background-color: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
  width: 46px;
  height: 46px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-image: url("../img/menu.svg");
  display: none;
}
header .btn-menu.open {
  background-size: 16px auto;
  background-image: url("../img/close.svg");
}

h2 {
  font-size: 36px;
  letter-spacing: -1;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

main {
  padding-top: 25px;
}

:root {
    --base-font-size: 32px;
}

/* Default styles */
.localizable-text {
    font-size: var(--base-font-size); /* Apply variable font size here */
}

.lang-size-en {
    --base-font-size: 32px;
}

.lang-size-es {
    --base-font-size: 30px;
}

.lang-size-fr {
    --base-font-size: 28px;
}

.download-main {
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding-top: 20px; 
    box-sizing: border-box; 
    margin-top: 10vh; 
}

.download-content {
    display: flex;
    justify-content: space-between;
    color: #fff;
    background-color: #444;
    margin-bottom: 24px;
}

.download-content .left-column, .download-content .right-column {
    flex: 1;
    box-sizing: border-box; 
}

.download-content .right-column {
    border-left: 2px solid #fff; 
}

.download-content .title-section {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
}

.download-content .download-title {
    display: block;
    font-size: 32px; 
    font-weight: bold; 
}

.download-content .simulator-title {
    font-size: var(--base-font-size);
    font-weight: bold;
    color: #fa6600;
    display: block;
}

.download-content .task-section {
    background-color: #333;
    margin-top: 20px;
    padding-bottom: 18px;
}

.download-content .task-section p {
    text-align: center;
    color: #fff;
    font-size: 15px;
    padding: 20px 91px;
}

.download-content .task-section .highlight {
    display: flex; 
    align-items: center;
    font-weight: bold;
    background-color: rgba(250, 102, 0, 0.7);
    color: #fff; 
    margin-bottom: 10px; 
    padding: 10px; 
    font-size: 18px;
}

.task-number {
    color: #fff; 
    padding: 5px 10px; 
    flex-shrink: 0; 
    
}

.task-text {
    flex-grow: 1; 
}

.download-content .note {
    text-align: center;
    color: #fff; 
    font-size: 16px; 
    margin-top: 20px; 
    margin-bottom: 20px; 
    padding: 10px; 
    background-color: #444; 
    border-radius: 5px; 
    opacity: 0.9; 
}

.download-content .note strong {
    color: #fa6600; 
    font-weight: bold; 
}

.download-content .technical-issues {
    background-color: #333;
    text-align: center; 
    color: #fff; 
   
    margin-top: 10px; 
    font-size: 15px;
    padding: 24px 36px;
}

.download-content .highlight-orange {
    color: #fa6600; 
    font-weight: bold; 
}

.download-content .right-column .access-title {
    font-size: var(--base-font-size);
    color: #fff;
    font-weight: bold;
    height: 50px;
    margin-top: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.download-content .right-column ol {
    list-style: none; 
    padding: 0; 
}

.download-content .right-column ol li {
    background-color: #444;
    color: #fff;
    padding: 15px 48px;
    margin-bottom: 10px;
    text-align: center;
}

.download-content .right-column ol li .highlight-text {
    color: #fa6600; 
    font-weight: bold;
}

.download-content .right-column ol li.dark {
    background-color: #333; 
}

.flags {
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex;
    align-items: center; 
}

.flags img {
    max-width: 24px;
    max-height: 24px;
    margin: 0 4px;
    cursor: pointer;
}


main .videos-container {
  display: grid;
  grid: auto auto/auto auto auto auto;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
main .videos-container .video__item {
  position: relative;
  transition: ease-in-out;
  transition-duration: 0.3s;
}
main .videos-container .video__item__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2823529412);
  z-index: 2;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: ease-in-out;
  transition-duration: 0.3s;
}
main .videos-container .video__item__bottom .live-block {
  overflow: hidden;
  height: 42px;
  width: 42px;
  position: relative;
}
main .videos-container .video__item__bottom .live-block dotlottie-player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
main .videos-container .video__item__bottom .bottom__container {
  margin-left: 10px;
}
main .videos-container .video__item__bottom .bottom__container .bottom__title {
  font-size: 18px;
  letter-spacing: -1;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 7px;
}
main .videos-container .video__item__bottom .bottom__container .bottom__description {
  opacity: 0.5;
}
main .videos-container .video__item:hover {
  box-shadow: 0 0 0 3px #fa6600;
}
main .videos-container .video__item:hover .video__item__bottom {
  padding: 20px 10px;
}
main .competitors-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
main .competitors-container__row {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
main .competitors-container__row--header {
  opacity: 0.7;
}
main .competitors-container__row:not(.competitors-container__row--header) .competitors-container__column {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
}
main .competitors-container__column {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding-right: 20px;
}
main .competitors-container__column.first_place {
  background-image: url("../img/first_place.svg");
  background-position: 20px top;
  background-repeat: no-repeat;
  background-size: 22px auto;
}
main .competitors-container__column:nth-child(1) {
  min-width: 60px;
  max-width: 60px;
}
main .competitors-container__column:nth-child(2) {
  min-width: 250px;
  max-width: 250px;
}
main .competitors-container__column:nth-child(3) {
  min-width: 150px;
  max-width: 150px;
  flex-direction: column;
}
main .competitors-container__column:nth-child(3) .description {
  margin-top: 5px;
}
main .competitors-container__column:nth-child(4) {
  padding-right: 0;
}
main .competitors-container .attempts-item {
  width: 125px;
  margin-right: 10px;
  margin-bottom: 10px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4666666667);
  padding-top: 40px;
  padding-bottom: 20px;
  margin-top: auto;
}
footer > div {
  display: flex;
  align-items: center;
}
footer .heart {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-image: url("../img/heart.svg");
  background-position: center center;
  margin: 0 5px;
}
footer a {
  color: rgba(255, 255, 255, 0.4666666667);
  text-decoration: none;
}

.empty-state {
  padding: 100px 0;
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.5;
  line-height: 1.3;
  margin: 0 auto;
}
.empty-state .leaderboard {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 60px auto;
  background-image: url("../img/leaderboard.svg");
  background-position: center center;
  margin-bottom: 40px;
  cursor: default;
}
.empty-state h4 {
  font-size: 18px;
  letter-spacing: -1;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
.empty-state dotlottie-player {
  width: 200px;
  height: 200px;
  margin-bottom: -50px;
}

.description {
  opacity: 0.7;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
}

.login-page--main {
  margin-top: 10px;
  padding: 0;
}

.login-footer {
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
}

.login-page {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  height: auto;
}

.login-page-container {
  display: flex;
  flex-direction: column;
  width: 340px;
  background-color: #000000;
  padding: 50px 50px 20px 50px;
  justify-content: space-between;
}
.login-page-container .login-page--header {
  border-bottom: none;
  position: static;
  padding: 0;
}
.login-page-container h2 {
  margin-bottom: 10px;
}
.login-page-container h4 {
  font-size: 16px;
  letter-spacing: -1;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.7;
}
.login-page-container .login-container--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 10px;
}
.login-page-container .login-container {
  display: flex;
  flex-direction: column;
}
.login-page-container .login-container input {
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  border: none;
  margin-bottom: 3px;
}
.login-page-container .login-container input:focus {
  box-shadow: 0 0 0 2px #fa6600;
  outline: none;
}
.login-page-container .btn {
  border: none;
  height: 50px;
  cursor: pointer;
  opacity: 0.8;
  transition-duration: 0.2s;
  margin-top: 17px;
}
.login-page-container .btn:hover {
  opacity: 1;
}
.login-page-container .btn.btn-primary {
  background-color: #fa6600;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 15px;
  height: 50px;
}
.login-page-container .btn.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2392156863);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 15px;
  height: 50px;
  margin-top: 0;
  width: 100%;
}
.login-page-container .or-container {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  position: relative;
}
.login-page-container .or-container > div {
  background-color: #000000;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}
.login-page-container .or-container::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #707070;
  z-index: 1;
}

.login-image {
  background-color: #333;
  flex-grow: 1;
  background-image: url("../img/login.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.5;
}/*# sourceMappingURL=styles.css.map */

footer .signout {
    cursor: pointer; 
   
}