
.hidden {
    display: none !important;
}

.icon svg, svg.svg-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.fa-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

main {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.navbar a.navbar-logo {
    line-height: 0;
}
.navbar-link:not(.is-arrowless)::after {
    border-color: #888;
}

footer {
    width: 100%;
    margin: 0 auto;
    font-size: 0.8em;
    border-top: 1px #ddd solid;
}
footer > div {
    padding: 6px;
    text-align: center;
}

.has-delete {
    position: relative;
}
.has-delete > .delete {
    position: absolute;
    right: .5rem;
    top: .5rem;
    background-color: rgba(255,255,255,0.2);
}
.has-delete > .delete:hover {
    background-color: rgba(255,255,255,0.3);
}

.button.is-pressed {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    background-color: #e6e6e6;
}
.button.is-pressed:hover {
    background-color: #d5d5d5;
}

/* lets dropdown triggers stack in a row of buttons on the right side */
.buttons.has-addons .dropdown:not(:first-child) .button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.buttons.has-addons.with-dropdown .button {
    margin-bottom: 0;
}

.event-form, .settings-form {
    max-width: 720px;
}

/* event permalinks */

@media(max-width: 720px) {
    .event .cover-image {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}

section {
    max-width: 720px;
    margin: 0 auto;
}

.event .segment {
    margin-bottom: 1em;
}

.event .event-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1em;
}

/* event status tags */
.event .event-name {
    display: flex;
    align-items: center;
}
.event .event-name .status.tag {
    font-size: 1rem;
    font-weight: bold;
    margin-right: 0.5em;
}
.event-list h3 a {
    display: flex;
    align-items: center;
}
.event-list .status.tag {
    margin-right: .5em;
}
.status.tag .lower {
    text-transform: lowercase;
}



.event .segment.with-icon {
    font-size: 1.5em;
    line-height: 1.2em;
}

@media(max-width: 400px) {
    .event .event-name {
        font-size: 2.2rem;
        line-height: 1.2em;
        margin-bottom: 1rem;
    }

    .event .segment.with-icon {
        font-size: 1.2em;
        line-height: 1.2em;
    }
}

.event .segment.with-url {
    overflow: hidden;
}

.event .segment.with-url .text span, .event .segment.with-url .text a {
    display: block;
}

.event .segment.with-url .text .segment-url {
    font-size: 0.75em;
}

.event .segment.with-icon {
    display: grid;
    grid-template-columns: 40px auto;
}

.event .segment.with-icon .icon {
    align-self: center;
}

.event .date .time {
    font-weight: 300;
}

.event .date .timezone {
    font-size: 0.8em;
}

.event .responses, .event .description {
    max-width: 710px;
    border-top: 1px #ddd solid;
    padding-top: 20px;
    padding-bottom: 20px;
}

.event .description img {
    max-width: 100%;
}

.event .add-to-calendar {
    font-size: 0.75em;
}

.event .responses li .avatar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

.event .responses li .avatar .photo {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin-right: 0.5em;
}

.event .responses li {
    margin-bottom: 0.5em;
}

.event .responses.likes li {
    float: left;
    margin-bottom: 0;
}

.event .blog_posts .post-name {
    font-size: 1.2em;
    font-weight: bold;
}

.event .comments li {
    margin-top: 1em;
}

.event .comments .comment-content {
    display: block;
    font-size: 1.1em;
    line-height: 1.4em;
    white-space: pre-wrap;
}
.event .comments .comment-content-html {
    display: block;
    font-size: 1.1em;
    line-height: 1.4em;
}

.event .comments .author-details {
    line-height: 1.1em;
    display: grid;
}
.event .comments a.author-name {
    display: block;
}
.event .comments a.author-url {
    color: #888;
    font-size: 0.8em;
}

.event .comments .meta {
    display: block;
    font-size: 0.8em;
    margin-top: 0.5em;
}

.event .comments .meta a {
    color: #888;
}
.event .comments .meta a:hover {
    text-decoration: underline;
}

/* event list */

.event-list .event {
    margin-bottom: 1em;
}

.event-list .event h3 {
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
}

.single-photo img {
    width: 100%;
}

#drop-area.active {
    background-color: #e4e4e4;
}

/**
 * Photo Albums
 */

.photo-album {
  background: #fff;
  /*border-left: 1px #ccc solid;*/
  /*border-right: 1px #ccc solid;*/
  /* max-width: 617px; */
  margin: 0 auto;
  padding: 2px;
  font-size: 0;
}
ul.photo-album {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 4px;
}
ul.photo-album li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.photo-album img {
  width: 100%;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.photo-album img.full {
    display: none;
}
.photo-album li:first-child img.square {
    display: none;
}
.photo-album li:first-child {
    grid-column-start: span 3;
}
.photo-album li:first-child img.full {
    display: inline;
}

.photo-album.admin li:first-child img.square {
    display: inline;
}
.photo-album.admin li:first-child {
    grid-column-start: auto;
}

.photo-album li.ui-sortable-placeholder {
    min-height: 240px;
}


.tags a.tag:hover {
    text-decoration: none;
    background: #e5e5e5;
}

.tagcloud {
    max-width: 800px;
}
.tagcloud .tag { margin-right: 0.2em; }
.tagcloud .smallest { font-size: 20px; }
.tagcloud .small { font-size: 26px; }
.tagcloud .medium { font-size: 32px; }
.tagcloud .large { font-size: 40px; }
.tagcloud .largest { font-size: 50px; }



.narrow {
    max-width: 800px;
}



@media(max-width: 768px) {
    .level-right .dropdown.is-right .dropdown-menu {
        right: auto;
    }
}


.pulsing-yellow {
    -webkit-animation: pulsing-yellow-glow .7s infinite alternate;
}

@-webkit-keyframes pulsing-yellow-glow {
    to {
        text-shadow: 0 0 10px #FFC000;
        color: #0945a5;
    }
}



.tab-content {

}
.tab-content.hidden {
    display: none;
}


