body{
    margin:0;
    min-height:100vh;
}

.blinking {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.black-table{
    background-color: black;
    color: white;
}
.headerNavigation{
    list-style: none;
    margin-top:5px;
}
ul.headerNavigation > li {
    display: inline-block;
    /* You can also add some margins here to make it look prettier */
    zoom:1;
    *display:inline;
    margin-right:10px;
    /* this fix is needed for IE7- */
}
ul.headerNavigation > li > a{
    color:#2F3445;
    font-size:16px;
    text-decoration: none;
}
ul.headerNavigation > li > a{
    color:#2F3445;
    text-decoration: none;
}
ul.headerNavigation > li > a:hover{
    color:#FF292A;
}
ul.headerNavigation > li > a.dropdown::after {
    content: '\f0dd';
    font-family: fontawesome;
    font-weight: normal;
    display: inline-block;
    margin: 0;
    font-size:10px;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(0);
    color: inherit;
    position: relative;
    background: transparent;
    height: auto;
    width: auto;
    right: auto;
    line-height: inherit;
    top: 3px;
    left: 7px;
}
ul.headerNavigation > li > a.dropdown{
    padding-right:10px;
}

.footer{
    color:white;
}


.color-red{
    color:#FF292A;
}
.color-navy{
    color:#343849;
}

.footerList{
    list-style:none;
    padding-left:0px;
}
.footerList >li {
    padding-top:6px;
    padding-bottom:6px;
    border-bottom:1px solid #393D49;
}
.footerList >li > a{

    color:#F8FFFB;
    text-decoration: none;
}

.form-control-rounded{
    border:1px solid #353A4A;
    border-radius:20px!important;
}

.btn-round{
    border-radius:20px;
}

.btn-navy{
    background-color:#343849;
    color:white;

}
.btn-navy:hover{
    background-color: #3f4255;
    color:white;

}

/*
JOIN
 */
.split{
    border-bottom:1px solid #e3e3e3;
}

.plan_name{
    text-align: center;
}

#flash-message{
    position:fixed;  z-index:10;right:30%; width:35vw; height:auto; top:20%;
}

@media only screen and (max-width: 1024px) {
    #flash-message{
        position:fixed;  z-index:10;right:15%; width:70%; height:auto; top:20%;
    }
}

@media only screen and (max-width: 425px) {
    #flash-message{
        position:fixed;  z-index:10;right:5%; width:90%; height:auto; top:20%;
    }
}