.main_body{
    /* margin: auto; */
    width: 100%;
    /* padding: 10px; */
    /* font-family: "Roboto", "Helvetica", "Arial", sans-serif; */
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 32px;
}

.tag {
    max-height: 20px;
    max-width: 50px;
    padding: 1px;
}
.tag_mobile {
    max-height: 15px;
    max-width: 100%;
    padding: 1px;
}

.general-container{
    margin:auto;
    padding:5px;
}
.main_title{
    min-height: 774px;
    background: rgba(0, 0, 0, .65) url('/img/las-vegas-strip.jpg');
    background-position: center center;
    background-size:cover;   
    background-repeat:   no-repeat;
    background-blend-mode: darken;
}

.sub-title{
    margin: 10px 0 0;
    font-family: "Roboto Slab", "Times New Roman", serif;
    font-size:21px;
}
.hestia-title{
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}


.container_tournaments{
    overflow-y: auto;
    max-height: 85vh;
    width: 100%;
    /* max-width:1000px; */
}

.tooltip-container{
    position: relative;
    float:right;
}
.tooltip-content{
    visibility: hidden;
    /* min-width: 500px; */
    background-color: white;
    color: black;
    text-align: center;
    padding: 10px ;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--bs-table-border-color);
    right: 20px;
    top:-200%;
    font-weight: normal;
    font-size:10px;
    /* Position the tooltip2 text - see examples below! */
    position:absolute;
    z-index: 1;
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
  }