body {
    font-family: 'Open Sans', 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #2E2E2E;
    padding: 0px;
    margin: 0px;
    scroll-behavior: auto;
}

h1,
h2,
p {
    padding: 0px;
    margin: 0px;
}

h1 {
    text-transform: uppercase;
    color: #2E2E2E;
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
}

h2 {
    font-family: 'Trade Gothic LT';
    /* text-transform: uppercase; */
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #2E2E2E;
}

h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #2E2E2E;}

/* styles.css */


/* Style for the translucent white background */

.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Adjust the alpha value for transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Ensure the loader is on top of other elements */
}


/* Style for the loader div */

.loader {
    border: 8px solid #f3f3f3;
    /* Light gray border */
    border-top: 8px solid #3498db;
    /* Blue border for animation */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* Rotate animation */
}

.quick-loader {
    border: 4px solid #f3f3f3;
    /* Light gray border */
    border-top: 4px solid #3498db;
    /* Blue border for animation */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    /* Rotate animation */
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* styling for error-message show  */


.error-404-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 60vh;
}

.error-404-container .error-title {
font-size: 48px;
font-family: 'TradeGothic LT CondEighteen';
font-weight: 700;

}


.error-404-container .error-message {
    font-size: 18px;
    font-weight: 400;
    color: #231F20;

}




.error-404-container .error-refresh-button {
    padding: 12px 32px;
    background-color: #C31229;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    gap: 8px;
}

/*
Navbar CSS
*/

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.page-layout main {
    margin-left: 48px;
    margin-right: 48px;
    display: flex;
    justify-content: center;
}

/* .page-layout.Edition main,
.page-layout.StartList main {
    width: 996px;
    max-width: 996px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
} */

#brand {
    /* width: 1220px; */
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D7D7E2;
    /* header fixed  */
    padding-left: 48px;
    padding-right: 48px;
    background-color: #FFFFFF;
}


#brand .section-1.main-nav .hamburger-images {
    display: none;
}

/* #brand .section-1 {
    width: 250px;
} */

/* #brand .section-1 {
    flex: 1;
} */


#brand .left-side {
    display: flex;
    align-items: center;
    gap: 20px;

}

#brand .section-3.side-nav .trigger-sm {
    display: none;
}

#brand .section-1.main-nav ul {
    display: flex;
    /* white-space: nowrap; */
}

#brand .section-1.main-nav li {
    padding: 10px 15px;
    text-transform: uppercase;
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 72px;
    letter-spacing: 0.1em;
    padding: 10px;
}

#brand .section-1.main-nav li a {
  color: #2E2E2E;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 16px;
}

#brand .section-1.main-nav .menu-item a:hover {
    color: #990000 ;
}

#brand .right-side {
    display: flex;
    align-items: center;
}

#brand .section-3 ul {
    display: flex;
    justify-content: space-between;
}

#brand .section-3.side-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
#brand .section-3.side-nav a {
    color: #656770;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
    white-space: nowrap;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    top: 2px;
  }

  input:checked + .slider {
    background-color: #ccc;
  }

  /* input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  } */

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(19px);
    background-color: #990000;

  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 20px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

#brand .section-3.side-nav ul li {
    /* padding-left:  15px; */
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex: 1;
    justify-content: space-between;
    display: flex;
    margin-left: 20px;
}

#brand .section-3.side-nav li a {
    color: #2E2E2E;
}

#breadcrumb {
    margin-left: 48px;
    margin-right: 48px;
    padding-top: 13px;
    padding-bottom: 13px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #2E2E2E;
}

#breadcrumb a {
    color: #2E2E2ECC;
}

#banner-container {
    position: relative;
    margin-left: 48px;
    margin-right: 48px;
}

#banner-container .banner {
    width:100%;
    overflow: hidden;
    background-color: #990000 ;
    height: 138px;
    position: relative;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

#banner-container.placeholder {
    /* background-color: #990000 ; */
}

