/* line or
-------------------------------------------------- */
.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap !important;
}

.line_bottom {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
}
.line_bottom:after {
    display: inline-block;
    width: 100%;
    height: 1px;
    margin: 8px 0;
    background-color: rgba(0,0,0,0.06);
    vertical-align: top;
    content: '';
}


.line_or {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
    line-height: 0;
}
.line_or:before, .line_or:after {
    display: inline-block;
    width: calc(50% - 20px);
    height: 1px;
    margin: 8px 0;
    background-color: rgba(0,0,0,0.06);
    vertical-align: top;
    content: '';
}

.line_or .txt_or {
    display: inline-block;
    width: 40px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: rgba(0,0,0,0.3);
}


/* indicator */
.indicator { position: relative; }
.indicator:after {
    content: "";
    position: absolute;
    border-left: .8em solid rgba(0,0,0,0)
}

.indicator.increased:after {
    border-top-width: .8em;
    border-left-width: .8em;
    top: 0;
    right: 0;
    border-top: .8em solid #ec0c87
}

.indicator.decreased:after {
    border-bottom-width: .8em;
    border-left-width: .8em;
    bottom: 0;
    right: 0;
    border-bottom: .8em solid #5376f8
}

.indicator.increased:after {
    -webkit-animation: indicator_blinking_increased .3s 12 alternate forwards,indicator_static_increased .5s 30s forwards;
    animation: indicator_blinking_increased .3s 12 alternate forwards,indicator_static_increased .5s 30s forwards
}

@-webkit-keyframes indicator_blinking_increased { 
    0% { opacity: 1 }
    to { opacity: 0 }
}

@keyframes indicator_blinking_increased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

@-webkit-keyframes indicator_static_increased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

@keyframes indicator_static_increased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

.indicator.decreased:after {
    -webkit-animation: indicator_blinking_decreased .3s 12 alternate forwards,indicator_static_decreased .5s 30s forwards;
    animation: indicator_blinking_decreased .3s 12 alternate forwards,indicator_static_decreased .5s 30s forwards
}

@-webkit-keyframes indicator_blinking_decreased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

@keyframes indicator_blinking_decreased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

@-webkit-keyframes indicator_static_decreased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

@keyframes indicator_static_decreased {
    0% { opacity: 1 }
    to { opacity: 0 }
}

/* Goal */
.TeamGoalMarker {
    /* display: none; */
    opacity: 0;
    vertical-align: middle;
}

.TeamGoalMarker-showanimation {
    /* display: inline-block; */
    -webkit-animation: GOAL_ANIMATION 5s ease, GOAL_ANIMATION_OFF .1s ease;
    animation: GOAL_ANIMATION 5s ease, GOAL_ANIMATION_OFF .1s ease;
}

.ie-8 .TeamGoalMarker-showanimation,
.ie-9 .TeamGoalMarker-showanimation {
    opacity: 1
}

.TeamGoalMarkerSpan {
    margin: 0 5px;
    padding: 1px 3px;
    background: #ffdf1b;
    font-size: 11px;
    color: #333;
    border-radius: 1px;
    line-height: 18px
}

@keyframes GOAL_ANIMATION {
    0% { opacity: 1;
        -webkit-transform: scaleX(0) scaleY(0);
        transform: scaleX(0) scaleY(0)
    }
    3% {
        opacity: 1;
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }
    97% {
        opacity: 1;
        -webkit-transform: scaleX(1) scaleY(1);
        transform: scaleX(1) scaleY(1)
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(0) scaleY(0);
        transform: scaleX(0) scaleY(0)
}
}

@keyframes GOAL_ANIMATION_OFF {
    0% { opacity: 1; }
    to { opacity: 0; }
}



@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: .75s linear infinite spinner-grow;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .spinner-border,.spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s
    }
}

.deleted * {
    text-decoration: line-through !important;
}

.event-list-item, .event-list-item-total {
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

@media only screen and (max-width: 1200px) {
    .event-list-item div.time {
        background-color: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    /* .event-list-item div:nth-child(2) {
        border-left: 1px solid rgba(255, 255, 255, 0.04);
    } */
}

.event-list-item div {
    min-height: 30px;
    line-height: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.event-list-item-total div {
    min-height: 30px;
    line-height: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background-color: rgba(255, 255, 255, 0.15);
}

.event-list-item .choice, .event-list-item .pick:hover {
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.24), 0 8px 25px 0 rgba(0,0,0,0.19);
    background-color: #629;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s
}

.event-list-item .market-title {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background-color: #629;
    border-top: 0px;
    text-align: center;
}