﻿.form-input {
    border-radius: 5px;
    border: none;
    padding: 0.5em 3.5em 0.5em 1em;
    box-shadow: 0 0 3px 1px rgba(170, 170, 170, 0.1);
}

.form-button {
    background-color: #f8931e;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 3px 1px rgba(170, 170, 170, 0.1);
}

/*
        For some reason Montserrat is not in use for the body copy? It is a google font and should be loaded alongside Merriweather.
    */

body {
    font-family: 'Montserrat', sans-serif;
}

.feature-events__wrapper .feature-event__wrapper .feature-event__content .feature-event__title {
    margin-top: 0;
}

.feature-event__image-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    width: auto;
}



.category-bar {
    background-color: #FFF;
    border-bottom: 1px solid #EEE;
    height: 60px;
    position: relative;
}

.category-bar__content {
    display: flex;
    max-width: 100%;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

    .category-bar__content a {
        color: #666;
        padding: 0 15px;
        box-sizing: border-box;
        height: 60px;
        font-size: 14px;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }

        .category-bar__content a:hover {
            color: #444;
            border-color: #CCC;
        }

        .category-bar__content a.selected {
            color: #333;
            border-bottom: 1px solid #f8931e;
        }

@media screen and (max-width: 800px) {

    .category-bar__content {
        overflow-x: scroll;
    }

    .category-bar:after {
        content: "";
        background: linear-gradient(to right, transparent, #FFF);
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100px;
    }
}