#banner-container img.primary {
    position: relative;
    z-index: 0;
    width: 100%;
    display: block;
}

#banner-container .img-bg {
    position: absolute;
    z-index: 1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #00000088;
}


#banner-container .content {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    position: absolute;
    color: #FFFFFF;
    /* text-align: center; */
}

#banner-container .content .section-1 {
    flex: 1;
}

#banner-container .content .section-2 {
    display: flex;
    align-items: center;
}

#banner-container .content h1 {
    text-transform: uppercase;
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 70px;
    color: #FFFFFF;
    text-align: center;
    /* margin-top: 30px; */
}

#banner-container .content ul {
    display: flex;
    justify-content: center;
    /* padding: 20px; */
}

#banner-container .content ul li {
    font-family: 'Open sans';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 4px;
    border: 1px solid #C31229;
    padding: 4px 22px 4px 22px;
    display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: #37191d;
}

#banner-container .content .cta {
    background-color: #990000 ;
    color: white;
    width: 230px;
    height: 45px;
    font-size: 16px;
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    border-color: #990000 ;
    line-height: 120%;
    cursor: pointer;
}

#banner-container.athelete .banner {
    height: auto;
    background-size: cover;
}

#banner-container.athelete .back-arrow {
    position: absolute;
    left: 10px;
    top:10px;
    cursor: pointer;

}

#banner-container.athelete .share-container {
    display: none;
}

#banner-container.athelete .placeholder {
    position: relative;
    min-height: 270px;
}

#banner-container.athelete .content {
    /* text-align: center; */
    display: block;
    position: relative;
    top: auto;
    transform: none;
    left: auto;
    right: auto;
    margin-bottom: 20px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
}

#banner-container.athelete .content .left {
    display: flex;
    /* padding-left: 40px; */
}

#banner-container.athelete .content .left .left-content {
    /* padding-left: 40px; */
}

#banner-container.athelete .content .horizontal-line {
    border-top: 1px solid #FF9EAC;
    /* margin-left: 2%; */
    margin-top: 2%;
    margin-right: 2%;
}

#banner-container.athelete .content .results-lists-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    gap: 5px;
}


#banner-container.athelete .content .left .athlete-banner-img {
    width: 200px;
    height: 250px;
    background-color:transparent;
    border:1px solid #8a8787;
    border-radius:50%
}



#banner-container.athelete .content .left .left-content p,
#banner-container.athelete .content .left .left-content h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
}

#banner-container.athelete .content .participant-details-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

#banner-container.athelete .content .participant-details-btn img {
    position: absolute;
    margin-left: 16px

}


#banner-container.athelete .content .participant-details-btn span  {
    border: 1px solid white;
    background-color: white;
    color: #990000 ;

    padding: 8px 25px 8px 34px;
    border-radius: 4px;
    font-family: 'Open Sans';

}

#banner-container.athelete .content .status {
    background: #CCFAB6;
    border-radius: 15px;
    display: inline-block;
    padding: 6px 17px;
    margin-bottom: 12px;
    color: #27762F;
}



#banner-container.athelete .content a.status {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #2E2E2E;
}



#banner-container.athelete .content h1 {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 15px;
    text-align: left;
}

#banner-container.athelete .content .desc {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
}



#banner-container.athelete .content .sub-title {
    margin-top: 20px;
    /* border: 1px solid #FFFFFF; */
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 0px 0px 0px 20px;
}
#banner-container.athelete .content .sub-title {
    display: none;
}
#banner-container.athelete .content .sub-title .share-icon {
    cursor: pointer;
}

#banner-container.athelete .content .sub-title p {
    border: 1px solid #FFFFFF;
    padding: 8px;
}




#banner-container.athelete .content .results-lists-container .results-lists {
    flex: 1;
    display: flex;
    /* justify-content: center; */
    justify-content: space-around;
    gap: 5px;
    align-items: flex-start;
}

