<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
* Responsive Tournament Bracket
* Copyright 2016 Jakub HÃƒÂ¡jek
* Licensed under MIT (https://opensource.org/licenses/MIT)
*/

/* CSS CODEPEN */
.h-fit {
    height: fit-content;
}

@font-face {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/worksans/v11/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXBiEJow.ttf)
    format("truetype");
}
@font-face {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/worksans/v11/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiEJow.ttf)
    format("truetype");
}
@font-face {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/worksans/v11/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQBiEJow.ttf)
    format("truetype");
}
@font-face {
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/worksans/v11/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QBiEJow.ttf)
    format("truetype");
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-size: 15px;
}
@media (min-width: 38em) {
    html {
        font-size: 14px;
    }
}
@media (min-width: 52em) {
    html {
        font-size: 15px;
    }
}
@media (min-width: 72em) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: #f1f1f1;
    font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
}

ul {
    padding: 0;
}
.my-container {
    margin: 0 0.5em;
}
h1,
h2 {
    text-align: center;
}
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}
h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2em;
}

.tournament-bracket {
    display: flex;
    flex-direction: column;
}
@media (min-width: 38em) {
    .tournament-bracket {
        flex-direction: row;
    }
}
.tournament-bracket__round {
    display: block;
    margin-left: -3px;
    flex: 1;
}
.tournament-bracket__round-title {
    color: #255eafb3;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    /* font-style: italic; */
    margin-bottom: 1.5em;
    position: sticky;
    top: 0.5em;
}

.tournament-bracket__list {
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 2em;
    margin-bottom: 2em;
    transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
    /*max-width: 20em;*/
    transition: 0.8s ease all;
    border-radius: 1em;
}

.tournament-bracket__list:hover {
    background: #99d6ff4a;
    box-shadow: rgb(151 186 249 / 72%) 0px 2px 4px 0px;
}

@media (max-width: 24em) {
    .tournament-bracket__list {
        padding-bottom: 1em;
        margin-bottom: 1em;
    }
}
@media (min-width: 38em) {
    .tournament-bracket__list {
        margin-bottom: 0;
        padding-bottom: 0;
        border-right: 1px dashed #e5e5e5;
        border-bottom: 0;
    }
}

.tournament-bracket__round:last-child .tournament-bracket__list {
    border: 0;
}
.tournament-bracket__item {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 2% 0;
    width: 48%;
    transition: padding 0.2s linear;
}
.tournament-bracket__item:nth-child(odd) {
    margin-right: 2%;
}
.tournament-bracket__item:nth-child(even) {
    margin-left: 2%;
}
.tournament-bracket__item::after {
    transition: width 0.2s linear;
}
@media (max-width: 24em) {
    .tournament-bracket__item {
        width: 100%;
        padding: 0.2rem 1rem;
    }
    .tournament-bracket__item:nth-child(odd),
    .tournament-bracket__item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}
