/* frontend/src/components/styles/leaderboard.css */
.leaderboard-wrapper {
  position: absolute;
  width: 300px;
  top: 0;
  left: 5%;
  display: flex;
  flex-direction: column;
  background: #0585B2;
  font-family: sans-serif, serif;
  font-weight: bold;
  border-radius: 6px;
  border: solid;
  overflow-y: auto;
}
.hide-leaderboard {
  display: none;
}
.close {
  width: 24px;
  align-self: end;
  background: #C4D100;
  border: none;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
}
.podium {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}
.crown-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.registrants {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.podium-image-wrapper {
  display: flex;
  justify-content: center;
}
.podium-first {
  width: 30%;
  margin-right: 12px;
}
.podium-second {
  width: 25%;
}
.podium-third {
  width: 20%;
  margin-right: 2px;
}
.podium-image {
  width: 100%;
  border-radius: 8px;
}
.podium-initials {
  padding: 25px;
  background: white;
  border-radius: 100%;
  border: solid;
}
.standings {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.top-3-box {
  background: grey;
  width: 33.4%;
  text-align: center;
}
.podium-1 {
  background-color: lightgray;
}
.user-score-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 0;
}
.headshot-img {
  width: 100%;
}
.headshot {
  width: 15%;
  height: 80%;
}
.no-headshot {
  width: 2%;
}
.top-player-card {
  display: flex;
  width: 96%;
  align-items: center;
  height: 40px;
  background: white;
  margin: 4px auto;
  border-radius: 8px;
}
.player-card-column-1 {
  display: flex;
  width: 75%;
  justify-content: start;
  text-align: center;
  height: 100%;
  align-items: center;
}
.rank {
  width: 10%;
}
.player-card-image {
  height: 100%;
  width: auto;
  border-radius: 4px;
}
.score {
  width: 24%;
  text-align: center;
}
.user-name {
  width: 75%;
  text-align: start;
  margin-left: 5px;
}
.user:hover {
  cursor: pointer;
}
.bottom-buttons-wrapper {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  line-height: 1.2;
}
.bottom-buttons {
  background: #C4D100;
  border: none;
  border-radius: 4px;
  height: 35px;
  margin: 7px;
  width: 29%;
  font-weight: bold;
  cursor: pointer;
}
.checklist-wrapper {
  position: absolute;
  width: 250px;
  top: 0;
  left: 101%;
  display: flex;
  flex-direction: column;
  background: #0585B2;
  font-family: sans-serif, serif;
  font-weight: bold;
  border-radius: 6px;
  padding-bottom: 2px;
  min-height: 100%;
}
.checklist-wrapper.cover {
  width: 100%;
  margin-left: -101%;
}
.checklist-card {
  display: flex;
  width: 96%;
  align-items: center;
  height: 40px;
  background: white;
  margin: 4px auto;
  border-radius: 8px;
  justify-content: space-evenly;
  font-size: 14px;
  font-weight: bold;
}
.checklist-checkbox {
  width: 8%;
  margin: 0 !important;
}
.checklist-title {
  width: 65%;
}
.checklist-points-wrapper {
  width: 25%;
  text-align: center;
}

/* frontend/src/43458/styles.css */
.participant {
  position: absolute;
  background: #337ab7;
  border: 2px solid white;
  border-radius: 50%;
  vertical-align: middle;
  font-size: 1.5vw;
  text-align: center;
  color: white;
  transition: 0.2s all;
  width: 5vw;
  height: 5vw;
  overflow: hidden;
  display: flex;
}
.participant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 20;
}
.participant .details {
  width: 100%;
  min-width: 20vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal_underlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.infocard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 40%;
  width: 35%;
  background: #f7f7f7;
  color: #666666;
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  border-radius: 1%;
  z-index: 30;
  box-sizing: border-box;
  -webkit-box-shadow: 12px 12px 4px -3px rgba(0, 0, 0, 0.63);
  box-shadow: 12px 12px 4px -3px rgba(0, 0, 0, 0.63);
}
.infocard_close-icon {
  display: flex;
  width: 80%;
  justify-content: flex-end;
  margin: 0;
  font-size: 3rem;
}
.infocard img {
  width: 8vw;
  height: 8vw;
  border: 2px solid #666666;
  border-radius: 50%;
}
.info-container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.info-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-left: 3px solid #666666;
  width: 50%;
  padding-left: 10px;
}
.info_company {
  margin: 0;
}
.info_name {
  margin: 0;
}
.infocard_buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
button.infocard_close,
button.infocard_message {
  background: #337ab7;
  color: #f7f7f7;
  padding: 10px;
  border: none;
  border-radius: 25px;
  width: 60%;
  -webkit-box-shadow: 8px 8px 4px -3px rgba(0, 0, 0, 0.63);
  box-shadow: 8px 8px 4px -3px rgba(0, 0, 0, 0.63);
}
button.infocard_message:hover {
  background: #f7f7f7;
  color: #337ab7;
  padding: 10px;
  border: 1px solid #666666;
  border-radius: 25px;
  width: 60%;
}
@media (max-width: 768px) {
  .infocard {
    height: 20%;
    width: 20%;
  }
}
#call {
  border: none;
  transform-origin: top left;
  transition: all 0.2s;
  position: absolute;
  left: 27%;
  top: 2%;
  width: 46%;
  height: 51.5%;
}
#call.hidden {
  opacity: 0;
}
#lobby {
  left: 1%;
  width: 7%;
  top: 2%;
  height: 6%;
}
#table1 {
  left: 0%;
  width: 31%;
  top: 59%;
  height: 40%;
}
.participant1 {
  left: 8%;
  top: 21%;
}
.participant2 {
  left: 29%;
  top: 8%;
}
.participant3 {
  left: 52%;
  top: 8%;
}
.participant4 {
  left: 72%;
  top: 21%;
}
.participant5 {
  left: 53%;
  top: 52%;
}
.others {
  left: 24%;
  top: 34%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #666666;
}
.others_text {
  font-size: 1.5rem;
  color: #666666;
}
.otherscard {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  max-height: 100%;
  width: 20%;
  background: #f7f7f7;
  color: #666666;
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  border-radius: 1%;
  z-index: 30;
  box-sizing: border-box;
  -webkit-box-shadow: 12px 12px 4px -3px rgba(0, 0, 0, 0.63);
  box-shadow: 12px 12px 4px -3px rgba(0, 0, 0, 0.63);
  border: 1px solid #666666;
}
button.otherscard_close,
button.modal_message {
  background: white;
  color: black;
  border: 1px solid black;
  padding: 4px;
  border-radius: 4px;
  width: 50%;
}
#table2 {
  left: 34%;
  width: 32%;
  top: 59%;
  height: 40%;
}
#table3 {
  right: 0%;
  width: 31%;
  top: 59%;
  height: 40%;
}
.hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
  border: 0;
}
.leaderboard-position {
  position: absolute;
  top: 13%;
  left: 3%;
  width: 14%;
  height: 48%;
}
.userSearch {
  display: flex;
  flex-direction: column;
  left: 1%;
  top: 1%;
  background: #f7f7f7;
  border-radius: 1rem;
  position: absolute;
  padding: 1vw;
  font-size: 1.3vw;
  z-index: 2;
}
.search-container {
  display: flex;
  border-bottom: 1px solid #666666;
  padding-bottom: 10px;
}
.search_label {
  font-size: 1.5rem;
  margin: 5px;
}
.search_input {
  font-size: 1.5rem;
  border: 1px solid #666666;
  border-radius: 20px;
  padding: 5px 0px 5px 10px;
  outline: none;
}
.search_input:hover,
.search_input:focus {
  -webkit-box-shadow: 5px 5px 7px -1px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 7px -1px rgba(0, 0, 0, 0.6);
}
.searchResults {
  background: #fff;
  border: 1px solid #666666;
  margin-top: 10px;
}
.results {
  font-size: 1.5rem;
  padding: 5px 0;
}
.tk-floating-header {
  position: absolute;
  margin-top: 15px;
  width: 300px;
  z-index: 2;
  margin-left: -100px;
  text-align: left;
}
.hide {
  display: none;
}
/*# sourceMappingURL=bundle.css.map */