#banner-container.athelete .content .results-lists-container .results-lists-item {
    /* display: flex;
    align-items: center;
    padding: 8px;
    flex: 1;
    justify-content: flex-start;
    padding-right: 30px;
    align-items: flex-start; */
    display: flex;
    padding: 8px;
    padding-right: 30px;
    align-items: flex-start;
    position: relative;
}

#banner-container.athelete .content .results-lists-container .results-lists-separator {
    /* display: flex;
    align-items: center; */
    /* display: none; */
    margin-right: 5px;
}

#banner-container.athelete .content .results-lists-container p {
    color: #FFC9D1;
}

#banner-container.athelete .content .results-lists-container .results-lists-item h2 {
    /* margin: 0;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 600px; */
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 600px;
    flex: 1;
    padding-right: 20px;
    position: relative;
    margin: 0;
}



#banner-container.athelete .content .results-lists-container .results-lists-item h2 a {
    color: #fff;
}

#banner-container.athelete .content .results-lists-container .results-lists-item a  img.link {
    /* position: absolute;
    right: -30px;
    top: 0px; */
    position: absolute;
    right: 0;
    top: 0;
    height: auto;

}

#banner-container.athelete .content .results-lists-container .results-lists-item .dot {
    height: 7px;
    width: 8px;
    background-color: #FF9EAC;
    border-radius: 50%;
    display: inline-block;
    margin: 10px;
}


/* Tabs CSS */

#content-nav-container {
    position: sticky;
    top: 0px;
    z-index: 999;
    margin-left: 48px;
    margin-right: 48px;
}

#content-nav {
    background-color: #F5F5F5;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    font-family: 'TradeGothic LT CondEighteen';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.1em;
    max-width: 1280px;
}

#content-nav li {
    padding-top: 17px;
    padding-bottom: 17px;
    flex: 1;
    justify-content: space-between;
}

#content-nav li.separator-sm {
    display: none;
}

#content-nav li a {
    color: #2E2E2E;
}

#content-nav li a:hover {
    color: #990000 ;
}

#content-nav li.highlight a {
    color: #990000 ;
    border-bottom: 3px solid #990000 ;
    padding-bottom: 15px;
}

/* search-box css */

.search-div {
    position: relative;
    display: flex;
    flex: 1;
    justify-content: end;
    max-width: 350px;
}

 .search-div .input-field {
    display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #F1F2F1;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    outline: none;
    height: 37px;
    text-indent: 40px;
    border: none;
}

 .search-div .search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.search-div .clear-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    cursor: pointer;
}


 .search-div .quick-loader {
    position: absolute;
    right: 10px;
    top:6px;
}

 .input-field::placeholder{
    flex: 0.33;

 }

 /* radiobtn css */

  .radio-btn input[type="radio"] {
    margin-top: 10px;
    margin-right: 10px;
  }
  .radio-btn input[type="radio"], label {
    color: #2E2E2E;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 600;
    accent-color: #990000 ;
    cursor: pointer;
  }

 .club h2 {
  padding-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
 }



 .club.inactive {
    width: 140px;
 }



.club.inactive h2 {
    color: #939DAF;
    cursor: pointer;
    text-align: center;

}

.compare-container-show-btn {
  height: 66px;
  background-color: #231F20;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  align-items: center;
  position: fixed;
  bottom: 10px;
  z-index: 100;
  left: 16px;
  right: 16px;
  padding-left: 60px;

}
.compare-container-show-btn .no-participant {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;

}



.compare-container-show-btn .compare-btn {
  border: 1px solid white;
  background-color: #990000 ;
  color: #fff;
  padding: 8px 40px 8px 40px;
  border: none;
  font-size: 14px;
  cursor: pointer;


}

.compare-container-show-btn button[disabled] {
    opacity: 0.8;
}

.compare-container-show-btn .clear-compare-group {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 70px;
}
.compare-container-show-btn .clear-compare-group .clear-text {
  color: #CBCACB;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 400;

}


