/* count styles, like seen on view page guest list */
/* mixin for three column layout like the gallery page, with an ad on the right */
/* this makes it possible to share styles without having to use the primary and secondary classes */
/* count styles, like seen on view page guest list */
/* mixin for three column layout like the gallery page, with an ad on the right */
/* this makes it possible to share styles without having to use the primary and secondary classes */
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* common colors used for yes/no/maybe states on invitations */
/* common colors used for yes/no/maybe states on invitations */
/* Colors */
/* Colors */
/* below this is new */
/* below this is new */
/* Grid settings */
/* Grid settings */
/* Breakpoints */
/* Breakpoints */
/* Minus 1 px to active on "less than 1020px" etc */
/* Minus 1 px to active on "less than 1020px" etc */
/* Unique due to length of new nav items overlapping with search bar */
/* Unique due to length of new nav items overlapping with search bar */
/* Type */
/* Type */
/* Layout */
/* Layout */
html.slideshow-open,
html.slideshow-open body {
  overflow: hidden;
}

/* Gallery
-------------------------------------------------- */
#event-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  font-size: 14px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #event-gallery {
    width: 100%;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
  }
}

#event-gallery a {
  outline: 0;
}

/* Slideshow
-------------------------------------------------- */
#event-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
  width: 70%;
  height: 100%;
  overflow: hidden;
  background-color: #111;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
}
@media screen and (max-width: 767px) {
  #event-slideshow {
    width: 100%;
  }
}

#event-slideshow .slides {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#event-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.swipeshow-grabbed #event-slideshow .slide {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

#event-slideshow .slide .slideshow-photo {
  position: relative;
  z-index: 300;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* Close button */
#event-gallery .slideshow-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 500;
  padding: 10px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 100%;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  #event-gallery .slideshow-close {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
#event-gallery .slideshow-close:hover {
  background-color: #444;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
@media screen and (max-width: 767px) {
  #event-gallery .slideshow-close:hover {
    background-color: transparent;
  }
}
#event-gallery .slideshow-close:active {
  background-color: #ef5323;
}
@media screen and (max-width: 767px) {
  #event-gallery .slideshow-close:active {
    background-color: transparent;
  }
}

#event-gallery .slideshow-close .icon-cancel {
  display: block;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #event-gallery .slideshow-close .icon-cancel {
    display: none;
  }
}

#event-gallery .close-text {
  display: none;
}
@media screen and (max-width: 767px) {
  #event-gallery .close-text {
    display: block;
    top: -5px;
    right: -5px;
    padding: 0 10px;
    line-height: 28px;
    font-size: 14px;
    color: #eee;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    border: solid 1px #ddd;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
  }
}

/* Prev/next buttons */
/* Only shows on desktop view */
@media screen and (max-width: 767px) {
  #event-gallery .prev-next {
    display: none;
  }
}
#event-gallery .prev-next a {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  text-align: center;
  color: #000;
}

#event-gallery .prev-next a.next {
  left: auto;
  right: 0;
  width: 55%;
}

#event-gallery .prev-next a span {
  position: absolute;
  top: 50%;
  left: -60px;
  width: 50px;
  line-height: 50px;
  margin-top: -25px;
  font-size: 34px;
  border-radius: 100px;
  opacity: 0.1;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#event-gallery .prev-next a span:before {
  margin: 0;
}

#event-gallery .prev-next a.next span {
  left: auto;
  right: -60px;
}

#event-gallery .prev-next a:hover span {
  opacity: 0.65;
}

#event-gallery .prev-next:hover a span {
  left: 10px;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

#event-gallery .prev-next:hover a.next span {
  left: auto;
  right: 10px;
}

#event-gallery .prev-next-text {
  display: none;
}

/* Comments panel */
.comments-panel {
  height: 100%;
  margin-top: -155px;
  padding-top: 155px;
}
@media screen and (max-width: 767px) {
  .comments-panel {
    display: none;
    position: absolute;
    left: 1%;
    bottom: 0;
    z-index: 300;
    width: 98%;
    margin: 0;
    padding: 0;
    font-weight: normal;
  }
}

@media screen and (max-width: 767px) {
  .comments-active .comments-panel {
    display: block;
    -webkit-animation: fadeInUp 0.3s ease-in-out;
    -moz-animation: fadeInUp 0.3s ease-in-out;
    animation: fadeInUp 0.3s ease-in-out;
  }
}
/* Comments */
.comments-panel #slideshow-comments-wrap {
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}
.comments-panel #slideshow-comments-wrap::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.comments-panel #slideshow-comments-wrap::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .comments-panel #slideshow-comments-wrap {
    position: absolute;
    bottom: 142px;
    width: 100%;
    max-height: 50%;
    padding: 10px;
    background-color: #fff;
    border-radius: 3px 3px 0 0;
  }
}
.comments-panel #slideshow-comments-wrap .message-container {
  margin-bottom: 10px;
}
.comments-panel #slideshow-comments-wrap .message-container span.username {
  font-weight: bold;
}
.comments-panel #slideshow-comments-wrap .message-container .timestamp {
  font-style: italic;
  font-size: 11px;
  line-height: 17px;
  color: #9ea0ab;
}

