/* table */

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.table-score {
    border: 1px solid #cec7c7 !important;
}

.zui-table .table-score td {
    border-bottom: 1px solid #cec7c7 !important;
}

.zui-table {
    /* border: solid 1px #fefcaa; */
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 2.5;
    width: 100%;
}

.zui-table thead th {
    background-color: #deded5;
    border: solid 1px #cec7c7;
    color: #171414;
    padding: 5px;
    /* text-shadow: 1px 1px 1px #fff; */
}

.zui-table tbody td {
    border-bottom: solid 1px #cec7c7;
    /* background-color: #000; */
    /* color: #fff; */
    padding: 10px;
    /* text-shadow: 1px 1px 1px #fff; */
}

.zui-table-horizontal tbody td {
    border-left: none;
    border-right: none;
    white-space: nowrap;
}

.overflow-x {
    overflow-x: auto;
}

.icon-ball {
    width: 20px;
    margin: 7px;
}

.icon-card-red {
    background-color: red;
    width: 13px;
    height: 15px;
    border-radius: 2px;
    margin: 7px;
}

.icon-card-yellow {
    background-color: yellow;
    width: 13px;
    height: 15px;
    border-radius: 2px;
    margin: 7px;
}

.icon-league {
    width: 30px;
    margin-right: 15px;
    margin-left: 45px;
}

.title-score {
    font-size: 18px;
    margin: 0 0 0 25px;
    cursor: pointer;
}

.icon-toggle-no {
    margin: 0px 15px 0 0;
    font-size: 26px !important;
    float: right;
}

.icon-toggle-off {
    margin: 10px 15px 0 0;
    font-size: 26px !important;
    float: right;
}

.social-icon {
    width: 45px;
    margin-right: 5px;
    margin-top: 15px;
}

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}