#Layer1 label{
    display: inline-block;
}

@-webkit-keyframes blinkingText {
    0% {
        color: #ff4c13
    }

    49% {
        color: transparent
    }

    50% {
        color: transparent
    }

    99% {
        color: transparent
    }

    to {
        color: #ff4c13
    }
}

@keyframes blinkingText {
    0% {
        color: #ff4c13
    }

    49% {
        color: transparent
    }

    50% {
        color: transparent
    }

    99% {
        color: transparent
    }

    to {
        color: #ff4c13
    }
}

@-webkit-keyframes blinkingTextMobile {
    0% {
        color: #01b243
    }

    49% {
        color: transparent
    }

    50% {
        color: transparent
    }

    99% {
        color: transparent
    }

    to {
        color: #01b243
    }
}

@keyframes blinkingTextMobile {
    0% {
        color: #01b243
    }

    49% {
        color: transparent
    }

    50% {
        color: transparent
    }

    99% {
        color: transparent
    }

    to {
        color: #01b243
    }
}


.red {
    color: #ff4c13;
}
#div_goal table {
    background-color: #141516;
    margin-bottom: 0 !important;
    border: 1px solid #333;
}

#div_goal table td {
    padding: 0 10px;
}

#div_goal table tr td {
    border-width: 0;
}

#div_goal .GoalDiv-t {
    background-color: #121213;
}

.GoalDiv-t .goal-time {
    float: right;
}

#div_goal .line {
    background-color: #35373b;
}

.matchList .item .team {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
@media only screen and (max-width: 991px) {
    .main-page .sports-bars .btn-livescore{
            padding-left: unset;
    }
}

@media(max-width: 549px) {
    .main-page .sports-bars .btn-livescore {
        padding-left: 6px;
    }
}

.livescore-loading {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    font-size: 1rem;
    color: #333;
}
.livescore-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff4c13;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