.comments-panel .view-all-comments {
  text-align: center;
  padding-bottom: 17px;
  margin-bottom: 20px;
  border-bottom: dashed 1px #ddd;
}
@media screen and (max-width: 767px) {
  .comments-panel .view-all-comments {
    padding-bottom: 10px;
  }
}

.comments-panel .view-all-comments a {
  margin: 0;
}

.no-comments .comments-panel ul {
  text-align: center;
}

.comments-panel li {
  margin: 0 0 20px 0;
}

.comments-panel li:last-child {
  margin: 0;
}

.comments-panel .message .meta .remove {
  display: none;
}

/* Comment form */
.comments-panel .comment-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #eee;
}
@media screen and (max-width: 767px) {
  .comments-panel .comment-form {
    position: absolute;
    bottom: 86px;
    width: 100%;
    padding: 10px;
    margin: 0;
    background-color: #ddd;
    border-top: none;
    border-radius: 0 0 3px 3px;
  }
}

.comments-panel form {
  position: relative;
}

.comments-panel input[type=text] {
  width: 100%;
  height: auto;
  padding: 10px 100px 10px 10px;
  margin: 0;
  border-radius: 100px;
  border: solid 1px #ddd;
}

.comments-panel input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background-color: #62ae20;
  color: #fff;
  border-radius: 0 100px 100px 0;
}

.comments-panel.comment-posting input[type=submit] {
  opacity: 0.5;
  cursor: wait;
}

/* Slideshow details panel */
#post-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #post-panel {
    width: 100%;
    padding: 0;
  }
}

/* post details */
#slideshow-details {
  display: block;
}
@media screen and (max-width: 767px) {
  #slideshow-details {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 500;
    width: 100%;
    padding: 8px 10px 16px 10px;
    font-weight: normal;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
    color: #fff;
  }
}

#event-gallery .title {
  font-weight: bold;
  background-color: #333;
  margin: -20px -20px 20px -20px;
  padding: 16px 40px 16px 16px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  #event-gallery .title {
    background-color: transparent;
    margin: 0;
    padding: 0 0 8px 0;
    border-bottom: solid 1px #ddd;
  }
}
#event-gallery .title small {
  display: block;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #event-gallery .title small {
    display: inline-block;
  }
}
#event-gallery .action-buttons {
  display: none;
  float: right;
  font-size: 18px;
  padding-top: 8px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  #event-gallery .action-buttons {
    display: block;
  }
}
#event-gallery .action-buttons a {
  display: inline-block;
  color: #ccc;
  width: 33.33333% !important;
}
#event-gallery .action-buttons .button-comment {
  display: none;
}
@media screen and (max-width: 767px) {
  #event-gallery .action-buttons .button-comment {
    display: inline-block;
  }
}
#event-gallery .action-buttons .button-like {
  display: none;
}
@media screen and (max-width: 767px) {
  #event-gallery .action-buttons .button-like {
    display: inline-block;
    margin-left: 16px;
  }
}
#event-gallery .action-buttons .button-like.liked {
  color: #62ae20;
}
#event-gallery .action-buttons .download-file {
  display: inline-block;
}
#event-gallery .action-buttons span {
  margin-right: 12px;
}
#event-gallery.comments-active .button-comment {
  color: #62ae20;
}
#event-gallery .social-stats {
  display: none;
}
@media screen and (max-width: 767px) {
  #event-gallery .social-stats {
    display: block;
    float: left;
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 10px;
    cursor: pointer;
  }
}
#event-gallery .social-stats a {
  color: #fff;
}
#event-gallery .no-comments .social-stats {
  display: none;
}

/* Share panel */
.share-panel {
  display: none;
  position: absolute;
  left: 20px;
  bottom: 84px;
  z-index: 300;
  font-weight: normal;
  background-color: #fff;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.share-panel.active {
  display: block;
}

.share-panel:after, .share-panel:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.share-panel:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.share-panel:before {
  border-color: rgba(221, 221, 221, 0);
  border-top-color: #666;
  border-width: 11px;
  margin-left: -11px;
}

.share-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.share-panel li {
  border-bottom: solid 1px #ddd;
}

.share-panel li:last-child {
  border-bottom: none;
}

.share-panel a {
  display: block;
  padding: 10px 18px 10px 10px;
  color: #333;
  text-decoration: none;
}

.share-panel a span {
  margin-right: 4px;
}

/*# sourceMappingURL=slideshow.css.map */