@media (min-width: 38em) {
    .tournament-bracket__item {
        padding: 0.2rem 1rem;
        width: 100%;
    }
    .tournament-bracket__item:nth-child(odd),
    .tournament-bracket__item:nth-child(even) {
        margin: 0;
    }
    .tournament-bracket__item::after {
        position: absolute;
        right: 0;
        content: "";
        display: block;
        width: 1em;
        height: 45%;
        border-right: 2px solid #298036;
    }
    .tournament-bracket__item:nth-child(odd)::after {
        top: 50%;
        border-top: 2px solid #298036;
        transform: translateY(-1px);
    }
    /*.tournament-bracket--rounded*/
    .tournament-bracket__item:nth-child(odd)::after {
        border-top-right-radius: 0.6em;
    }
    .tournament-bracket__item:nth-child(even)::after {
        bottom: 50%;
        border-bottom: 2px solid #298036;
        transform: translateY(1px);
    }
    .tournament-bracket--rounded
    .tournament-bracket__item:nth-child(even)::after {
        border-bottom-right-radius: 0.6em;
    }
    .tournament-bracket__round:first-child .tournament-bracket__item {
        padding-left: 0;
    }
    .tournament-bracket__round:last-child .tournament-bracket__item {
        padding-right: 0;
    }
    .tournament-bracket__round:last-child .tournament-bracket__item::after {
        display: none;
    }
    /*.tournament-bracket__round:nth-last-child(2)
      .tournament-bracket__item::after {
      border-radius: 0;
      border-right: 0;
    }*/
}
@media (min-width: 72em) {
    .tournament-bracket__item {
        padding: 0.5em 1.5em;
    }
    .tournament-bracket__item::after {
        width: 1.5em;
    }
}
.tournament-bracket__match {
    display: flex;
    /* border-radius: 11px; */
    width: 100%;
    background-color: #ffffff;
    padding: 1em 0.5em;
    border: 1px solid transparent;
    border-radius: 0.1em;
    /* box-shadow: 0 2px 0 0 #e5e5e5; */
    outline: none;
    cursor: pointer;
    transition: padding 0.2s ease-in-out, border 0.2s linear;
    border: 1px solid #6f79906b;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    border-radius: 2px;
}
.tournament-bracket__match:focus {
    border-color: #2196f3;
}
.tournament-bracket__match::before,
.tournament-bracket__match::after {
    transition: all 0.2s linear;
}
@media (max-width: 24em) {
    .tournament-bracket__match {
        padding: 0.75em 0.5em;
    }
}
@media (min-width: 38em) {
    .tournament-bracket__match::before,
    .tournament-bracket__match::after {
        position: absolute;
        left: 0;
        z-index: 1;
        content: "";
        display: block;
        width: 1em;
        height: 10%;
        border-left: 2px solid #298036;
    }
    .tournament-bracket__match::before {
        bottom: 50%;
        border-bottom: 2px solid #298036;
        transform: translate(0, 1px);
    }
    .tournament-bracket--rounded .tournament-bracket__match::before {
        border-bottom-left-radius: 0.6em;
    }
    .tournament-bracket__match::after {
        top: 50%;
        border-top: 2px solid #298036;
        transform: translate(0, -1px);
    }
    .tournament-bracket--rounded .tournament-bracket__match::after {
        border-top-left-radius: 0.6em;
    }
}
@media (min-width: 72em) {
    .tournament-bracket__match::before,
    .tournament-bracket__match::after {
        width: 1.5em;
    }
    .tournament-bracket__match::before {
        transform: translate(0, 1px);
    }
    .tournament-bracket__match::after {
        transform: translate(0, -1px);
    }
}
/*.tournament-bracket__round:last-child .tournament-bracket__match::before,
.tournament-bracket__round:last-child .tournament-bracket__match::after {
border-left: 0;
}
.tournament-bracket__round:last-child .tournament-bracket__match::before {
border-bottom-left-radius: 0;
}
.tournament-bracket__round:last-child .tournament-bracket__match::after {
display: none;
}
*/
.tournament-bracket__round:first-child .tournament-bracket__match::before,
.tournament-bracket__round:first-child .tournament-bracket__match::after {
    display: none;
}
/* FIN CSS CODEPEN */

/* CSS PROPIO */
.tournament-bracket__match.winner {
    /* outline: 3px solid #547767; */
    background-color: #ddffef;
    font-weight: bold;
    box-shadow: rgb(41 128 54) 1px 1px 0px 0px,
    rgb(45 110 54) 1px 1px 0px 0px inset;
}

div.tbd {
    font-style: italic;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #fed100;
    color: #fff;
    border-width: 3px;
    border-color: white;
    border-radius: 50px;
    text-align: center;
    padding: 2px;
    z-index: 10;
}

.no-after .tournament-bracket__item::after,
.no-after .tournament-bracket__item::after {
    border: none !important;
}

.no-before .tournament-bracket__match::after,
.no-before .tournament-bracket__match::before {
    border: none !important;
}

.no-before .tournament-bracket__item::before,
.no-before .tournament-bracket__item::before {
    border: none !important;
}

/* CSS GRUPOS */
#grupos-container {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: white;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffffad;
    text-align: left;
}

@media (max-width: 1024px) {
    #grupos {
        grid-template-columns: repeat(2, 1fr);
    }
}

