a {
    cursor: pointer;
}

    a.link {
        text-decoration: underline;
        color: #0070e0;
        font-size: 13px;
    }

        a.link:hover {
            font-weight: bold;
        }

.panel {
    position: relative;
    border: 1px solid #ccc; /* Add a border for better visibility of the panel */
    border-radius: 4px; /* Optional: to give the panel rounded corners */
}

.panel-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px; /* Padding inside the header */
    background-color: #f8f9fa;
    position: relative; /* Ensure the header is positioned relative for absolute positioning within it */

}

.panel-toolbar {
    position: absolute;
    top: 10px; /* Adjusted to fit within the header padding */
    right: 10px; /* Adjusted to fit within the header padding */
    bottom: 10px; /* Ensure bottom padding matches the overall padding */
    height: 15px;
}

/*.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border: 1px solid #ccc;
    border-radius: 8px;*/ /* Consistent rounding on all edges */
    /*background-color: #fff;
    padding: 20px;
    max-width: 90vw;
    width: auto;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}*/

/*.modal-content {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;*/ /* Ensure relative positioning for dropdowns */
/*}*/

/* Optionally, you can add some styles for modal header and footer if you have them */
/*.modal-header,
.modal-footer {
    flex-shrink: 0 !important;
}*/

.modal:fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    padding: 0;
    background-color: #fff;
}

    .modal:fullscreen .modal-content {
        flex-grow: 1;
        overflow-y: auto;
        overflow-x: hidden;
    }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    position: relative;
    border-radius: 4px;
}

.modal-toolbar {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
}

.circle-btn-group .circle-btn {
    border-radius: 50%;
    width: 15px; /* Reduced size by half */
    height: 15px; /* Reduced size by half */
    padding: 0;
    margin: 0 2px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-green {
    background-color: #28a745;
    color: #fff;
}

.btn-yellow {
    background-color: #ffc107;
    color: #212529;
}

.btn-red {
    background-color: #dc3545;
    color: #fff;
}

.btn-blue {
    background-color: #007bff; /* Blue background color */
    color: #fff; /* White text color */
}

/* Tooltip styling */
.circle-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1;
    font-size: 12px;
}

.circle-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.modal-body.collapsed {
    display: none;
}

.panel-body-toolbar {
    /* Styles for the element with class 'panel-body-toolbar' */
    display: block; /* Initial display state */
}

    .panel-body-toolbar.hidden {
        display: none; /* Style for collapsed state */
    }

.pointer {
    cursor: pointer;
}

    .pointer:hover {
        text-decoration: underline;
    }

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.absolute {
    position: absolute !important;
}

