﻿
/* RESET RULES
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
    background-image: none;
    background-color: #e9e9e9;
}

.active2 {
    color: white;
    font-weight: bold;
}


:root {
    --black: #1a1a1a;
    --white: #fff;
    --gray: #ccc;
    --darkgreen: #18846C;
    --lightbrown: antiquewhite;
    --darkblack: rgba(0,0,0,0.8);
    --minRangeValue: 280px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
}

body {
    margin: 50px 0;
    color: var(--black);
    font: 1rem/1.3 sans-serif;
}

.gallery {
    padding: 0 2rem;
}

.container {
    max-width: 1030px;
    margin: 0 auto;
}

.d-none {
    display: none;
}


/* TOOLBAR
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .toolbar .search-wrapper {
        position: relative;
    }

    .toolbar input[type="search"] {
        font-size: 1.1rem;
        border: none;
        border-bottom: 1px solid;
        padding-bottom: 3px;
    }

    .toolbar ::placeholder {
        color: var(--gray);
    }

    .toolbar .counter {
        position: absolute;
        left: 0;
        top: calc(100% + 5px);
        font-size: 0.9rem;
        color: var(--gray);
    }

.view-options {
    display: flex;
    align-items: center;
}

    .view-options li:not(:last-child) {
        margin-right: 1.2rem;
    }

    .view-options button {
        padding: 2px;
        border: 3px solid transparent;
    }

    .view-options .active button {
        border-color: var(--darkgreen);
    }


/* IMAGE LIST
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
.image-list {
    margin: 3rem 0;
}

    .image-list li {
        background: none;
        color: var(--darkblack);
    }

    .image-list p:first-child {
        font-weight: bold;
        font-size: 1.15rem;
    }

    .image-list p:last-child {
        margin-top: 0.5rem;
    }


/* GRID VIEW
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid-view {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(var(--minRangeValue), 1fr));
}

    .grid-view figcaption {
        padding: 1rem;
    }


/* LIST VIEW
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
.list-view li + li {
    margin-top: 1.5rem;
}

.list-view figure {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: 150px 1fr;
    align-items: center;
}


/* FOOTER
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
    font-size: 1rem;
    padding: 0 1.5rem;
    text-align: right;
}

    footer span {
        color: #e31b23;
    }

/* MQ
        –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
    .toolbar input[type="range"] {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .grid-view li {
        text-align: center;
        padding: 0.5rem;
    }

    .grid-view figcaption {
        padding: 0.5rem 0 0;
    }
}

.polaroid {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    padding-top: 20px;
    text-align: center;
    cursor: pointer;
}


.polaroidImage {
    transition: .5s ease;
    backface-visibility: hidden;
    opacity: 1;
}

.polaroidImage2 {
    transition: .5s ease;
    backface-visibility: hidden;
    opacity: 1;
}


.polaroidImage:hover {
    opacity: 0.3;
}

figure:hover .middle {
    opacity: 1;
}

.text {
    background-color: white;
    color: black;
    font-size: 16px;
    padding: 5px;
}

/** SPINNER CREATION **/

.loader {
    position: relative;
    text-align: center;
    margin: 15px auto 35px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 10px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}


/** MODAL STYLING **/

.modal-content {
    border-radius: 0px;
    box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.7);
}

.modal-backdrop.show {
    opacity: 0.75;
}

.loader-txt {
    p;

{
    font-size: 13px;
    color: #666;
    small;

{
    font-size: 11.5px;
    color: #999;
}

}
}

#output {
    padding: 25px 15px;
    background: #222;
    border: 1px solid #222;
    max-width: 350px;
    margin: 35px auto;
    font-family: 'Roboto', sans-serif !important;
    p .subtle;

{
    color: #555;
    font-style: italic;
    font-family: 'Roboto', sans-serif !important;
}

h4 {
    font-weight: 300 !important;
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif !important;
}

p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.9em;
    b;

{
    text-transform: uppercase;
    text-decoration: underline;
}

}
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

    .active, .accordion:hover {
        background-color: #ccc;
    }

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    font-size: 25px; /* Increase font size */
}



.row {
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
    -ms-flex: 25%; /* IE 10 */
    flex: 25%;
    padding: 0 4px;
}

    .column img {
        margin-top: 8px;
        vertical-align: middle;
    }

#stickThis.stick {
    margin-top: 10px;
    position: fixed;
    top: 0;
    z-index: 8888;
    border: 0px solid red;
    width: auto;
}


#fotoMobileNavi {
    display: none;
}

#IMGDetailFoto {
    max-width: 350px;
    border: 0px solid green;
}

@media only screen and (max-width: 850px) {
    #fotoMobileNavi {
        display: block;
    }

    #IMGDetailFoto {
        width: 90%;
        max-width: 300px;
        border: 0px solid orange;
    }
}

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    font-size: 20px;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-no-suggestion {
    padding: 2px 5px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        font-weight: bold;
        font-size: 16px;
        color: #000;
        display: block;
        border-bottom: 1px solid #000;
    }