#grupos {
    /* display: flex;
      flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2em;
    grid-auto-rows: minmax(100px, auto);
    padding: 0.5em;
    justify-content: center;
}

#grupos .grupo {
    border-radius: 0.25em;
    background-color: white;
    overflow: hidden;
    margin: 0.5em;
}

#grupos .row {
    display: flex;
    justify-content: space-between;
    padding: 0 0.5em;
}

#grupos .header.row {
    padding-top: 0.5em;
    padding-bottom: 0.2em;
}

#grupos .row:last-child {
    padding-bottom: 0.5em;
}

.header.row {
    background-color: #ffeea1;
}

.float-container .float-left {
    right: 110px;
    cursor: pointer;
}

.float-container .float-left.grupos #svg-grupos {
    display: none;
}

.float-container .float-left.bracket #svg-bracket {
    display: none;
}

/* NEW CSS */
#bracket-icon {
    stroke-dasharray: 500;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' viewBox='0 0 700 700' width='700' height='700'%3E%3Cdefs%3E%3ClinearGradient gradientTransform='rotate(150, 0.5, 0.5)' x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='ffflux-gradient'%3E%3Cstop stop-color='hsl(315, 20%25, 99%25)' stop-opacity='1' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='hsl(227, 96%25, 49%25)' stop-opacity='1' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3Cfilter id='ffflux-filter' x='-20%25' y='-20%25' width='140%25' height='140%25' filterUnits='objectBoundingBox' primitiveUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.005 0.003' numOctaves='2' seed='328' stitchTiles='stitch' x='0%25' y='0%25' width='100%25' height='100%25' result='turbulence'%3E%3C/feTurbulence%3E%3CfeGaussianBlur stdDeviation='20 0' x='0%25' y='0%25' width='100%25' height='100%25' in='turbulence' edgeMode='duplicate' result='blur'%3E%3C/feGaussianBlur%3E%3CfeBlend mode='color-dodge' x='0%25' y='0%25' width='100%25' height='100%25' in='SourceGraphic' in2='blur' result='blend'%3E%3C/feBlend%3E%3C/filter%3E%3C/defs%3E%3Crect width='700' height='700' fill='url(%23ffflux-gradient)' filter='url(%23ffflux-filter)'%3E%3C/rect%3E%3C/svg%3E");
}

#bracket {
    background-color: #ffffffb0;
    backdrop-filter: blur(24px) saturate(3);
    padding: 1rem 1rem 3rem 1rem;
    /*overflow: hidden;*/
    width: 100%;
    margin: 0 .3em;
}

.tournament-bracket__list .tournament-bracket__item .teeTime {
    display: none;
}

.tournament-bracket__list .tournament-bracket__item:nth-child(odd) .teeTime {
    content: attr(data-teetime);
    color: #ffffff;
    background: #298036;

    transform: translatey(-3em) translateX(-.4em);

    padding: .3em .4em;
    border-radius: .2em;
    box-shadow: rgba(17, 17, 26, 0.05) 2px 1px 3px;
    letter-spacing: .12em;
    display:flex;

    z-index:999999;

    font-weight: bold;
    font-size: .7em;

    position: absolute;
}

.tournament-bracket__list .tournament-bracket__item .teeTime .teeDate{
    background: white;
    color: green;
    font-weight: bold;
    margin-right: .4em;
    border-radius: .4em;
    padding: 0 .3em;
}

.bando-name {
    color: #494646;
}

.tournament-bracket__match.tourWinner {
    background: #d4ff13;
    font-size: 1.06em;
    font-weight: bold;
    border: 3px solid #116f1e66;
    box-shadow: rgb(8 8 198 / 5%) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    justify-content: center;
}


.tournament-bracket__round.couple-round .tournament-bracket__item .tournament-bracket__match {
    height: 4.5em;
    padding: .1em 1em;
    display: flex;
    align-items: center;
}

.tournament-bracket__round.individual-round .tournament-bracket__list .tournament-bracket__item:nth-child(odd) .teeTime {
    transform: translatey(-2.5em) translateX(-.4em);
}

.bando-name-container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-content: center;
}

.result {
    align-self: center;
}

.tournament-bracket__round .tournament-bracket__item .tournament-bracket__match.winner {
    padding: 1em 0.5em;
}

.tbd .bando-name-container {
    width: 100%;
}
</pre></body></html>