﻿.ABPublishPolling
{
	height: 40px;
	position: absolute;
	bottom: 0;
	float: right;
	direction: rtl;
	right: 0;
	left: auto;
}

.rtl .ABPublishPolling
{
	float: left;
	direction: ltr;
	left: 0;
	right: auto;
}

.ABPublishPolling .PollingTask
{
	height: 40px;
	width: 300px;
	display: inline-block;
    position: absolute;
	padding: 1px;
	border: 1px solid #DDDDDD;
	background-color: #2F353D;
	color: white;
	bottom: 0;
	transition: all .2s ease-in-out
}

.ABPublishPolling .PollingTask.ErrorTask
{
	cursor: pointer;
}

.ABPublishPolling .PollingTask:hover
{
	height: 80px;
}

.ABPublishPolling .TextSpan
{
	font-weight: bold;
    top: 2px;
    position: relative;
}

.ABPublishPolling .led
{
    width: 15px;
    height: 15px;
	border-radius: 50%;
	margin: 0;
}

.ABPublishPolling .led-red
{
	background-color: #F00;
	box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 12px;
    -webkit-animation: blinkRed 0.5s infinite;
    -moz-animation: blinkRed 0.5s infinite;
    -ms-animation: blinkRed 0.5s infinite;
    -o-animation: blinkRed 0.5s infinite;
    animation: blinkRed 0.5s infinite;
}

@-webkit-keyframes blinkRed 
{
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-moz-keyframes blinkRed 
{
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-ms-keyframes blinkRed 
{
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@-o-keyframes blinkRed 
{
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}
@keyframes blinkRed 
{
    from { background-color: #F00; }
    50% { background-color: #A00; box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 0;}
    to { background-color: #F00; }
}