/*Header*/
#redux-header {
    background: url(../img/header_bkg.png) no-repeat 0 0 transparent !important;
    background-size: 100% 100% !important;
}
#redux-header .display_header .redux-dev-mode-notice-container {
    left: 85px !important;
}
#redux-header .display_header:before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../img/icon.png) no-repeat 0 0 transparent;
    float: left;
    margin-right: 15px;
    background-size: 100% !important;
}
/*Terminals List*/
.terminals-list {
    width: 100%;
}
.terminals-list .table-placeholder {
    display: none;
    width: 256px;
    height: 256px;
    margin: 0 auto;
    background: url(../img/searching_back.png) no-repeat 0 0 transparent;
    background-size: 100% 100% !important;
}
.terminals-list .table-placeholder > i{
    display: inline-block;
    width: 256px;
    height: 256px;
    margin: 0 auto;
    background: url(../img/searching_over.png) no-repeat 0 0 transparent;
    background-size: 100% 100% !important;
    -webkit-animation: spin 2s infinite; /* Safari 4+ */
    -moz-animation:    spin 2s infinite; /* Fx 5+ */
    -o-animation:      spin 2s infinite; /* Opera 12+ */
    animation:         spin 2s infinite; /* IE 10+, Fx 29+ */
}
@-webkit-keyframes spin {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes spin {
	from { -moz-transform: rotate(0deg); }
	to { -moz-transform: rotate(360deg); }
}
@-o-keyframes spin {
	from { -o-transform: rotate(0deg); }
	to { -o-transform: rotate(360deg); }
}
@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
.terminals-list.empty .table-placeholder {
    display: block;
}
.terminals-list table {
    width: 100%;
}
.terminals-list table td, .terminals-list table th {
    line-height: 35px;
    padding: 0 5px;
}
.terminals-list table tr:nth-child(2n) {
    background: #f9f9f9;
}
.terminals-list table tbody tr:hover {
    cursor: pointer;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}
.terminals-list.empty table {
    display: none;
}
.terminals-list table th {
    text-align: left;
}
.terminals-list table th:last-child, .terminals-list table tbody td:last-child {
    text-align: center;
    width: 100px;
    padding-top: 6px !important;
}
.terminals-list table tbody td {
    overflow: hidden;
    white-space: nowrap;
}
.terminals-list table tbody td:first-child {
    font-weight: bold;
}
.terminals-list table tr[data-state=true] button[data-action=toggle] span.text-off {
    display: none;
}
.terminals-list table tr[data-state=false] button[data-action=toggle] span.text-on {
    display: none;
}
.terminals-list table tr button[data-action=toggle] {
    border-radius: 5px 0px 0px 5px;
}
.terminals-list table tr button[data-action="delete"] {
    border-radius: 0 5px 5px 0;
    color: #ff0000;
    text-shadow: 0px 1px 0px #ffffff, 0px -1px 0px #dd0000;
}
.terminals-list table tr button[data-action="delete"]:hover {
    color: #ff3333;
}
.terminals-list table .error {
    color: #ff0000;
}
/*Send SMS*/
.sms-send .notification, .sms-send-bulk .notification {
    border-left: 5px solid transparent;
    line-height: 28px;
    vertical-align: middle;
    padding: 5px 10px;
    background: transparent;
    height: 28px;
    display: inline;
    margin-left: 5px;
    border-radius: 3px;
}
.sms-send .notification.warning, .sms-send-bulk .notification.warning {
    border-color: orange;
    background: #fff;
}
.sms-send .notification.success, .sms-send-bulk .notification.success {
    border-color: green;
    background: #fff;
}