@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansBlk.OTF");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansBlkIt.OTF");
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansRegular.OTF");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansItalic.OTF");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansBold.OTF");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansBoldIt.OTF");
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansLight.OTF");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "RooneySans";
    src: url("/assets/fonts/RooneySansLightIt.OTF");
    font-weight: 300;
    font-style: italic;
}

body
{
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: "RooneySans";
}

.center-h, .center
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.center-v, .center
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.d-flex
{
    display: flex;
}
.flex-column
{
    flex-direction: column;
}
.flex-row
{
    flex-direction: row;
}
.gap-5
{
    gap: 5px;
}
.gap-10
{
    gap: 10px;
}
.gap-15
{
    gap: 15px;
}
.gap-20
{
    gap: 20px;
}
.half-h
{
    width: 50%;
}
.row
{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.col
{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.tooltip
{
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted white;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #1f1f1f;
  border: 1px solid #fff;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  font-size: 1.8rem;
 
  bottom: 100%;
  left: 50%;
  margin-left: -125px; /* Use half of the width, to center the tooltip */
  
  position: absolute;
  z-index: 1;
}
.tooltip:hover .tooltiptext
{
  visibility: visible;
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: #1f1f1f transparent transparent transparent;
}
.collapsible
{
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}
.collapsible::after
{
    content: url("/assets/img/down-arrow.svg");
    display: block;
    width: 25px;
    height: 25px;
    margin-left: 15px;
    margin-top: 5px;
}
.collapsible.collapsed::after
{
    content: url("/assets/img/right-arrow.svg");
}
.collapsible-content
{
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.search-bar
{
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0 10px;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.search-button
{
    min-width: 100px;
    max-width: 200px;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0 10px;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.main-loading
{
    width: 100px;
    height: calc(100dvh - 80px - 20px - 40px - 40px);
    margin: auto;
    object-fit: contain;
}

.team-title
{
    display: none;
    font-size: 3.5rem;
    margin-top: 30px;
    justify-content: center;
}
