
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}

div.triangle{
    width:30px;
    height:30px;
    position: relative;
    float: left;
}

div.triangle.run{
    -webkit-animation: rotation 1s 1 ease-in;
}

div.triangle div.circle{
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    border-radius: 7.5px;
}

div.triangle div.circle.one{
    background-color: #ff6600;
    left:12px;
}

div.triangle div.circle.two{
    background-color: #FF3366;
    left:-1px;
    top: 7.5px;
}

div.triangle div.circle.three{
    background-color: #33CCFF;
    top: 15px;
    left:12px;
}

.navbar .brand{
    padding-left:20px !important;
}

html, body {
    height: 100%;
}

.navbar {
    overflow: auto;
}

main {
    overflow: auto;
}

.footer ul.foot_links{
    float: right;
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer ul.foot_links li{
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.footer ul.foot_links li p{
    margin-bottom: 0;
}

.container.main{
    padding-top: 20px;
}

.footer{
    border-top: 1px solid #d4d4d4;
    background-color: rgb(250, 250, 250);
    background-image: linear-gradient(rgb(255, 255, 255), rgb(242, 242, 242));
    background-repeat: repeat-x;
    border-bottom-color: rgb(212, 212, 212);
}

.text-right{
    text-align: right;
}

/* Logout button styling to match nav links */
.nav-item form {
    margin: 0;
    padding: 0;
}

.nav-item button.nav-link {
    background: none;
    border: none;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: inherit;
    font-family: inherit;
    display: inline-block;
    transition: color 0.15s ease-in-out;
}

.nav-item button.nav-link:hover {
    color: #007bff;
}

.nav-item button.nav-link:focus {
    outline: none;
    color: #007bff;
}