.voting-table-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.voting-table-modal.is-opened {
  display: block;
}
.voting-table-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.voting-table-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 85vh;
  width: 912px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1366px) {
  .voting-table-modal .modal-content {
    max-width: 85vw;
    max-height: 80vh;
    width: 800px;
  }
}
@media (max-width: 1024px) {
  .voting-table-modal .modal-content {
    max-width: 90vw;
    max-height: 75vh;
    width: 700px;
  }
}
@media (max-width: 991.98px) {
  .voting-table-modal .modal-content {
    width: calc(100% - 40px);
    padding: 14px;
    max-height: 80vh;
    max-width: unset;
  }
  .voting-table-modal .modal-content .hall-of-honor-table .table-row td:nth-child(3) {
    display: none;
  }
}
@media (max-width: 575px) {
  .voting-table-modal .modal-content {
    width: calc(100% - 32px);
    padding: 12px;
    max-height: 85vh;
  }
}
.voting-table-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .voting-table-modal .modal-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}
@media (max-width: 768px) {
  .voting-table-modal .modal-close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    padding: 4px;
  }
}
.voting-table-modal .modal-close svg {
  display: block;
  width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .voting-table-modal .modal-close svg {
    width: 10px;
    height: 10px;
  }
}
.voting-table-modal .modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.voting-table-modal .voting-table-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.voting-table-modal .voting-table-content .voting-table-header {
  margin-bottom: 24px;
  flex-shrink: 0;
}
.voting-table-modal .voting-table-content .voting-table-header .voting-table-title {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: #333333;
  margin: 0 0 0px 0;
}
@media (max-width: 575px) {
  .voting-table-modal .voting-table-content .voting-table-header .voting-table-title {
    font-size: 14px;
  }
}
.voting-table-modal .voting-table-content .voting-table-header .voting-table-subtitle {
  font-size: 18px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0;
}
.voting-table-modal .voting-table-content .voting-table-header .voting-table-subtitle b {
  color: #0069FF;
}
.voting-table-modal .voting-table-content .hall-of-honor-table-wrapper {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 24px;
}
.voting-table-modal .voting-table-content .vote-button {
  width: auto;
  min-width: 80px;
  padding: 8px 30px 8px 30px;
  border-radius: 88px;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 40px;
  justify-content: center;
  border: 0;
  white-space: nowrap;
  outline: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  background: #51C97C;
  background: -webkit-linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  background: -moz-linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  background: linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#51C97C", endColorstr="#69EE99", GradientType=1);
  color: #333333;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.voting-table-modal .voting-table-content .vote-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #69EE99;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.voting-table-modal .voting-table-content .vote-button:hover::before {
  opacity: 1;
}
.voting-table-modal .voting-table-content .vote-button:active::before {
  background: #51C97C;
  opacity: 1;
}
.voting-table-modal .voting-table-content .vote-button:focus::before {
  background: #51C97C;
  opacity: 1;
}
.voting-table-modal .voting-table-content .vote-button.voted {
  background: #E2EDFB;
  color: #333333;
  cursor: not-allowed;
  opacity: 0.6;
}
.voting-table-modal .voting-table-content .vote-button.voted::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 9px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.842 0.135233C12.0434 0.324098 12.0536 0.640516 11.8648 0.841972L4.36477 8.84197C4.27216 8.94075 4.14345 8.99775 4.00806 8.99994C3.87267 9.00212 3.74219 8.9493 3.64645 8.85356L0.146447 5.35355C-0.0488155 5.15829 -0.0488155 4.84171 0.146447 4.64645C0.341709 4.45119 0.658291 4.45119 0.853553 4.64645L3.98841 7.78131L11.1352 0.158031C11.3241 -0.0434251 11.6405 -0.0536321 11.842 0.135233Z' fill='%23333333'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.voting-table-modal .voting-table-content .vote-button.voted::before {
  background: #E2EDFB;
}
.voting-table-modal .voting-table-content .vote-button.voted:hover::before {
  opacity: 0;
}
.voting-table-modal .voting-table-content .vote-button.voted:active::before {
  background: #E2EDFB;
  opacity: 0;
}
.voting-table-modal .voting-table-content .vote-button.voted:focus::before {
  background: #E2EDFB;
  opacity: 0;
}
@media (max-width: 575px) {
  .voting-table-modal .voting-table-content .vote-button {
    padding: 6px 12px;
    font-size: 12px;
    height: 35px;
  }
}
.voting-table-modal .voting-table-content .hall-of-honor-table {
  width: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  border-collapse: separate;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row {
  border: none;
  border-bottom: 1px solid #EBEBEB;
  position: relative;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row:last-child {
  border-bottom: none;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row.selected td {
  border: 1px solid #3A86F2;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row.selected td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-right: none;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row.selected td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-left: none;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row.selected td:not(:first-child):not(:last-child) {
  border-left: none;
  border-right: none;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row td {
  border: none;
  vertical-align: middle;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:first-child {
  width: 41px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:first-child {
    text-align: right;
  }
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:not(:first-child) {
  padding-left: 24px;
}
@media (max-width: 768px) {
  .voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:not(:first-child) {
    padding-left: 10px;
  }
}
.voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:last-child {
  white-space: nowrap;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .voting-table-modal .voting-table-content .hall-of-honor-table .table-row td:last-child {
    padding-left: 10px;
  }
}
.voting-table-modal .voting-table-content .hall-of-honor-table .hall-of-honor-inner-details-tablet-down {
  display: none;
}
@media (max-width: 991.98px) {
  .voting-table-modal .voting-table-content .hall-of-honor-table .hall-of-honor-inner-details-tablet-down {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.voting-table-modal .voting-table-content .hall-of-honor-table .hall-of-honor-inner-infos {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .hall-of-honor-inner-infos h6 {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  margin: 0;
}
.voting-table-modal .voting-table-content .hall-of-honor-table .hall-of-honor-inner-infos small {
  font-size: 12px;
  font-weight: 600;
  color: #0069FF;
  text-transform: uppercase;
  width: 25px;
  height: 25px;
  background-color: #E7F1FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .voting-table-modal .voting-table-content .hall-of-honor-table {
    font-size: 14px;
  }
}
.voting-table-modal .voting-table-content .submit-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  padding: 16px 0 0 0;
  border-top: 1px solid #EBEBEB;
}
.voting-table-modal .voting-table-content .submit-section .submit-button {
  width: auto;
  padding: 12px 30px;
  border-radius: 88px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 0;
  white-space: nowrap;
  outline: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  background: #0069FF;
  background: -webkit-linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  background: -moz-linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  background: linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.voting-table-modal .voting-table-content .submit-section .submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3A86F2;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.voting-table-modal .voting-table-content .submit-section .submit-button span.button-arrow {
  margin-left: 10px;
  display: flex;
  align-self: center;
  position: relative;
  z-index: 2;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:hover::before {
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:active::before {
  background: #0069FF;
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:focus::before {
  background: #0069FF;
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:disabled {
  background: #E2EDFB;
  color: #333333;
  cursor: default;
  opacity: 0.6;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:disabled::before {
  background: #E2EDFB;
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:disabled:hover::before {
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:disabled:active::before {
  background: #E2EDFB;
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .submit-button:disabled:focus::before {
  background: #E2EDFB;
  opacity: 1;
}
.voting-table-modal .voting-table-content .submit-section .go-back-button {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
}

.section-rankings {
  margin: 24px 0;
}

.hidden {
  display: none;
}

.team-card.voted {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.authentication-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(18, 15, 31, 0.5);
  backdrop-filter: blur(10px);
  display: none;
}
.authentication-section.is-opened {
  display: flex;
}
.authentication-section .auth-modal {
  max-width: 385px;
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  z-index: 1001;
}
.authentication-section .auth-modal .auth-modal-header {
  display: flex;
  justify-content: flex-end;
}
.authentication-section .auth-modal .auth-modal-header .auth-modal-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1rem;
  height: 1rem;
}
.authentication-section .auth-modal .auth-modal-content .auth-modal-title {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.authentication-section .auth-modal .auth-modal-content .auth-modal-title h5 {
  text-align: center;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.authentication-section .auth-modal .auth-modal-content .auth-modal-title p {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
.authentication-section .auth-modal .auth-modal-content .auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .form-input {
  width: 100%;
  border-radius: 4px;
  padding: 0 1rem;
  height: 44px;
  border: 1px solid #D6D6D6;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #999999;
  background-color: #FFFFFF;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .email-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 4px;
  height: 44px;
  border: 1px solid #D6D6D6;
  background-color: #FFFFFF;
  color: #999999;
  cursor: pointer;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .email-button:hover {
  background: rgba(66, 133, 244, 0.08);
}
.authentication-section .auth-modal .auth-modal-content .auth-form .email-button.loading {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .email-button .button-text-mail {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator {
  display: flex;
  align-items: center;
  text-align: center;
  height: 53px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator .separator-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #333333;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator::before,
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #D8DADC;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator:not(:empty)::before {
  margin-right: 10px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-separator:not(:empty)::after {
  margin-left: 10px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .social-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .social-auth-buttons .facebook-button {
  width: 100%;
  display: grid;
  grid-template-columns: 20px 1fr;
  justify-content: start;
  align-items: center;
  border: 1px solid #D8DADC;
  border-radius: 4px;
  padding: 0 12px;
  height: 44px;
  background-color: #fff;
  color: #333333;
  cursor: pointer;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .social-auth-buttons .facebook-button:hover {
  background: rgba(66, 133, 244, 0.08);
}
.authentication-section .auth-modal .auth-modal-content .auth-form .social-auth-buttons .facebook-button .facebook-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-disclaimer {
  margin-top: 2px;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-disclaimer p {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: #999999;
  margin: 0;
}
.authentication-section .auth-modal .auth-modal-content .auth-form .auth-disclaimer p a {
  color: #999999;
}
@media (min-width: 768px) {
  .authentication-section .auth-modal .auth-modal-content .auth-form .auth-disclaimer {
    padding: 0 1rem;
  }
}

.confirmation-section {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(18, 15, 31, 0.5);
  backdrop-filter: blur(10px);
}
.confirmation-section.is-opened {
  display: flex;
}
.confirmation-section .confirmation-modal {
  max-width: 385px;
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.confirmation-section .confirmation-modal .confirmation-modal-header {
  display: flex;
  justify-content: flex-end;
}
.confirmation-section .confirmation-modal .confirmation-modal-header .confirmation-modal-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1rem;
  height: 1rem;
}
.confirmation-section .confirmation-modal .confirmation-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation-section .confirmation-modal .confirmation-modal-content .confirmation-modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px 0 16px 0;
}
.confirmation-section .confirmation-modal .confirmation-modal-content .confirmation-modal-title {
  display: flex;
  text-align: center;
  justify-content: center;
}
.confirmation-section .confirmation-modal .confirmation-modal-content .confirmation-modal-title strong {
  font-weight: 700;
}

.vote-confirmation-section {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  background-color: rgba(18, 15, 31, 0.5);
  backdrop-filter: blur(10px);
}
.vote-confirmation-section.is-opened {
  display: flex;
}
.vote-confirmation-section .vote-confirmation-modal {
  max-width: 548px;
  width: 100%;
  padding: 1rem 1rem 2rem 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-header {
  display: flex;
  justify-content: flex-end;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-header .vote-confirmation-modal-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1rem;
  height: 1rem;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 0.5rem;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-title h3 {
  max-width: 389px;
  width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #3A86F2;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-title p {
  max-width: 389px;
  width: 100%;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #333333;
}
@media (min-width: 768px) {
  .vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-title p {
    font-size: 16px;
    line-height: 24px;
  }
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons {
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-content {
  width: 100%;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-content .vote-confirmation-modal-button-back {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(90deg, #005EA8 0%, #3A86F2 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 88px;
  padding: 12px;
  width: 100%;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-content .vote-confirmation-modal-button-back span {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
  color: #FFFFFF;
}
.vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-main {
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #005EA8;
  text-align: center;
  align-content: center;
  padding: 8px;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 768px) {
  .vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons {
    flex-direction: row;
  }
  .vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-main {
    order: 1;
  }
  .vote-confirmation-section .vote-confirmation-modal .vote-confirmation-modal-content .vote-confirmation-modal-buttons .vote-confirmation-modal-button-content {
    order: 2;
  }
}

.page-template-templatestemplate-c-gold-awards-php {
  overflow-x: hidden;
}

.c-gold-container {
  position: relative;
}
.c-gold-container h2 {
  margin-top: 2rem !important;
  position: relative;
}
.c-gold-container h2::after {
  max-width: 84px;
}
.c-gold-container p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.c-gold-container p a {
  color: #005EA8;
  text-decoration: underline;
}
.c-gold-container p strong,
.c-gold-container p b {
  font-weight: 700;
}
.c-gold-container a {
  color: #005EA8;
}
.c-gold-container ul {
  margin-bottom: 1.5rem;
}
.c-gold-container ul li {
  margin-bottom: 0.5rem;
}
.c-gold-container ul li::before {
  background-color: var(--primary-color, #333);
}
.c-gold-container ul li a {
  color: #005EA8;
  text-decoration: underline;
}
.c-gold-container ol {
  margin-bottom: 1.5rem;
}
.c-gold-container ol li {
  margin-bottom: 0.5rem;
}
.c-gold-container ol li::before {
  color: var(--primary-color, #333);
}
.c-gold-container ol li a {
  color: #005EA8;
  text-decoration: underline;
}
.c-gold-container blockquote {
  border-left: 4px solid var(--primary-color, #333);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.c-gold-container section {
  display: block;
}

.c-gold-navigation {
  z-index: 500;
}

.section-herobanner {
  width: 100vw;
}
.section-herobanner .hero-header {
  max-width: 1224px;
  justify-self: center;
}
.section-herobanner #kheroheader {
  margin: 0;
  padding: 2rem 0.5rem 1rem;
  max-width: 1224px;
  justify-self: center;
}
.section-herobanner #kheroheader .breadcrumbs {
  color: #D6D6D6;
  margin: 0 0 1rem;
  padding: 0;
}
.section-herobanner #kheroheader .breadcrumbs a {
  font-weight: 700;
  color: #FFFFFF;
}
.section-herobanner #kheroheader .breadcrumbs .breadcrumb_last {
  font-weight: 400;
  color: #D6D6D6;
}
.section-herobanner #kheroheader .hero-header-inner {
  gap: 0.5rem;
}
.section-herobanner #kheroheader .hero-header-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.section-herobanner #kheroheader .hero-header-date span {
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
.section-herobanner #kheroheader .hero-header-description p {
  margin: 0;
}
@media (min-width: 1224px) {
  .section-herobanner #kheroheader .hero-header-description {
    min-height: 96px !important;
  }
}
@media (min-width: 1224px) {
  .section-herobanner #kheroheader {
    padding: 1rem 0 2rem;
  }
}
.section-herobanner .hero-header-main-image img {
  width: 391px;
  height: 270px;
}
@media (min-width: 1224px) {
  .section-herobanner .hero-header-main-image {
    display: flex;
    align-items: center;
    top: 26px;
  }
}

.discard-section {
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 500;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(18, 15, 31, 0.5);
  backdrop-filter: blur(10px);
}
.discard-section.is-opened {
  display: flex;
}

.discard-modal {
  max-width: 548px;
  width: 100%;
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}

.discard-modal-header {
  display: flex;
  justify-content: flex-end;
}
.discard-modal-header .discard-modal-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 1rem;
  height: 1rem;
}

.discard-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.discard-modal-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.discard-modal-title h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #333333;
  margin: 0;
}
.discard-modal-title p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) {
  .discard-modal-title p {
    font-size: 16px;
    line-height: 24px;
  }
}

.discard-modal-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .discard-modal-buttons {
    padding: 0 18.5px;
    flex-direction: row;
    justify-content: space-around;
  }
  .discard-modal-buttons .discard-modal-button-main {
    order: 1;
  }
  .discard-modal-buttons .discard-modal-button-content {
    order: 2;
  }
}

.discard-modal-button-content {
  width: 100%;
}

.discard-modal-button-back {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(90deg, #005EA8 0%, #3A86F2 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 88px;
  padding: 12px;
}
.discard-modal-button-back span {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .discard-modal-button-back {
    max-width: 278px;
    width: max-content;
  }
}

.discard-modal-button-main {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  color: #005EA8;
  text-align: center;
  align-content: center;
  padding: 12px 0.5rem;
  text-decoration: none;
}

.section-phases {
  margin-bottom: 24px;
}
.section-phases .phase-header .section-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.section-phases .phase-header .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 4px;
  background-color: #A8CAFA;
}
.section-phases .phase-header .section-subtitle {
  margin-bottom: 16px;
}
.section-phases .phases-navigation {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 -8px;
}
@media (max-width: 768px) {
  .section-phases .phases-navigation {
    flex-wrap: wrap;
  }
}
.section-phases .phases-navigation .phase-box-wrapper {
  flex: 0 0 25%;
  width: 25%;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .section-phases .phases-navigation .phase-box-wrapper {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 16px;
  }
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  background-color: #ffffff;
  position: relative;
  border: 1px solid #3A86F2;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box.phase-active {
  background-color: #D8E8FF;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box.phase-upcoming {
  pointer-events: none;
  filter: grayscale(100%);
  border: 1px solid #E6E7E9;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box.phase-finished {
  border: 1px solid #E6E7E9;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box.phase-finished .active-indicator {
  background-color: #DAFBE6;
  color: #2A884C;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.1458 8.49998C16.1458 12.9585 12.5315 16.5729 8.07292 16.5729C3.61436 16.5729 0 12.9585 0 8.49998C0 4.04142 3.61436 0.427063 8.07292 0.427063C12.5315 0.427063 16.1458 4.04142 16.1458 8.49998ZM7.13913 12.7745L13.1287 6.78494C13.3321 6.58156 13.3321 6.25177 13.1287 6.04839L12.3922 5.31183C12.1888 5.10841 11.859 5.10841 11.6556 5.31183L6.77083 10.1965L4.49027 7.91596C4.28688 7.71258 3.9571 7.71258 3.75368 7.91596L3.01712 8.65252C2.81374 8.85591 2.81374 9.18569 3.01712 9.38908L6.40254 12.7745C6.60596 12.9779 6.93571 12.9779 7.13913 12.7745Z' fill='%232A884C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 17px 17px;
  padding-right: 32px;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .active-indicator {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: #0069FF;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #D8E8FF;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-indicators {
  margin-top: 15px;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-indicators .medal-number img {
  display: block;
  max-width: 120px;
  height: 80px;
  object-fit: contain;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-indicators .medal-icon img {
  display: block;
  max-width: 120px;
  height: 80px;
  object-fit: contain;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-info .phase-name {
  font-size: 18px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-info .phase-dates {
  font-size: 14px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  color: #747272;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button {
  width: 100%;
  padding: 8px 30px 8px 30px;
  border-radius: 88px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 40px;
  justify-content: center;
  border: 0;
  white-space: nowrap;
  outline: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  background: #51C97C;
  background: -webkit-linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  background: -moz-linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  background: linear-gradient(90deg, rgb(81, 201, 124) 0%, rgb(105, 238, 153) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#51C97C", endColorstr="#69EE99", GradientType=1);
  color: #333333;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #69EE99;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button span.button-arrow {
  margin-left: 10px;
  display: flex;
  align-self: center;
  position: relative;
  z-index: 2;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button:hover::before {
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button:active::before {
  background: #51C97C;
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button:focus::before {
  background: #51C97C;
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.voting-table-btn {
  background: #0069FF;
  background: -webkit-linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  background: -moz-linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  background: linear-gradient(90deg, rgb(0, 105, 255) 0%, rgb(58, 134, 242) 100%);
  color: #ffffff;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.voting-table-btn::before {
  background: #3A86F2;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.voting-table-btn:hover::before {
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.voting-table-btn:active::before {
  background: #0069FF;
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.voting-table-btn:focus::before {
  background: #0069FF;
  opacity: 1;
}
.section-phases .phases-navigation .phase-box-wrapper .phase-box .phase-button.disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
  pointer-events: none;
}
.section-phases .phase-teams-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.section-phases .phase-teams-modal.is-opened {
  display: block;
}
.section-phases .phase-teams-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.section-phases .phase-teams-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 85vh;
  width: 912px;
  overflow-y: auto;
  padding: 16px;
}
@media (max-width: 1366px) {
  .section-phases .phase-teams-modal .modal-content {
    max-width: 85vw;
    max-height: 80vh;
    width: 800px;
  }
}
@media (max-width: 1024px) {
  .section-phases .phase-teams-modal .modal-content {
    max-width: 90vw;
    max-height: 75vh;
    width: 700px;
  }
}
@media (max-width: 768px) {
  .section-phases .phase-teams-modal .modal-content {
    width: calc(100% - 40px);
    max-height: 80vh;
    padding: 14px;
  }
}
@media (max-width: 575px) {
  .section-phases .phase-teams-modal .modal-content {
    width: calc(100% - 32px);
    padding: 12px;
    max-height: 85vh;
    max-width: unset;
  }
}
.section-phases .phase-teams-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .section-phases .phase-teams-modal .modal-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}
@media (max-width: 768px) {
  .section-phases .phase-teams-modal .modal-close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    padding: 4px;
  }
}
.section-phases .phase-teams-modal .modal-close svg {
  display: block;
  width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .section-phases .phase-teams-modal .modal-close svg {
    width: 10px;
    height: 10px;
  }
}
.section-phases .phase-teams-modal .modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.section-phases .phase-teams-modal .active-phase-content .active-phase-header {
  margin-bottom: 24px;
}
.section-phases .phase-teams-modal .active-phase-content .active-phase-header .active-phase-title {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: #333333;
  margin: 0 0 0px 0;
}
@media (max-width: 575px) {
  .section-phases .phase-teams-modal .active-phase-content .active-phase-header .active-phase-title {
    font-size: 18px;
  }
}
.section-phases .phase-teams-modal .active-phase-content .active-phase-header .active-phase-subtitle {
  font-size: 18px;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0;
}
.section-phases .phase-teams-modal .active-phase-content .active-phase-header .active-phase-subtitle b {
  color: #0069FF;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
@media (max-width: 768px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams {
    margin: 0 -4px;
  }
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card-wrapper {
  flex: 0 0 20%;
  width: 20%;
  padding: 0 8px;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card-wrapper {
    flex: 0 0 25%;
  }
}
@media (max-width: 992px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card-wrapper {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 768px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card-wrapper {
    flex: 0 0 50%;
    padding: 0 4px;
    margin-bottom: 8px;
  }
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card {
  border: 1px solid #C2DBFF;
  border-radius: 8px;
  padding: 17.5px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #0069FF;
  font-weight: 600;
  padding: 6px 8px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(0, 105, 255, 0.2);
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 575px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-number {
    font-size: 14px;
  }
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 575px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-logo {
  max-width: 100%;
  height: 50px;
  margin-bottom: 8px;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 575px) {
  .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-logo {
    height: 25px;
    width: 25px;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-info {
  display: flex;
  text-align: center;
  justify-content: center;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-info .team-name {
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #333333;
  margin: 0;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-header .team-info .player-count {
  font-size: 14px;
  color: #666666;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px 0;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 6px;
  background-color: #f8f9fa;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-avatar {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  overflow: hidden;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-info {
  flex: 1;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-info .player-number-name {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-info .player-number-name .player-number {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  margin-right: 6px;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-info .player-number-name .player-name {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .team-players .players-grid .player-card .player-info .player-position {
  font-size: 12px;
  color: #999999;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card .no-players {
  text-align: center;
  padding: 20px;
  color: #999999;
  font-style: italic;
}
.section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card.selected, .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card:active, .section-phases .phase-teams-modal .active-phase-content .phase-teams .team-card:focus {
  border-color: #0069FF;
}

.trust-blog #navigation-top {
  background-color: #0B2441;
}
.trust-blog #navigation-top #navigation-one {
  gap: 0;
}
.trust-blog #navigation-top #navigation-one #navigation-mobile-trigger span {
  background-color: #fff;
}
.trust-blog #navigation-top #navigation-one .c-gold-logo img {
  height: 45px;
  display: block;
  object-fit: contain;
  width: auto;
  max-width: 180px;
}
@media (min-width: 768px) {
  .trust-blog #navigation-top #navigation-one {
    gap: 1rem;
  }
  .trust-blog #navigation-top #navigation-one #navigation-menu-items {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .trust-blog #navigation-top #navigation-one #navigation-menu-items .navigation-title {
    color: #fff;
    text-transform: capitalize;
    transition: 0.3s linear 0s;
  }
  .trust-blog #navigation-top #navigation-one #navigation-menu-items .navigation-menu-item:hover .navigation-title {
    color: #ecb681;
  }
}

.cgold-awards-search-wrapper #search-form input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000;
}
.cgold-awards-search-wrapper #search-form input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.cgold-awards-search-wrapper #search-form button {
  background-color: transparent;
  border: none;
}
.cgold-awards-search-wrapper #search-form button svg path {
  fill: #000;
}
.cgold-awards-search-wrapper .search-toggle {
  color: #fff;
}
.cgold-awards-search-wrapper .search-toggle .search-icon svg path {
  fill: #fff;
}
.cgold-awards-search-wrapper .search-toggle .text {
  color: #fff;
}
.cgold-awards-search-wrapper .search-toggle .close-icon {
  color: #fff;
}
.cgold-awards-search-wrapper .search-toggle.active {
  color: #000;
}
.cgold-awards-search-wrapper .search-toggle.active .search-icon svg path {
  fill: #000;
}
.cgold-awards-search-wrapper .search-toggle.active .text {
  color: #000;
}
.cgold-awards-search-wrapper .search-toggle.active .close-icon {
  color: #000;
}

@media (max-width: 1223px) {
  #navigation.search-is-active #navigation-search.cgold-awards-search-wrapper {
    width: 40%;
    right: 20px;
    left: auto;
    position: absolute;
  }
}

.social-share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.social-share-buttons .social-share-button {
  min-width: 222px;
  min-height: 54px;
  width: 100%;
  border: 1px solid #D8DADC;
  background-color: #FFF;
  border-radius: 10px;
  padding: 18px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .social-share-buttons .social-share-button {
    padding: 18px 1rem;
  }
}
.social-share-buttons .social-share-button:hover {
  border-color: #3A86F2;
  text-decoration: none;
}
.social-share-buttons .social-share-button:active, .social-share-buttons .social-share-button:focus {
  background-color: #E2EDFB;
}
.social-share-buttons .social-share-button .social-share-text {
  color: #333333;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .social-share-buttons {
    flex-direction: row;
  }
}

.editorial-picks-section .badge-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: #747272;
}
.editorial-picks-section .editorial-picks-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card {
  display: flex;
  align-items: center;
  border: 1px solid #EBEBEB;
  background-color: #FFF;
  border-radius: 0.5rem;
  padding: 0.5rem;
  gap: 0.5rem;
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card .player-avatar {
  border-radius: 100%;
  align-self: center;
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card .editorial-pick-card-content .editorial-pick-player-name {
  margin: 0;
  font-family: "source sans pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}
@media (min-width: 768px) {
  .editorial-picks-section .editorial-picks-grid .editorial-pick-card .editorial-pick-card-content .editorial-pick-player-name {
    font-size: 16px;
    line-height: 24px;
  }
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card .editorial-pick-card-content .team-container {
  display: flex;
  gap: 0.25rem;
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card .editorial-pick-card-content .team-container img {
  align-self: center;
}
.editorial-picks-section .editorial-picks-grid .editorial-pick-card .editorial-pick-card-content .team-container .team-name {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: #747272;
}
@media (min-width: 768px) {
  .editorial-picks-section .editorial-picks-grid .editorial-pick-card {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .editorial-picks-section .editorial-picks-grid {
    flex-direction: row;
    gap: 1rem;
  }
}
.editorial-picks-section .editorial-picks-description {
  padding: 1rem 0;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #333333;
}

.rankings-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0.5rem;
  border: 1px solid #EBEBEB;
  border-radius: 0.5rem;
  background-color: #FFF;
}
.rankings-table-wrapper .rankings-table {
  width: 100%;
  min-width: 800px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  border-collapse: collapse;
}
.rankings-table-wrapper .rankings-table .table-header {
  border: none;
}
.rankings-table-wrapper .rankings-table .table-header th {
  border: none;
  font-weight: 800;
}
.rankings-table-wrapper .rankings-table .table-header th:first-child {
  width: 41px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .rankings-table-wrapper .rankings-table .table-header th:first-child {
    text-align: right;
  }
}
.rankings-table-wrapper .rankings-table .table-header th:not(:first-child) {
  padding: 0 0 0 0.5rem;
  align-content: center;
}
.rankings-table-wrapper .rankings-table .table-row {
  border: none;
  position: relative;
}
.rankings-table-wrapper .rankings-table .table-row:first-child {
  border-top: 1px solid #F8BD4B;
}
.rankings-table-wrapper .rankings-table .table-row:nth-child(2) {
  border-top: 1px solid #999999;
}
.rankings-table-wrapper .rankings-table .table-row:nth-child(3) {
  border-top: 1px solid #C66216;
}
.rankings-table-wrapper .rankings-table .table-row:nth-child(n+4) {
  border-top: 1px solid #EBEBEB;
}
.rankings-table-wrapper .rankings-table .table-row.first-place td:first-child {
  position: relative;
}
.rankings-table-wrapper .rankings-table .table-row.first-place td:first-child .crown-icon {
  position: absolute;
  top: -0.5px !important;
  left: -7px !important;
  z-index: 1;
  border-radius: 8px 0 4px 0;
  padding: 4px;
  max-width: 18px;
  max-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rankings-table-wrapper .rankings-table .table-row.first-place td:first-child .crown-icon.rank-1 {
  background-color: #F8BD4B;
}
.rankings-table-wrapper .rankings-table .table-row.first-place td:first-child .crown-icon.rank-2 {
  background-color: #999999;
}
.rankings-table-wrapper .rankings-table .table-row.first-place td:first-child .crown-icon.rank-3 {
  background-color: #C66216;
}
.rankings-table-wrapper .rankings-table .table-row td {
  border: none;
  align-content: center;
  padding-right: 0;
}
.rankings-table-wrapper .rankings-table .table-row td:first-child {
  width: 41px;
  white-space: nowrap;
  text-align: center;
}
.rankings-table-wrapper .rankings-table .table-row td:not(:first-child) {
  padding-left: 0.5rem;
}
.rankings-table-wrapper .rankings-table .table-row td .rankings-table-inner-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.rankings-table-wrapper .rankings-table .table-row td .rankings-table-inner-details .table-player-avatar {
  border-radius: 100%;
}
@media (min-width: 768px) {
  .rankings-table-wrapper {
    padding: 1rem;
  }
}

.rankings-show-more {
  text-align: center;
  margin-top: 30px;
}
.rankings-show-more .show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #005EA8;
  border: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  padding: 0;
}
.rankings-show-more .show-more-btn .arrow-icon {
  width: 13px;
  height: 6px;
  transition: transform 0.3s ease;
}
.rankings-show-more .show-more-btn:hover .arrow-icon {
  transform: translateY(2px);
}

.wp-block-heading {
  scroll-margin-top: 56px;
}

.c-gold-container > .wp-block-heading:first-of-type {
  margin-top: 3rem !important;
}

.cgold-timeline {
  padding-top: 1rem;
}
.cgold-timeline .timeline-item {
  display: flex;
  min-height: 65px;
  gap: 1rem;
  width: 100%;
}
.cgold-timeline .timeline-item .timeline-content {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.cgold-timeline .timeline-item .timeline-content .timeline-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
}
.cgold-timeline .timeline-item .timeline-content .timeline-dates {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item .timeline-content {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.cgold-timeline .timeline-item .timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cgold-timeline .timeline-item .timeline-line .timeline-line-left,
.cgold-timeline .timeline-item .timeline-line .timeline-line-right {
  width: 1px;
  height: 100%;
  background-color: #3A86F2;
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item .timeline-line .timeline-line-left,
  .cgold-timeline .timeline-item .timeline-line .timeline-line-right {
    width: 100%;
    height: 1px;
  }
}
.cgold-timeline .timeline-item .timeline-line .timeline-line-circle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cgold-timeline .timeline-item .timeline-line .timeline-line-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #3A86F2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.cgold-timeline .timeline-item .timeline-line .timeline-line-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: rgba(58, 134, 242, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item .timeline-line {
    flex-direction: row;
    order: 2;
  }
}
.cgold-timeline .timeline-item:first-child .timeline-line .timeline-line-left {
  background: linear-gradient(to bottom, #A8CAFA, #3A86F2);
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item:first-child .timeline-line .timeline-line-left {
    background: linear-gradient(to right, #A8CAFA, #3A86F2);
  }
}
.cgold-timeline .timeline-item:last-child .timeline-line .timeline-line-right {
  background: linear-gradient(to bottom, #3A86F2, #A8CAFA);
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item:last-child .timeline-line .timeline-line-right {
    background: linear-gradient(to right, #3A86F2, #A8CAFA);
  }
}
@media (min-width: 768px) {
  .cgold-timeline .timeline-item {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .cgold-timeline {
    display: flex;
    margin: 1.5rem 0;
  }
}

.hall-of-honor-section {
  margin-bottom: 24px;
}
.hall-of-honor-section .hall-of-honor-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.hall-of-honor-section .hall-of-honor-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 4px;
  background-color: #A8CAFA;
}
.hall-of-honor-section .hall-of-honor-description {
  margin-bottom: 16px;
}
.hall-of-honor-section .hall-of-honor-table-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table {
  width: 100%;
  min-width: 800px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header {
  border: none;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header th {
  border: none;
  font-weight: 800;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header th:first-child {
  width: 41px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header th:first-child {
    text-align: right;
  }
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header th:not(:first-child) {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-header th:not(:first-child) {
    padding-left: 10px;
  }
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table.no-pos th:first-child {
  text-align: left;
  width: auto;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row {
  border: none;
  border-bottom: 1px solid #EBEBEB;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row:last-child {
  border-bottom: none;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row td {
  border: none;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row td:first-child {
  width: 41px;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row td:first-child {
    text-align: right;
  }
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row td:not(:first-child) {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .table-row td:not(:first-child) {
    padding-left: 10px;
  }
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .hall-of-honor-inner-details {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .hall-of-honor-inner-details .team-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  vertical-align: middle;
}
.hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table .hall-of-honor-inner-infos {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper .hall-of-honor-table {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hall-of-honor-section .hall-of-honor-table-wrapper {
    padding-left: 0;
  }
}
.hall-of-honor-section .hall-of-honor-show-more {
  text-align: center;
  margin-top: 30px;
}
.hall-of-honor-section .hall-of-honor-show-more .show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0069FF;
  border: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  padding: 0;
}
.hall-of-honor-section .hall-of-honor-show-more .show-more-btn .arrow-icon {
  width: 13px;
  height: 6px;
  transition: transform 0.3s ease;
}
.hall-of-honor-section .hall-of-honor-show-more .show-more-btn:hover .arrow-icon {
  transform: translateY(2px);
}

.initials {
  font-weight: 600;
  color: #0069FF;
  text-transform: uppercase;
  width: 35px;
  height: 35px;
  font-size: 16px;
  background-color: #E7F1FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.initials.initials-small {
  margin-right: 8px;
  font-size: 12px;
  width: 25px;
  height: 25px;
}

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