/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import "default-skin/default-skin.css";

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none;
}

.pswp * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pswp img {
    max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
    display: block;
}

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    /* for open/close transition */
    -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background: #222;
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC;
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline;
}

body.cc-loading {
    cursor: progress;
}

body.pswp-hidden .pswp__zoom-wrap {
    visibility: hidden;
}

.cc-pinboard-list {
    padding: 0 -10px;
    max-width: 1200px;
    margin: 0 auto;
    *zoom: 1;
}

.cc-pinboard-list .cc-pin {
    line-height: normal;
    float: left;
    width: 180px;
    margin: 10px;
    border-radius: 6px;
    border: 1px solid #CCC;
    box-shadow: 0px 2px 5px #CCC;
    border-top: none;
}

.cc-pinboard-list .cc-pin .cc-image-wrap {
    position: relative;
}

.cc-pinboard-list .cc-pin .cc-image-wrap .cc-pin-badge {
    display: none;
    width: 18px;
    height: 18px;
    background-image: url(pinterest-badge-36px.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
}

.cc-pinboard-list .cc-pin .cc-image-wrap .cc-photoswipe {
    cursor: zoom-in;
    display: block;
    border-radius: 6px;
}

.cc-pinboard-list .cc-pin .cc-image-wrap .cc-pin-link {
    display: none;
    padding: 8px 0 6px;
    position: absolute;
    bottom: 0px;
    color: #FFF;
    font-size: 90%;
    left: 0;
    right: 0;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+1,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
}

.cc-pinboard-list .cc-pin .cc-image-wrap:hover .cc-pin-badge {
    display: inline-block;
}

.cc-pinboard-list .cc-pin .cc-image-wrap:hover .cc-pin-link {
    display: block;
}

.cc-pinboard-list .cc-pin .cc-pin-image {
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 180px;
    max-width: none;
    margin-left: -1px;
}

.cc-pinboard-list .cc-pin .cc-pin-description {
    padding: 5px 8px;
    font-size: 90%;
}

.cc-pinboard-list .cc-pin .cc-pin-description .cc-pin-link {
    display: none;
}

.cc-pin-note {
    padding: 0;
    margin: 0;
}

.cc-pin-link:hover {
    color: inherit;
    text-decoration: underline;
}

.cc-pager {
    clear: both;
    text-align: center;
    padding-top: 30px;
    font-weight: bold;
}

body .pswp {
    z-index: 10000;
}

body .pswp__caption {
    -webkit-transition: width 150ms, top 150ms;
    /* Safari */
    transition: width 150ms, top 150ms;
}

body .pswp__caption__center {
    text-align: center;
}

body .pswp__caption__center a:hover {
    color: inherit;
    text-decoration: underline;
}

.cc-cf:before,
.cc-cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cc-cf:after {
    clear: both;
}

.cc-cf {
    *zoom: 1;
}

#filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#filters .btn {
    color: #000 !important;
    background: transparent;
    border: 1px solid #000;
}

#filters .btn:hover {
    background: #000;
    color: #fff !important;
}

#filters .btn.is-checked {
    background: #ed6b21;
    color: #fff !important;
    border: 1px solid #ed6b21;
}