﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

.VerticallyCentered {
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

/* Sticky Footer Style------------------------------------------ */
.sticky-footer {
    position: fixed;
    z-index: 1000;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    color: white;
    border-top: 2px solid #EEEEEE;
    background-color: #FFFFFF;
    display: inline-block;
    text-align: center
}

/* Pulse Style------------------------------------------ */
.pulse-outer {
    border: 1px solid #c0c0c0;
    border-radius: 50%;
    width: 136px;
    height: 136px;
    background-color: white;
    animation: mantel-anim 1s infinite;
}

.pulse-mantel {
    border: 1px solid #c0c0c0;
    border-radius: 50%;
    display: inline-block;
    margin-top: 7px;
    margin-left: 7px;
    width: 120px;
    height: 120px;
    background-color: white;
    animation: mantel-anim 1s infinite;
}

@keyframes mantel-anim {
    from {
        border-color: goldenrod;
    }

    to {
        border-color: white;
    }
}

.pulse-inner {
    border-radius: 50%;
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    width: 100px;
    height: 100px;
    background-color: white;
    animation: inner-anim 1s infinite;
}

.pulse-core {
    border-radius: 50%;
    display: inline-block;
    margin-top: 5px;
    margin-left: 5px;
    width: 90px;
    height: 90px;
    background-color: white;
}

@keyframes inner-anim {
    from {
        background-color: goldenrod;
    }

    to {
        background-color: gold;
    }
}

.triangle-right {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 50px solid #555;
    border-bottom: 25px solid transparent;
}