h2.panel-title {
    font-size: 22px;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.btn-secondary {
    border-color: #0f4984 !important;
    background-color: #0f4984 !important;
    color: white !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.bg-light-orange {
    background-color: #FFF4DE !important;
}

.w-100 {
    width: 100% !important;
}

.w-80 {
    width: 80% !important;
}

.w-20 {
    width: 20% !important;
}

.h-100 {
    height: 100% !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-1 {
    margin-top: .25rem !important;
}

.mt-2 {
    margin-top: .50rem !important;
}

.mt-3 {
    margin-top: .75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-1 {
    margin-right: .25rem !important;
}

.mr-2 {
    margin-right: .50rem !important;
}

.mr-3 {
    margin-right: .75rem !important;
}

.mr-4 {
    margin-right: 1rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mb-2 {
    margin-bottom: .50rem !important;
}

.mb-3 {
    margin-bottom: .75rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-6 {
    margin-bottom: 1.5rem !important;
}

.ml-1 {
    margin-left: .25rem !important;
}

.ml-2 {
    margin-left: .50rem !important;
}

.ml-3 {
    margin-left: .75rem !important;
}

.ml-4 {
    margin-left: 1rem !important;
}

.ml-5 {
    margin-left: 1.25rem !important;
}

.ml-6 {
    margin-left: 1.5rem !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pl-1 {
    padding-left: 0.23rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pl-4 {
    padding-left: 3rem !important;
}

.pl-5 {
    padding-left: 5rem !important;
}

.pr-1 {
    padding-right: 0.23rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pr-4 {
    padding-right: 3rem !important;
}

.pr-5 {
    padding-right: 5rem !important;
}

.p-10 {
    padding: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-0 {
    padding-right: 0;
}

.pr-10 {
    padding-right: 10px;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.50rem;
}

.pt-3 {
    padding-top: 0.75rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pb-0 {
    padding-bottom: 0rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.pb-10 {
    padding-bottom: 10px;
}

.page-sidebar-collapsed .logo-box {
    display: none;
}

.help-text {
    font-style: italic;
}

.logo-box .logo {
    width: 160px;
    margin-top: -25px;
}

.no-wrap {
    white-space: nowrap;
}

.no-padding {
    padding: 0px !important;
}

.no-margin {
    margin: 0px !important;
}

.v-middle {
    vertical-align: middle !important;
}

.table-fixed {
    table-layout: fixed;
}

.table thead tr {
    border-bottom: 2px solid #0070e0;
}

.table tr.subheader {
    background: #fafafa;
}

.panel-subtitle {
    font-weight: bold;
}

.btn-grp-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-grp-right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-primary {
    color: white !important;
}

.btn-danger {
    color: white !important;
}

.text-danger {
    color: #ec5e69 !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.Gold {
    background-color: #FFD700;
    color: #e3650b;
}

.Silver {
    background-color: #d6d6d6;
    color: black;
}

.Bronze {
    background-color: #977547;
}

.dark-blue {
    background-color: #07327d;
    color: #fff;
}

.tabulator-row .tabulator-cell {
    overflow: hidden !important;
    font-size: 13px;
}

.guide-small {
    font-size: 12px;
    font-style: italic;
}

.progress-loader {
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    z-index: 10000;
}

    .progress-loader .progress-bar {
        transition: width 0.5s;
        width: 0%;
    }

        .progress-loader .progress-bar.active {
            width: 90%;
        }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    opacity: 0.25;
    filter: grayscale(100%);
}

.load-hidden {
    display: none;
}

.block {
    display: block;
}

.bold {
    font-weight: bold;
}

.inline-block {
    display: inline-block;
}

.fa-green {
    color: green;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa-warning {
    color: #ec5e69;
}

.swal2-title {
    margin: 30px !important;
}

@media print {
    .noprint {
        display: none;
    }
}

/*.login-page {
    background: url(../img/boccea.jpg) center center no-repeat fixed;
    background-size: cover;
}*/

fieldset:disabled input,
fieldset:disabled select {
    border: none !important;
}

.login-box {
    background: #ffffff70;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fafafa;
    color: #333;
}

.tabulator-cell {
    overflow: visible !important;
}

.tabulator {
    border: none;
    margin-top: 5px;
}

.tabulator-col {
    border-color: transparent;
    padding-top: 2px;
    padding-bottom: 2px;
    border-right-color: transparent !important;
}

.tabulator-row .tabulator-cell {
    border-color: transparent;
    padding-top: 6px;
    padding-bottom: 6px;
}

.tabulator-row-odd {
    background-color: #f7f7f7;
}

.tabulator .tabulator-header {
    font-weight: 400;
    color: #0070e0;
    border-bottom: 2px solid #0f4984;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(1, #fff));
}

.tabulator-paginator .tabulator-page {
    font-weight: 400 !important;
    color: #6a7c8f !important;
}

.tabulator .tabulator-footer {
    border-top: 1px solid #ddd;
}

    .tabulator .tabulator-footer .tabulator-page {
        border: none !important;
    }

        .tabulator .tabulator-footer .tabulator-page.active {
            background: #0070e0;
            border-radius: 25px;
            width: 25px;
            color: white !important;
        }

.tabulator-row .tabulator-cell:first-child {
    background-color: #f3f3f3;
}

.tabulator-row-odd .tabulator-cell:first-child {
    background-color: #d8d8d8;
}

.tabulator-headers .tabulator-col {
    background-color: #537aa3 !important;
    color: white;
    font-size: 14px;
    text-shadow: none;
    letter-spacing: 1px;
    text-transform: capitalize;
}

    .tabulator-headers .tabulator-col:first-child {
        background-color: #0f4984 !important;
    }

.tabulator-header-filter {
    color: #333;
}

label {
    font-weight: bold;
}

.form-control {
    border-color: #dee3e9;
    height: 35px;
}

ul.nav-tabs a {
    padding-left: 25px;
    padding-right: 25px;
    margin: 0px;
    border-bottom-width: 1px !important;
}

.tab-content {
    padding: 5px 10px;
}

.checkbox-list-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

label.error {
    display: block;
    float: none !important;
}

.help-block {
    font-style: italic;
}

.fa-cell {
    color: #1e66af;
}

li.dropdown-divider {
    border: 1px solid #eee;
    margin: 5px;
}

.page-sidebar-menu .selected {
    font-weight: bold;
    color: #0070e0 !important;
    font-size: 14px !important;
}

.event-class-filter {
    padding: 5px 15px;
    background-color: #f3f3f3;
    margin-bottom: 15px;
    border-radius: 5px;
}

.badge {
    font-weight: 400;
}

.badge-primary {
    background-color: #1f7ddb !important;
    margin-right: 3px;
}

    .badge-primary.badge-outline {
        color: #1f7ddb;
        border: 1px solid #1f7ddb;
        background: none !important;
    }

.badge-danger {
    background-color: #ec5e69 !important;
    margin-right: 3px;
}

    .badge-danger.badge-outline {
        color: #ec5e69;
        border: 1px solid #ec5e69;
        background: none !important;
    }

.badge-dark {
    background-color: #333 !important;
    margin-right: 3px;
}

    .badge-dark.badge-outline {
        color: #333;
        border: 1px solid #ccc;
        background: none !important;
        font-weight: normal;
    }

.badge-continent {
    vertical-align: middle;
    font-weight: normal;
    font-size: 10px;
    margin-right: 0px;
    border: 1px solid #1f7ddb;
    color: #1f7ddb !important;
    background: white !important;
}

.vdp-datepicker input[readonly] {
    background-color: transparent !important;
}

.radio-selector label {
    margin-right: 15px;
}

.radio-selector input[type=radio] {
    vertical-align: top;
}

.tabulator-paginator label:first-child {
    font-weight: normal;
    padding-top: 1px;
    color: #888;
}

.tabulator-paginator .tabulator-page-size {
    border: none !important;
    background: #f7f9fa !important;
}

.tabulator .tabulator-tableHolder {
    background: #f2f4f6;
}

.btn.active, .btn:active {
    background: #0070e0 !important;
    color: white !important;
}

.table-scroller,
.athlete-list {
    max-height: 500px;
    overflow: auto;
}

    .table-scroller table thead tr th,
    table.scrollable-tbody thead tr th {
        position: sticky;
        top: 0;
    }

    .table-scroller table,
    table.scrollable-tbody {
        border-collapse: collapse;
    }

        .table-scroller table th,
        table.scrollable-tbody th {
            padding: 16px;
            padding-left: 15px;
            border-left: 1px dotted rgba(200, 209, 224, 0.6);
            border-bottom: 1px solid #e8e8e8;
            background: #f3f3f3;
            color: black !important;
            text-align: left;
            z-index: 300;
        }

.other-schedule-wrapper {
    margin-bottom: 20px;
}

    .other-schedule-wrapper .table-wrapper {
        background-color: #f2f2f2;
        padding: 0px 5px;
        border-radius: 10px;
        margin-top: 15px;
    }

        .other-schedule-wrapper .table-wrapper th {
            font-weight: bold;
        }

tr.current td {
    font-weight: bold;
}

tr td i.tb-current {
    display: none;
}

tr.current td i.tb-current {
    display: inline-block;
}

.tabulator-row.tabulator-group {
    background: #fffee4;
    font-weight: normal;
    letter-spacing: 1px;
}

.modal-table .tabulator-headers .tabulator-col {
    font-size: 16px;
}

.stats-widget {
    border-radius: 0.85rem;
}

    .stats-widget .icon {
        text-align: center;
        font-size: 45px;
    }

.widget-danger {
    background-color: #F64E60 !important;
    color: #fff !important;
}

    .widget-danger .stats-info,
    .widget-danger .stats-number {
        color: #fff !important;
    }

.widget-success {
    background-color: #1BC5BD !important;
    color: #fff !important;
}

    .widget-success .stats-info,
    .widget-success .stats-number {
        color: #fff !important;
    }

.widget-warning {
    background-color: #FFA800 !important;
    color: #fff !important;
}

    .widget-warning .stats-info,
    .widget-warning .stats-number {
        color: #fff !important;
    }

.widget-primary {
    background-color: #3445E5 !important;
    color: #fff !important;
}

    .widget-primary .stats-info,
    .widget-primary .stats-number {
        color: #fff !important;
    }

/* Widget animation */
.scale-up-center {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.shadow-drop-2-center {
    -webkit-animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: shadow-drop-2-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes shadow-drop-2-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(50px);
        transform: translateZ(50px);
        -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}

@keyframes shadow-drop-2-center {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(50px);
        transform: translateZ(50px);
        -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    }
}

/* End Widget animation*/

.border-rad-85 {
    border-radius: 0.85rem;
}

.startlist-item {
    float: left;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    margin-right: 15px;
    cursor: pointer;
}

    .startlist-item:hover {
        background: #eee;
    }

    .startlist-item hr {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .startlist-item .discipline-name {
        font-size: 13px;
        color: #888;
        height: 55px;
        overflow-y: hidden;
        text-overflow: ellipsis;
    }

    .startlist-item .event-name {
        font-size: 16px;
        margin-top: 5px;
    }

    .startlist-item .date-time {
        margin: 5px 0;
        border-radius: 0.35rem;
        padding-left: 5px;
    }

    .startlist-item .phase-name {
        font-size: 13px;
        margin-top: 5px;
    }

    .startlist-item .badge {
        margin-top: 8px;
    }

    .startlist-item .time-name {
        font-weight: bold;
        border: 1px solid #333;
        display: inline;
        padding: 5px 13px;
        border-radius: 10px;
        font-size: 12px;
    }

    .startlist-item .venue {
        display: inline;
        padding: 5px 13px;
        border-radius: 10px;
        font-size: 12px;
    }

    .startlist-item .image {
        background: #ccc;
        height: 120px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: left center;
        border-radius: 10px;
    }

.group-wrapper h5 {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding: 0px 0px 10px 0px;
}

.group-wrapper-inner {
    padding: 0px 5px;
}

.table-properties td {
    width: 50%;
    padding: 0px 5px 15px 5px;
}

.athlete-table {
    width: 100%;
}

.athlete-list-form {
    padding: 5px;
}

.group-compete-wrapper {
    padding: 10px;
    background-color: #fbfbfb;
}

    .group-compete-wrapper table {
        width: 100%;
    }

        .group-compete-wrapper table td {
            padding: 3px;
        }

            .group-compete-wrapper table td.title {
                font-weight: bold;
                width: 50%;
            }

.team-athlete-list {
    padding-left: 0px;
    padding-top: 12px;
    list-style-type: decimal;
}

/*Sport type shared css*/

.page-inner {
    transition: opacity 0.5s;
}

    .page-inner.loading {
        opacity: 0.5;
    }

.lane-list-panel {
    min-height: 300px;
    padding: 15px;
    border-radius: 15px;
}

    .lane-list-panel .lane {
        border-bottom: 6px dotted #0088e0;
        padding: 8px;
        margin-bottom: 5px;
    }

        .lane-list-panel .lane:last-child {
            border-bottom: none !important;
        }

.grabbable {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

    .grabbable:active {
        cursor: grabbing;
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing;
    }

.lane-inner {
    height: 46px;
    position: relative;
    border-radius: 10px;
}

    .lane-inner:active {
        background-color: #fafafa;
    }

    .lane-inner .lane-label-small {
        position: absolute;
        font-size: 12px;
    }

    .lane-inner .lane-number {
        position: absolute;
        font-size: 18px;
        font-weight: bold;
        padding: 8px 12px;
        margin-top: 8px;
        font-style: italic;
        cursor: pointer;
    }

.button-wrapper {
    margin-top: 15px;
}

.athlete-list-panel {
    padding: 10px;
}

.athlete-name {
    width: 100%;
    background: #fafafa;
    padding: 12px;
    border-radius: 5px;
    border: 1px dashed #0070e0;
    margin-bottom: 10px;
    margin-right: 5px;
}

.lane .lane-name {
    padding-left: 50px;
    padding-top: 10px;
}

    .lane .lane-name .athlete-name {
        float: left;
        width: auto;
        padding: 5px;
        font-size: 12px;
        font-weight: bold;
    }

.athlete-name-wrapper {
    display: inline-block;
}

.masslane .athlete-name-wrapper {
    max-width: 90%;
}

.athlete-name-wrapper .name {
    font-size: 14px;
    letter-spacing: 1px;
}

    .athlete-name-wrapper .name a:hover {
        text-decoration: underline !important;
    }

.athlete-name-wrapper .score {
    font-style: italic;
    font-size: 12px;
}

.athlete-name-wrapper .rank {
    font-style: italic;
    font-size: 12px;
}

    .athlete-name-wrapper .rank strong {
        font-size: 13px;
    }

.btn-remove-athlete {
    margin-left: 15px;
    cursor: pointer;
}

.panel-item h3.panel-title {
    color: black;
    padding: 0 0 30px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

th.lane-col {
    font-weight: bold;
    color: #333 !important;
}

th.lane-col,
td.lane-col {
    background-color: #f1f1f1;
}

.athlete-header input {
    font-size: 14px;
    border: none;
    outline: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 18px;
    width: 100%;
}

.lane-editor-wrapper {
    display: table;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
}

.editor-athlete {
    display: table-cell;
    vertical-align: top;
    width: 30%;
}

.editor-lane {
    display: table-cell;
    vertical-align: top;
    width: 70%;
    border-left: 1px solid #ccc;
}

.lane-editor {
    border-top: none;
}

.athlete-editor {
    border-top: none;
}

.lane-list-toolbar {
    background: #fafafa;
    border: 1px solid #ccc;
    border-bottom: 1px solid #c3c3c3;
    float: left;
    width: 100%;
}

.lane-number-input {
    border: none;
    outline: none;
    font-size: 26px;
    padding: 10px;
    text-align: center;
    width: 160px;
    background: #fafafa;
    height: 100%;
    font-weight: bold;
    width: 85px;
}

.lane-number-label {
    margin: 15px;
}

.toolbar-button .btn {
    margin: 10px 10px 10px 0px;
}

.athlete-list-panel .assigned {
    color: red;
    font-size: 12px;
    font-style: italic;
}

tr.empty-row {
    color: #ccc;
}

.header-label {
    display: block;
    font-size: 15px;
    padding: 5px 0px;
    font-style: italic;
}

.lap-text {
    font-size: 12px;
    font-style: italic;
}

.live-lap-text {
    font-weight: bold;
}

.empty-row .timer-col {
    color: transparent;
}

.table-result thead,
.table-simulator thead {
    border-bottom: 2px solid #0070e0
}

.table-select-mini {
    border: 1px solid #ccc;
    font-size: 11px;
    height: 22px;
    width: 90%;
}

.table-input {
    font-size: 11px;
    max-width: 100px
}

.table-input-mini {
    font-size: 11px;
    width: 90%;
    border: 1px solid #cccccc;
    padding: 2px;
}

.control-col {
    vertical-align: middle;
}

    .control-col .btn {
        margin: 0px 15px 15px 15px;
    }

td.athlete-col,
td.sub-athlete-col {
    background-color: #eee;
    border: 1px solid #ccc;
    vertical-align: top;
}

    td.athlete-col .athlete-list-panel,
    td.sub-athlete-col .athlete-list-panel {
        overflow-y: auto;
        height: 500px;
    }

.athlete-control {
    padding: 10px;
    padding-bottom: 0px;
}

    .athlete-control a {
        margin-right: 10px;
        text-decoration: underline;
    }

.toolbar-wrapper {
    display: block;
    width: 100%;
    float: left;
}

.trial-wrapper {
    padding: 15px;
}

.trial-item {
    margin-bottom: 50px;
}

.btn-vs {
    font-weight: bold;
}

.hot-wrapper, .hot-wrapper #hot-table {
    width: 100%;
}

.table-competition-summary {
    width: 50%;
}

    .table-competition-summary td {
        font-size: 12px;
        padding: 3px;
    }

        .table-competition-summary td:first-child {
            font-weight: bold;
        }

.athlete-guide {
    font-size: 12px;
}

.athlete-order {
    border: 1px dashed #0070e0;
    padding: 10px;
    border-radius: 10px;
}

    .athlete-order:hover {
        background-color: #eee;
    }

.score-point-wrapper {
    padding: 10px;
    background: #f3f3f3;
    border-radius: 5px;
}

.table-sub-mini thead th {
    padding: 0px !important;
}

.table-sub-mini tbody td {
    padding: 0px !important;
}

/* transition animation */
.slide-fade-enter-active {
    transition: all .5s ease;
}

.slide-fade-leave-active {
    transition: all .3s cubic-bezier(1.0, 0.3, 0.1, 1.0);
}

.slide-fade-enter, .slide-fade-leave-to {
    transform: translateX(10px);
    opacity: 0;
}

/* Knockout bracket */
.bracket-container {
    background-color: #F7F9FA;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.tournament-bracket {
    display: flex;
    flex-direction: column;
    padding-bottom: 3.5rem;
}

@media (min-width: 38em) {
    .tournament-bracket {
        flex-direction: row;
    }
}

.tournament-bracket__round {
    display: block;
    margin-left: -3px;
    flex: 1;
}

.tournament-bracket__round-title {
    color: #9e9e9e;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    margin-bottom: 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;
    padding-left: 0.5px;
    margin-bottom: 2em;
    transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
}

@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%;
    }

        .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.5em 1em;
        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: 55%;
            border-right: 2px solid #9e9e9e;
        }

        .tournament-bracket__item:nth-child(odd)::after {
            top: 50%;
            border-top: 2px solid #9e9e9e;
            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 #9e9e9e;
        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 {
    width: 100%;
    background-color: #ffffff;
    padding: 1em;
    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;
}

    .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 #9e9e9e;
    }

    .tournament-bracket__match::before {
        bottom: 50%;
        border-bottom: 2px solid #9e9e9e;
        transform: translate(0,1px);
    }

    .tournament-bracket__match::after {
        top: 50%;
        border-top: 2px solid #9e9e9e;
        transform: translate(0,-1px);
    }
}

@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;
}

.tournament-bracket__table {
    width: 100%;
}

.tournament-bracket__caption {
    font-size: 0.8rem;
    color: #BDBDBD;
    font-weight: 300;
    padding-bottom: 0.75em;
}

.tournament-bracket__team {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tournament-bracket__country {
    font-size: 0.95rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    align-items: center;
}

@media (max-width: 24em) {
    .tournament-bracket__country {
        margin-top: 0;
    }
}

@media (min-width: 38em) and (max-width: 52em) {
    .tournament-bracket__country .tournament-bracket__code {
        margin-top: 0.2em;
    }
}

.tournament-bracket__code {
    padding: 0 0.5em;
    color: #212121;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    text-decoration: none;
    transition: padding 0.2s ease-in-out;
}

@media (max-width: 24em) {
    .tournament-bracket__code {
        padding: 0 0.25em;
    }
}

@media (min-width: 38em) and (max-width: 52em) {
    .tournament-bracket__code {
        padding: 0;
    }
}

.tournament-bracket__score {
    align-items: center;
}

.tournament-bracket__team:first-child .tournament-bracket__score {
    padding-left: 0.75em;
}

.tournament-bracket__team:last-child .tournament-bracket__score {
    padding-right: 0.75em;
}

.tournament-bracket__number {
    display: inline-block;
    padding: 0.2em 0.4em 0.2em;
    border-bottom: 0.075em solid transparent;
    font-size: 0.95rem;
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    float: right;
}

.tournament-bracket__team--winner .tournament-bracket__number {
    background-color: #FFF176;
    border-color: #FFF176;
}

.tournament-bracket__medal {
    padding: 0 0.5em;
}

.tournament-bracket__medal--gold {
    color: #FFD700;
}

.tournament-bracket__medal--silver {
    color: #C0C0C0;
}

.tournament-bracket__medal--bronze {
    color: #CD7F32;
}

.logopath-bg {
    width: 100%;
    height: 150px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.logopath-bg1 {
    width: 80px;
    height: 70px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    padding-left: 100px;
    margin-top: 10px;
    border-radius: 10px 10px 10px 10px;
}

.logopath-bg2 {
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.unclickable {
    pointer-events: none;
    color: grey !important;
}

.tournament-detail div {
    margin-bottom: 5px;
}

.panel-light-orange {
    background-color: #FFF4DE !important;
    color: #7E8299 !important;
}

    .panel-light-orange h4 {
        color: #7E8299 !important;
        font-weight: 600 !important;
    }

    .panel-light-orange .panel-title {
        color: #FFA800 !important;
        font-weight: 600 !important;
    }

.option-wrapper {
    margin-bottom: 15px;
}

.table-summary {
    border: 1px solid #333;
    border-collapse: collapse;
    border-radius: 1em;
    overflow: hidden;
}

    .table-summary td {
        border: 1px solid #333;
        padding: 1px 8px;
    }

        .table-summary td:first-child {
            font-weight: bold;
        }

.screen-identifier {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    font-size: 100px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFFCC;
}

/*Start List Scoreboard*/

.startlist-scoreboard-user {
    height: 80px;
    width: 98%;
    background: #ededed;
    padding: 0px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.startlist-scoreboard-user-flag {
    margin: 5px 10px 0px 20px;
}

.startlist-scoreboard-judge-flag {
    margin: 5px 400px 0px 0px;
}

.startlist-scoreboard-judge {
    height: 60px;
    width: 98%;
    background: #ededed;
    padding: 0px;
    position: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 20px;
    text-align: left;
}

.judge-text {
    margin-left: 30px;
}

.startlist-scoreboard-vs {
    background: #0b8295;
    text-align: center;
    margin-top: 20px;
    margin-left: 50%;
    margin-bottom: 30px;
    border-radius: 20px;
}

.startlist-scoreboard-official {
    height: 60px;
    width: 90%;
    background: #ededed;
    color: #03234c;
    padding: 0px;
    position: center;
    margin-left: 100px;
    margin-right: 20px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.startlist-scoreboard-title {
    margin-bottom: 10px;
}

.startlist-scoreboard-text {
    color: white;
}

/*Daily Schedule Scoreboard*/
.dailyUI {
    margin: 6px;
    position: relative;
    display: inline-block;
    background: #eee;
    padding: 10px;
    width: 90%;
    color: #000;
    font-size: 25px;
    border-radius: 12px;
    text-align: left;
    background: linear-gradient(0deg, rgba(209,209,209,1) 0%, rgba(255,255,255,1) 100%);
}

.vsClass {
    color: #188494;
    font-weight: bold;
}

.phaseui {
    background-color: #10254a;
    padding: 3px 10px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.matchTime {
    background-color: #ed2124;
    padding: 3px 10px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.courtui {
    background-color: #0d7f90;
    padding: 3px 10px;
    border-radius: 12px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.infoDaily {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 5px solid #a3acb7;
}

.dailyTextColor {
    color: #142f53;
}

.sb-sport-name {
    font-weight: bold;
    font-size: 26px;
    text-transform: uppercase;
}

.sb-athlete-name {
    text-transform: capitalize;
    font-size: 22px;
    font-weight: bold;
}

.sb-flag span.flag-icon {
    font-size: 45px;
}

.sb-flag .rotate-90 {
    transform: rotate(90deg);
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    font-weight: bold;
    color: #081C3F;
    margin-top: 10px;
}

/* Scoreboards */
.screen-display.bg-grad-blue {
    background: #0b47b1;
    background: linear-gradient(145deg, #0b47b1 25%, #06090e 100%);
}

.screen-display .title {
    padding-top: 1%;
    padding-bottom: 1%;
    color: #d9be61;
    font-weight: 1000;
}

    .screen-display .title .with-bg {
        color: #612932;
        background-color: #d9be61;
        padding: 3px 10px;
        border-radius: 12px;
    }

    .screen-display .title .sub-title {
        color: #612932;
        background-color: #d9be61;
        padding: 3px 10px;
        overflow: hidden;
    }

    .screen-display .title h1 {
        color: inherit;
        font-weight: inherit;
        font-size: 3.5rem;
    }

    .screen-display .title h2 {
        color: inherit;
        font-weight: inherit;
        font-size: 2.5rem;
    }

.rounded-box {
    position: relative;
    display: inline-block;
    background: #eee;
    padding: 0 6px;
    width: 90%;
    color: #000;
    font-size: 2rem;
    border-radius: 10px;
    text-align: left;
}

    .rounded-box .with-bg {
        background-color: #07327d;
        border-radius: 0.3em;
        padding: 10px 20px;
        text-align: center;
        color: #fff;
    }

    .rounded-box .medal {
        margin: auto;
        margin-top: 20px;
        border-radius: 0.85rem;
        width: 65% !important;
    }

    .rounded-box.athletes-box {
        margin-left: 8%;
        width: 82%;
        margin-bottom: 5px;
        padding: 0.5rem 0 0.5rem 1rem;
        font-size: 2rem;
    }

.slanted {
    margin: 6px;
    position: relative;
    display: inline-block;
    background: none;
    padding: 10px;
    z-index: 11;
    width: 70%;
    color: #000;
    font-size: 2rem;
    text-align: left;
}

    .slanted:before {
        position: absolute;
        top: 0;
        left: -10%;
        width: 100%;
        height: 100%;
        content: "";
        background: #eee;
        z-index: -1;
        width: 120%;
        transform: skewX(-20deg);
    }

    .slanted .time {
        background-color: #07327d;
        padding: 3px 10px;
        border-radius: 12px;
        color: #fff;
    }

.sb-round-rect {
    margin: 6px;
    position: relative;
    display: inline-block;
    padding: 10px;
    z-index: 11;
    width: 70%;
    color: #000;
    font-size: 2rem;
    text-align: left;
    background: #eee;
    border-radius: 20px;
}

.table-start-list {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 0.5%;
}

    .table-start-list td,
    .table-start-list tr {
        background-color: #eee;
    }

    .table-start-list .lane {
        padding: 1.4rem 1%;
        text-align: center;
    }

    .table-start-list .flag {
        text-align: center;
        padding: 0.3rem 0;
        font-size: 3.5rem;
    }

    .table-start-list .name {
        padding: 1.5rem 1%;
        font-size: 2rem;
    }

    .table-start-list .time {
        padding: 1.75rem 1%;
        font-size: 1.5rem;
    }

    .table-start-list .medal-header {
        font-size: 2rem;
        margin-top: 15%;
        padding: 10px;
    }

.rad-top-right-corner {
    border-top-right-radius: 40px;
}

.rad-top-left-corner {
    border-top-left-radius: 40px;
}

/*Live Match Scoreboard*/
.liveMatchCourt {
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 0px;
    position: relative;
    display: inline-block;
    background: #0b8394;
    width: 100%;
    height: 36px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
}

.liveMatchInfo {
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 0px;
    position: relative;
    display: inline-block;
    background: #fdfd01;
    width: 100%;
    height: 65px;
    color: #142f53;
    font-size: 19px;
    text-align: center;
}

.liveMatchPhase {
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 0px;
    position: relative;
    display: inline-block;
    background: white;
    width: 100%;
    height: 36px;
    color: #142f53;
    font-size: 18px;
    text-align: center;
}

.liveMatchTeam1 {
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    display: inline-block;
    background: #eee;
    padding: 10px;
    width: 100%;
    height: 75px;
    color: #000;
    font-size: 23px;
    border-radius: 12px 12px 0px 0px;
    border-bottom: 2px solid black;
    text-align: left;
}

.liveMatchTeam2 {
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    display: inline-block;
    background: #eee;
    padding: 10px;
    width: 100%;
    height: 75px;
    color: #000;
    font-size: 23px;
    border-radius: 0px 0px 12px 12px;
    text-align: left;
}

.team-score {
    background: #0d7e92;
    border: 5px solid #0d7e92;
    color: white;
    margin: 5px;
    display: inline-block;
    height: 40px;
    width: 40px;
}

.team-game {
    background: #032350;
    border: 5px solid #032350;
    color: white;
    margin: 5px;
    display: inline-block;
    height: 40px;
    width: 40px;
}

.duration-live-match {
    position: relative;
    margin-left: 0px;
    margin-right: 5px;
    background: #fd0100;
    width: 98%;
    height: 150px;
    color: white;
    border-radius: 12px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*Upcoming Match Scoreboard*/

.upcomingMatchUI {
    margin-left: 60px;
    position: relative;
    display: flex;
    background: #eee;
    padding: 10px;
    width: 90%;
    color: #000;
    font-size: 25px;
    border-radius: 12px;
    text-align: left;
}

.upcomingMatch-phase-ui {
    background: #01244d;
    border: 5px solid #01244d;
    color: white;
    margin: 5px;
    display: inline-block;
    border-radius: 12px;
}

.upcoming-match-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-2 {
    background-image: url(/App/img/scoreboard-logo-2.png);
    background-repeat: no-repeat;
    background-position-x: center;
    width: 100%;
    height: 100%;
}

.scoreboard-list {
    width: 100%;
    max-height: 82vh;
    overflow-y: auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none !important; /* IE and Edge */
    scrollbar-width: none !important; /* Firefox */
}

.table-schedule thead th,
.table-medal-standing thead th {
    background-color: #eee;
    color: #333 !important;
    font-weight: bold;
}

.table-schedule tr:hover {
    cursor: pointer;
    background: #eee;
}

.table-schedule td {
    text-align: center;
}

.table-medal-standing tfoot tr {
    background-color: #f7f9fa;
}

.athlete-guide {
    border-color: red !important;
    background-color: #fff7f7 !important;
}

@media print {
    html, body {
        height: 100%;
        margin: 0px;
    }

    body {
        zoom: 0.8;
    }

    .print-hide {
        display: none;
    }

    .panel {
        box-shadow: none !important;
        padding: 0px !important;
        border: none !important;
    }
}

.black-button {
    background-color: black;
    color: white;
    margin-bottom: 10px;
    font-size: 50px;
}

.tabulator-header-filter input {
    border: none !important;
    border-radius: 6px;
    font-size: 12px;
    background: white;
    margin-top: 2px;
}

.scoreboard-header {
    padding: 20px;
}

.scoreboard-header-pictogram {
    width: 170px;
    height: 130px;
    position: relative;
}

.scoreboard-header-skew {
    background: #081C3F;
    width: 100%;
    height: 100%;
    -moz-transform: skew(-15deg, 0deg);
    -webkit-transform: skew(-15deg, 0deg);
    -o-transform: skew(-15deg, 0deg);
    -ms-transform: skew(-15deg, 0deg);
    transform: skew(-15deg, 0deg);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100;
}

.scoreboard-header-pictogram img {
    height: 80%;
    position: absolute;
    top: 10%;
    left: 20%;
    filter: invert(94%) sepia(6%) saturate(10%) hue-rotate(315deg) brightness(500%) contrast(101%);
    z-index: 101;
}

.scoreboard-header-text-wrapper {
    height: 60%;
    text-transform: uppercase;
    background: rgb(8,28,63);
    background: linear-gradient(180deg, rgba(8,28,63,1) 0%, rgba(16,56,124,1) 100%);
    -moz-transform: skew(332deg, 0deg);
    -webkit-transform: skew(332deg, 0deg);
    -o-transform: skew(332deg, 0deg);
    -ms-transform: skew(332deg, 0deg);
    transform: skew(332deg, 0deg);
    color: white;
    margin-left: -20px;
}

.scoreboard-header-text {
    -moz-transform: skew(-332deg, 0deg);
    -webkit-transform: skew(-332deg, 0deg);
    -o-transform: skew(-332deg, 0deg);
    -ms-transform: skew(-332deg, 0deg);
    transform: skew(-332deg, 0deg);
    font-size: 35px;
    padding-top: 15px;
    text-align: left;
    padding-left: 56px;
}

.scoreboard-subheader-text {
    height: 40%;
    text-transform: uppercase;
    background: white;
    color: rgb(9 48 118);
    margin-left: -30px;
    margin-right: -12px;
    border-radius: 15px;
    text-align: left;
    padding-left: 50px;
    font-size: 25px;
    font-weight: bold;
    padding-top: 8px;
    margin-right: 16px;
}

.logo-wrapper {
    height: 130px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    margin-left: 42px;
}

    .logo-wrapper img {
        height: 100%;
    }

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none !important;
}

.select2-selection__rendered {
    line-height: 22px !important;
}

.select2-container .select2-selection--single {
    height: 33px !important;
    border: 1px solid #ddd;
}

.select2-selection__arrow {
    height: 32px !important;
}

.board-wrapper .big-flag {
    text-align: center;
}

    .board-wrapper .big-flag span.flag-icon {
        font-size: 45px;
    }

    .board-wrapper .big-flag .contingent-name {
        font-size: 50px;
        font-weight: bold;
    }

.board-wrapper .athlete-list {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    color: #0a3787;
    text-transform: capitalize;
}

.board-wrapper .knockout-vs {
    font-size: 50px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center; /* Vertical center alignment */
    justify-content: center; /* Horizontal center alignment */
}

.set-header h2 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    margin-top: 0px;
}

.board-wrapper .sb-official-key {
    font-size: 38px;
    background: rgb(209,209,209);
    background: linear-gradient(0deg, rgba(209,209,209,1) 0%, rgba(255,255,255,1) 100%);
    margin: 15px;
    border-radius: 15px;
    font-weight: bold;
    border: 6px solid #0f419b;
    text-align: left;
    padding: 5px 20px;
    text-transform: capitalize;
}

.board-wrapper .sb-country {
    color: #333;
}

.board-wrapper .sb-official-value {
    font-size: 38px;
    background: rgb(209,209,209);
    background: linear-gradient(0deg, rgba(209,209,209,1) 0%, rgba(255,255,255,1) 100%);
    margin: 15px;
    border-radius: 15px;
    font-weight: bold;
    text-align: left;
    padding: 5px 20px;
    margin-left: 100px;
    text-transform: capitalize;
    border: 6px solid #0f419b;
}

.board-wrapper .total-score {
    background-color: #0b94a9;
    color: white;
    border-radius: 5px;
}

.board-wrapper .sb-score-item {
    font-size: 22px;
    font-weight: bold;
    min-width: 45px;
    background: #10254a;
    display: inline-block;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 5px 25px;
}

.board-wrapper .pull-left .sb-score-item {
    margin-right: 10px;
}

.board-wrapper .pull-right .sb-score-item {
    margin-right: 10px;
}

.board-wrapper .sb-score-final {
    background: #0b94a9;
}

.board-wrapper .sb-score-item-wrapper {
    margin-top: 15px;
}

.board-wrapper .sb-big-score {
    font-size: 100px;
    font-weight: bold;
    text-align: center;
    padding: 10px 85px;
    background: #060d19;
    display: inline-block;
    color: white;
    border-radius: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgb(8,28,63);
    background: linear-gradient(180deg, rgba(8,28,63,1) 0%, rgba(16,56,124,1) 100%);
}

    .board-wrapper .sb-big-score.active-score {
        background-color: #a40606 !important;
        background-image: linear-gradient(315deg, #a40606 0%, #d98324 74%) !important;
    }

.board-wrapper .sb-mid-score {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    padding: 10px 40px;
    background: #060d19;
    display: inline-block;
    color: white;
    border-radius: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: rgb(8,28,63);
    background: linear-gradient(180deg, rgba(8,28,63,1) 0%, rgba(16,56,124,1) 100%);
}

    .board-wrapper .sb-mid-score.active-score {
        background-color: #a40606 !important;
        background-image: linear-gradient(315deg, #a40606 0%, #d98324 74%) !important;
    }

.score-attribute-wrapper {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .score-attribute-wrapper .score-attribute {
        text-align: center;
        display: inline-block;
        background: red;
        min-width: 65px;
        margin-right: 5px;
        background: #060d19;
        background: linear-gradient(180deg, rgba(8,28,63,1) 0%, rgba(16,56,124,1) 100%);
        color: white;
        border-radius: 10px;
    }

/*Bracket New Style*/

.bye-match {
    justify-content: center;
    background-color: #F1C205;
    color: #fff;
}

.new-bracket {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
}

.round-bracket {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    list-style: none;
    padding: 0;
}

.tournament-headers {
    text-align: center;
    width: 50%;
    margin: auto;
    justify-content: center;
}

.round-bracket .spacer {
    flex-grow: 0.5;
}

    .round-bracket .spacer:first-child,
    .round-bracket .spacer:last-child {
        flex-grow: .5;
    }

.round-bracket .game-spacer {
    flex-grow: 1;
}

li.game {
    padding-left: 20px;
}

    li.game.winner {
        font-weight: bold;
    }

    li.game span {
        float: right;
        margin-right: 5px;
    }

li.game-top {
    border-bottom: 1px solid #aaa;
}

li.game-spacer {
    border-right: 1px solid #aaa;
    min-height: 40px;
}

li.game-bottom {
    border-top: 1px solid #aaa;
}

.content-header {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    border-bottom: 1px solid #aaa;
}

.report-type-header {
    font-size: 18px;
    margin-top: 8px;
    color: #333;
    cursor: pointer;
}

    .report-type-header:hover {
        text-decoration: underline;
        font-weight: bold;
    }

.report-type-desc {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.report-frame-wrapper {
    height: calc(100vh - 400px);
    background: #fafafa;
    margin-top: 15px;
}

    .report-frame-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.navigate:hover {
    text-decoration: underline;
    cursor: pointer;
}

.table-row-white tr {
    background: white !important;
}

.report-type-cell-padding {
    padding: 12px 25px !important;
}

    .report-type-cell-padding:hover {
        background-color: #f3f3f3 !important;
        cursor: pointer;
    }

.label-highlight {
    background: #ffd000;
    width: 100%;
    padding: 3px 10px;
    border-radius: 10px;
}

.col-bye-match {
    opacity: 0.5;
}

.athlete-name-highlight {
    border: 2px dashed #f5453f !important;
}

    .athlete-name-highlight .rank {
        font-weight: bold;
    }

/* Knockout bracket */
.bracketScore-Container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.tournament-bracketScore__match {
    background-color: transparent !important;
    box-shadow: none !important;
}

.game3_score_color {
    color: #333035 !important;
}

.tournament-bracketScore {
    display: flex;
    flex-direction: column;
    padding-bottom: 3.5rem;
}

@media (min-width: 38em) {
    .tournament-bracketScore {
        flex-direction: row;
    }
}

.tournament-bracketScore__round {
    display: block;
    margin-left: -3px;
    flex: 1;
}

    .tournament-bracketScore__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%;
    }

        .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.5em 1em;
        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: 55%;
            border-right: 2px solid #9e9e9e;
        }

        .tournament-bracket__item:nth-child(odd)::after {
            top: 50%;
            border-top: 2px solid #9e9e9e;
            transform: translateY(-1px);
        }

    .tournament-bracketScore--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 #9e9e9e;
        transform: translateY(1px);
    }

    .tournament-bracketScore--rounded .tournament-bracket__item:nth-child(even)::after {
        border-bottom-right-radius: 0.6em;
    }

    .tournament-bracketScore__round:first-child .tournament-bracket__item {
        padding-left: 0;
    }

    .tournament-bracketScore__round:last-child .tournament-bracket__item {
        padding-right: 0;
    }

        .tournament-bracketScore__round:last-child .tournament-bracket__item::after {
            display: none;
        }
}

@media (min-width: 72em) {
    .tournament-bracket__item {
        padding: 0.5em 1.5em;
    }

        .tournament-bracket__item::after {
            width: 1.5em;
        }
}

.tournament-bracket__match {
    width: 100%;
    background-color: #ffffff;
    padding: 1em;
    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;
}

    .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 #9e9e9e;
    }

    .tournament-bracket__match::before {
        bottom: 50%;
        border-bottom: 2px solid #9e9e9e;
        transform: translate(0,1px);
    }

    .tournament-bracket__match::after {
        top: 50%;
        border-top: 2px solid #9e9e9e;
        transform: translate(0,-1px);
    }
}

@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-bracketScore__round:last-child .tournament-bracket__match::before, .tournament-bracketScore__round:last-child .tournament-bracket__match::after {
    border-left: 0;
}

.tournament-bracketScore__round:last-child .tournament-bracket__match::before {
    border-bottom-left-radius: 0;
}

.tournament-bracketScore__round:last-child .tournament-bracket__match::after {
    display: none;
}

.tournament-bracketScore__round:first-child .tournament-bracket__match::before, .tournament-bracketScore__round:first-child .tournament-bracket__match::after {
    display: none;
}

.tournament-bracket__table {
    width: 100%;
}

.tournament-bracket__caption {
    font-size: 0.8rem;
    color: #BDBDBD;
    font-weight: 300;
    padding-bottom: 0.75em;
}

.tournament-bracket__team {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tournament-bracket__country {
    font-size: 0.95rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    align-items: center;
}

@media (max-width: 24em) {
    .tournament-bracket__country {
        margin-top: 0;
    }
}

@media (min-width: 38em) and (max-width: 52em) {
    .tournament-bracket__country .tournament-bracket__code {
        margin-top: 0.2em;
    }
}

.tournament-bracket__code {
    padding: 0 0.5em;
    color: #212121;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    text-decoration: none;
    transition: padding 0.2s ease-in-out;
}

@media (max-width: 24em) {
    .tournament-bracket__code {
        padding: 0 0.25em;
    }
}

@media (min-width: 38em) and (max-width: 52em) {
    .tournament-bracket__code {
        padding: 0;
    }
}

.tournament-bracket__score {
    align-items: center;
}

.tournament-bracket__team:first-child .tournament-bracket__score {
    padding-left: 0.75em;
}

.tournament-bracket__team:last-child .tournament-bracket__score {
    padding-right: 0.75em;
}

.tournament-bracket__number {
    display: inline-block;
    padding: 0.2em 0.4em 0.2em;
    border-bottom: 0.075em solid transparent;
    font-size: 0.95rem;
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    float: right;
}

.tournament-bracket__team--winner .tournament-bracket__number {
    background-color: #FFF176;
    border-color: #FFF176;
}

.qualifying-schedule-table {
    max-height: 500px;
    overflow-y: auto;
}

.qualifying-group {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 0;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
}

    .qualifying-group > .group {
        flex: 0 0 30%;
        margin-left: 1%;
        margin-right: 1%;
    }

        .qualifying-group > .group > .panel {
            /*min-height: 100%;*/
        }

.sb-table-attr-wrapper {
    padding: 30px;
    text-align: center;
}

.sb-table-attr {
    display: inline-block;
    background: rgb(9,53,129);
    background: linear-gradient(90deg, rgba(9,53,129,1) 0%, rgba(8,33,77,1) 100%);
    border-radius: 30px;
}

    .sb-table-attr td {
        padding: 15px;
    }

    .sb-table-attr .attr-contingent {
        color: white;
        font-size: 30px;
    }

.score-attribute-wrapper {
    float: left;
}

.score-attribute-cell {
    float: left;
    width: 120px;
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.simulator-fullscreen {
    background: #F7F9FA;
    padding: 15px;
    overflow: auto;
}

.table-border-summary td {
    border: 1px solid #333;
    padding: 5px;
}

.loading-indicator {
    opacity: 0.5;
}

.btn-double-size {
    font-size: 2em;
    padding: 20px;
}

.btn-triple-size {
    font-size: 3em;
    padding: 30px;
}