body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #222;
    background-color: #f3f5f6;
}

a,
a:link {
    color: #0063DC;
    text-decoration: none;
}

a:hover,
a:active {
    text-decoration: underline;
}

.wrapper {
    position: relative;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    background: #000;
    color: #fff;
}

.header-title {
    display: inline-block;
    margin: 0;
    font-size: 22px;
    line-height: 1.2em;
}

.feed-title {
    margin: 66px 0 20px;
}

.feed-container {
    margin: 0;
    margin-right: -10px;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

.feed-item {
    display: inline-block;
    width: 240px;
    box-sizing: border-box;
    padding: 10px;
    margin: 0 10px 20px 0;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    overflow: hidden;
}

.feed-item-image {
    background-color: #212124;
    margin: -10px -10px 10px;
}

.feed-item-image img {
    display: block;
    margin: 0 auto;
    transition: opacity .3s ease-out;
}

.feed-item-image.loading {
    position: relative;
    min-height: 120px;
}

.feed-item-image.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    width: 80px;
    height: 80px;
    background-color: #0063DC;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

@keyframes sk-scaleout {
	0% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
	}
}

.feed-item-image.loading img {
    opacity: 0;
}

.feed-item-tags {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.no-results {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.search-trigger {
    display: none;
}

.search-form {
    position: relative;
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
}

.search-field,
.search-button {
    border: 0 none;
    -webkit-appearance: none;
    transition: background .2s ease-out;
}

.search-field {
    width: 100%;
    height: 26px;
    box-sizing: border-box;
    padding: 5px 50px 5px 10px;
    line-height: 1em;
    background: rgba(255, 255, 255, 0.9);
}

.search-field:focus {
    outline: 0 none;
    background: #fff;
}

.search-button {
    position: absolute;
    z-index: 20;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 10px;
    background-color: #128fdc;
    color: #fff;
    font-weight: bold;
}

.search-button:focus,
.search-button:hover {
    background: #1c9be9;
    outline: 0 none;
}

@media screen and (min-width: 800px) {
    .search-toggle {
        display: none;
    }

    .search-form {
        float: right;
        width: 300px;
    }
}

@media screen and (max-width: 799px) {
    .search-toggle {
        position: absolute;
        right: 20px;
        top: 6px;
        height: 12px;
        width: 20px;
        border-top: 2px solid;
        border-bottom: 2px solid;
        cursor: pointer;
    }

    .search-toggle:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 5px;
        height: 2px;
        border-top: 2px solid;
    }

    .search-toggle:hover {
        opacity: 0.75;
    }

    .search-form {
        height: 0;
        transition: height .1s ease-out;
    }

    .search-trigger:checked ~ .search-form {
        height: 26px;
        margin-top: 10px;
    }
}

.connector-wrapper {
    text-align: center;
    margin: 40px auto 80px;
}

.lazy-load-button {
    padding: 10px 20px;
    color: white;
    background: #128fdc;
    border: 0 none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    transition: all .15s;
}

.lazy-load-button:focus,
.lazy-load-button:hover {
    background: #1c9be9;
    outline: 0 none;
}

.lazy-load-button:active {
    position: relative;
    top: 1px;
}