.fixed-actions {
    position: fixed;
    bottom: 10px;
    z-index: 9;
}
.fixed-actions > * {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    margin: 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    transform: scale(0.7);
    transition: transform 0.2s ease;
}
.fixed-actions > a {
    color: #333;
}
.fixed-actions > *:hover {
    animation: pop07 0.3s ease forwards;
}
.fixed-actions .tip {
    display: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    font-family: "proxima-nova", Arial, sans-serif;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin: 0 0 12px -80px;
    min-width: 160px;
    padding: 10px;
    background: #000;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}
.fixed-actions .tip:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 100%;
    margin: 0 0 0 -5px;
    height: 0;
    width: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}
.fixed-actions *:hover > .tip {
    display: block;
}
#page-actions *:first-child > .tip {
    left: 0;
    margin-left: 0;
}
#page-actions *:first-child > .tip:after {
    margin-left: 0;
    left: 25px;
}
#site-actions *:last-child > .tip {
    left: auto;
    right: 0;
    margin-left: 0;
}
#site-actions *:last-child > .tip:after {
    margin-left: 0;
    left: auto;
    right: 25px;
}
.save-state.loading .save,
.save-state .loader {
    display: none;
}
.save-state.loading .loader{
    display: inline-block;
}

.success-icon {
    position: fixed;
    bottom: 10px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    text-align: center;
    font-size: 60px;
    color: #5c5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 21;
    animation: 
        fade 0.2s ease forwards, 
        pop07 0.4s ease forwards,
        fade 0.2s 2.1s ease reverse forwards,
        pop07 0.4s 2s ease reverse forwards;
}

#page-actions {
    left: 10px;
}
#site-actions {
    right: 10px;
}

#system-messages {
    position: fixed;
    width: 800px;
    left: 50%;
    bottom: 0;
    margin-left: -400px;
    z-index: 20;
    text-align: center;
    animation: updown 6s ease forwards;
}
.system-message {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 35px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    margin: 0 0 15px;
}

#content {
    box-sizing: border-box;
    max-width: 1400px;
    margin: 100px auto;
    background: #fff;
    color: #000;
    padding: 50px;
}

table.list {
    font-size: 16px;
    width: 100%;
    border-collapse: collapse;
}
table.list th {
    font-weight: 600;
    text-align: left;
}
table.list tbody tr {
    border-top: 1px solid rgba(0,0,0,0.1);
}
table.list th,
table.list td {
    padding: 8px;
}
table.list tr .center {
    text-align: center;
}
table.list tr .icons,
table.list tr .actions {
    width: 1px;
    white-space: nowrap;
}
table.list tr .icons .fa:nth-child(n+2),
table.list tr .actions .fa:nth-child(n+2) {
    margin-left: 5px;
}
table.list a {
    color: #38c;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
table.list a:hover {
    border-color: #38c;
}
table.list a.fa {
    border: none;
}
table.list .icons .fa-check {
    color: #5c5;
}
table.list .actions a.fa-trash {
    color: #ef4646;
}

.rel {
    position: relative;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clear {
    clear: both;
}
.vc {
    font-size: 0;
}
.vc:before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    width: 0px;
}
.vc > * {
    vertical-align: middle;
    display: inline-block;
}