﻿.navbar, h1, body {
    font-family: 'Comfortaa', cursive;
}

h1 {
    text-shadow: 2px 0px 2px #bbb;
}

.breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
}

.gutter-1.row {
    margin-right: -.25rem;
    margin-left: -.25rem;
}

.gutter-1 > [class^="col-"], .gutter-10 > [class^=" col-"] {
    padding-right: .25rem;
    padding-left: .25rem;
}

.gutter-2.row {
    margin-right: -.5rem;
    margin-left: -.5rem;
}

.gutter-2 > [class^="col-"], .gutter-10 > [class^=" col-"] {
    padding-right: .5rem;
    padding-left: .5rem;
}

.gutter-3.row {
    margin-right: -1rem;
    margin-left: -1rem;
}

.gutter-3 > [class^="col-"], .gutter-10 > [class^=" col-"] {
    padding-right: 1rem;
    padding-left: 1rem;
}

.bg-gallery {
    background-color: #ccc;
}

.gallery-thumbnail {
    position: relative;
}

.gallery-overlay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding-top: .25rem;
    padding-bottom: .25rem;
    text-align: center;
}

.gallery-title {
    margin: .5rem;
    opacity: 1;
}

div.options a {
    color: rgba(0, 0, 0, 0.6);
    display: block;
}

div.options {
    position: absolute;
    left: .25rem;
    top: .25rem;
    font-size: 1.25rem;
}

img.lazy {
    cursor: pointer;
}

img.preview {
    cursor: pointer;
}

.thumbnail {
    position: relative;
    min-height: 100px;
}

div.pageOptions {
    display: inline;
}

div.pageOptions a.btn {
    text-shadow: none;
}

.pointer {
    cursor: pointer;
}

/*Spotlight Overrides*/

#spotlight .header div {
    padding-right: 2.5rem;
}

#spotlight .footer {
    text-align: center !important;
    width: 100% !important;
}

/* Maintain 1:1 image ratio */
a.spotlight {
    position: relative;
    width: 100%;
}

    a.spotlight:before {
        content: "";
        float: left;
        padding-top: 100%;
    }

    a.spotlight img.lazy {
        float: left;
        width: 100% !important; 
    }

    a.spotlight img.preview {
        float: left;
        width: 100% !important;
    }
/* End maintain 1:1 image ratio */

.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    opacity: 0;
}

    .loader.show {
        opacity: 1;
    }

    .loader div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        /*background: #f4f4f4;*/
        background: #cccccc;
        animation: loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .loader div:nth-child(1) {
            left: 8px;
            animation-delay: -0.24s;
        }

        .loader div:nth-child(2) {
            left: 32px;
            animation-delay: -0.12s;
        }

        .loader div:nth-child(3) {
            left: 56px;
            animation-delay: 0;
        }

@keyframes loader {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

@media (max-width: 800px) {
    #spotlight .header div {
        width: 2.5rem !important;
    }
}