.backgroundSlides{
    min-width: 100%;
    min-height: 100vh;
    display: block;
    background: linear-gradient(180deg, #253D5B, #5d16bb);
    background-size: 400% 400%;
    animation: gradientFade 12s ease infinite;
}

.dashboard_hero{
    background-image: url(/img/hero_mountain.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.jumbotron_deprecated{
    background: linear-gradient(180deg, #061d74, #5d16bb);
    background-size: 400% 400%;
    animation: gradientFade 12s ease infinite;
}

#createBarcampForm #createBarcampControls {
    bottom: -32px;
}

#createBarcampControls li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #404040;
}

#createBarcampControls .active {
    background-color: #444;
}

.discussionTopics tr.selected{
    background-color: #29A745;
    color: #FFF;
}

@keyframes gradientFade{
    0%{
        background-position: 47% 0%;
    }

    50%{
        background-position: 54% 100%;
    }

    100%{
        background-position: 47% 0%;
    }
}

* {
    font-family: 'Montserrat', sans-serif;
  }
.w100 {
    font-weight: 100;
  }
.w200 {
    font-weight: 200;
  }
.w300 {
    font-weight: 300;
  }
.w400 {
    font-weight: 400;
  }