.table-expand {
    margin-top: 2rem;
    font-size:14px;
}

/* .table-expand td {
    color: #8a8a8a;
} */

.table-expand tr {
    border: 1px solid #e6e6e6;
}

.table-expand .text-right {
    padding-right: 3rem;
}

.table-expand-row.is-active .expand-icon::after {
    content: '-';
}

.table-expand-row .expand-icon::after {
    content: '+';
    float: right;
    font-weight:bold;
    font-size:14px;
}

.table-expand-row-content {
    display: none;
}

.table-expand-row-content.is-active {
    display: table-row;
    -webkit-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    background-color: white;
}

.table-expand-row-nested {
    /* background-color: #e6e6e6; */
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.overlay {
    background: #B0B0B0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 10000000;
    display: none;
}

.loader {
    position: absolute;
    z-index: 999999999;
    overflow: show;
    margin: auto;
    top: 220px;
    left: 0;
    right: 0;
    border: 28px solid #f8f8f8;
    /* Light grey */
    border-top: 28px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 195px;
    height: 195px;
    animation: spin 2s linear infinite;
    border-top: 28px solid #00FF87;
    border-right: 28px solid #FF005A;
    border-bottom: 28px solid #38003C;
}

.loader2 {
    position: absolute;
    z-index: 999999999;
    overflow: show;
    margin: auto;
    top: 430px;
    left: 0;
    right: 0;
    width: 280px;
    height: 155px;
    font-weight: bold;
    color: #000;
    font-size: 15px;
    padding: 15px;
    border-radius: 4px;
    border: 2px solid #DBDBDB;
    background-color: white;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/** table **/
.red-row {
    background-color: rgb(204, 0, 0);
}

.green-row {
    background-color: rgb(36, 171, 36);
}

.row-80 {
    background-color: rgb(109, 199, 109);
}

.row-70 {
    background-color: rgb(253, 244, 185);
}

.row-60 {
    background-color: rgb(242, 157, 157);
}

.row-50 {
    background-color: rgb(225, 109, 109);
}

.player {
    /* width: 400px; */
}

.player-img {
    border-radius: 10px;
    border: 0.5px outset #ccc;
    width: 40px;
    height: 40px;
    background: var(--wpr-bg-0113e1e8-8fff-4d73-80a0-c7afa4e0f412) -14px 0px;
    background-size: 69px 88px;
}

.table-expand-row-content {
    background-color: white;
}

.lineup {
    background-color: white;
}

.player-header {
    display: flex;
    justify-content: space-around;
}

.squads {
    display: flex;
    justify-content: space-around;
}

.captain {
    border-color: goldenrod;
    border-width: 3px;
    border-radius: 2px;
}