.modal-container {
 display: flex;
  justify-content: center;
  /* align-items: center; */
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: slideUpModal 0.3s ease-in-out forwards;
  z-index: 9999;
}
  .modal-content {
    background-color: white;
    padding: 20px;
    width: 700px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    animation: slideUpContent 0.3s ease-in-out forwards;
    overflow-y: auto;
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  @keyframes slideUpContent {
    from {
      transform: translateY(50%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .modal-container .modal-content .modal-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
  }
  .modal-container .modal-content .modal-title-section img {
    cursor: pointer;
  }


  .modal-container .modal-content .modal-title-section .title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'TradeGothic LT CondEighteen';
    text-transform: uppercase;

  }


   .compare-table .finding-strength-section, .compare-table .finish-chart-section  {
    margin-top: 30px ;
   }


/*
  Footer CSS
  */

.footer-section1 {
    background-color: #F5F5F5;
}

.footer-section1 .social-section {
    margin-left: 48px;
    margin-right: 48px;
    margin-top: 60px;
    display: flex;
  justify-content: end;

}

.social-section .social-section1 {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.social-section .social-section1 .logo {
    max-width: 80%;
}

.social-section .social-section1 ul {
    display: flex;
    justify-content: flex-end;
}

.social-section .social-section1 ul li {
    padding-right: 30px;
}

.footer-section2 {
    background-color: #F5F5F5;
    padding-top: 40px;
}

.footer-section2 .footer-content {
    margin-left: 48px;
    margin-right: 48px;
    display: flex;
    justify-content: space-between;
}

.footer-section2 .footer-content ul {
    display: block;
    color: #2E2E2E;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
}

.footer-section2 .footer-content ul.break {
    display: none;
}

.footer-section2 .footer-content ul li a {
    text-transform: none;
    color: #2E2E2E;
    font-weight: normal;
    font-size: 14px;
    line-height: 200%;
    font-style: normal;
}

.footer-section3 {
    background-color: #F5F5F5;
    padding-top: 14px;
}

.footer-section3 .line {
    border: 1px solid #D7D7E2;
    opacity: 0.4;
    margin-left: 48px;
    margin-right: 48px;
}

.footer-section3 .copyright {
    margin-left: 48px;
    margin-right: 48px;
}

.footer-section3 .copyright ul {
    display: flex;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 200%;
    color: #777779;
    padding-top: 15px;
}

.copyright .flex-end {
    display: flex;
    flex: 1;
    /* margin-left: 750px; */
    justify-content: flex-end;
}

.copyright .flex-end li a {
    /* display: inline-flex;
  justify-content: space-between; */
    padding-left: 23px;
    color: #777779;
}

[data-tool="lang"].on .current {
    display: none;
}

[data-tool="lang"].on .selector {
    display: flex;
    gap: 10px;
}

[data-tool="lang"].off .current {
    display: block;
    cursor: pointer;
}

[data-tool="lang"].off .selector {
    display: none;
}

[data-tool="lang"] .selector>div {
    cursor: pointer;
}

/* racemap */
.page-layout.RaceMap .page-content {
    padding-top: 0;
}
#racemap-embed-container {
    width: 100%;
    height: calc(100vh - 370px);
    min-height: 400px;
}

.search-div {
    flex-wrap: wrap;
}

.search-div .search-icon {
    top: 9px;
    transform: none;
}

.search-div .clear-button {
    top: 14px;
    transform: none;
}

.search-div .quick-loader {
    top: 6px;
}


.search-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    width: 100%;
    padding: 8px 0 0;
    border: none;
    flex-wrap: nowrap;
}


.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: none;
    color: #222;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
}


.pagination-btn:hover:not(:disabled):not(.active) {
    background: none;
    color: #000;
}


.pagination-btn.active {
    background: #222;
    color: #fff;
    font-weight: 500;
    box-shadow: none;
}


.pagination-btn:disabled {
    opacity: 0.4;
    cursor: default;
    background: none;
    color: #222;
}


.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: #222;
    user-select: none;
    background: none;
    border: none;
    box-shadow: none;
}


.pagination-info {
    margin-left: 8px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}
