﻿.ImageGalleryDetailsContainer {
    font-family: Oswald,arial,helvetica,sans-serif;
    font-weight: 100;
}
.ImageGalleryContainer {
    font-family: Roboto,arial,helvetica,sans-serif;
}

.ImageGalleryContainer :focus{
    outline:2px solid #e0e0e0;
}

#at20mc {
    display: none !important;
}

#at-expanded-menu-host .at-expanded-menu-mask {
    background-color: rgba(99, 99, 99, 0.9) !important;
}

#at-expanded-menu-host .at-expanded-menu-fade {
    display: none;
}

.ImageGalleryDetailsContainer .loader-container {
    width: 100vw;
    height: 100%;
    margin:0;
    padding: 0;
    position: relative;
}

.ImageGalleryDetailsContainer .loader {
    border: 16px solid #fff; /*  white */
    border-top: 16px solid #bababa; /* grey */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 45%;
    left: 45%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gallery_container-all {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    max-width: 2000px;
    padding-bottom: 20px;
}

.gallery_container-all .gallery_container {
    width: calc(20% - 6px);
    max-width: 500px;
    overflow: hidden;
    margin: 3px;
    padding: 0;
    display: inline-block;
    position: relative;
    float: none;
    background-color: rgba(28, 36, 73, 1);
    animation: fade-in-move-up 1.5s;
}

.gallery_container-all .gallery_container a, 
.gallery_container-all .gallery_container a:hover, 
.gallery_container-all .gallery_container a:visited {
    color: #fff;
    text-decoration: none;
}

.gallery_container-all .gallery-image {
    width: 100%;
    transition-duration: 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
}

.gallery_container-all .gallery-image:after {
    padding-top: 67%;
    display: block;
    content: '';
}

.gallery_container-all .gallery_container .caption-background-color {
    background-color: rgb(0, 0, 0);
    opacity: 0;
    transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    -webkit-transition: opacity .6s;
    -ms-transition: opacity .6s;
}

.gallery_container-all .gallery_container.hover .caption-background-color,
.gallery_container-all .gallery_container:hover .caption-background-color,
.gallery_container-all .gallery_container:focus .caption-background-color {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    cursor: pointer;
}

.gallery_container-all .gallery_container .caption-background-color:hover {
    cursor: pointer;
}

.gallery_container-all .gallery_container:hover .gallery-image,
.gallery_container-all .gallery_container:focus .gallery-image{
    transform: scale(1.2);
    transition-duration: 0.3s;
}

.gallery_container-all .caption {
    position: absolute;
    display: none;
    cursor: pointer;
    bottom: 6%;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    letter-spacing: .03em;
}

.gallery_container-all .gallery_title {
    color: #fff;
    width: 100%;
    font-size: .9rem;
    flex: 0 0 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery_container-all .gallery_text {
    width: 100%;
    flex: 0 0 100%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .65rem;
    font-weight: normal;
    margin-bottom: 5px;
}

@media all and (-ms-high-contrast:none) {
    *::-ms-backdrop, .gallery_container-all .gallery_title, .gallery_container-all .gallery_text {
        max-height: calc( 3 * 1.3em );
        overflow: hidden;
    }
}
.gallery_container-all .gallery_interact1 .gallery_detail1
.gallery_container-all .gallery_interact1 .gallery_download1,
.gallery_container-all .gallery_interact1 .gallery_share1 {
    font-size: .65rem;
    text-transform: uppercase;
}
.gallery_container-all .gallery_interact1 .a2a_kit {
    line-height: inherit !important;
}

.gallery_container-all .gallery_interact .fa-share-alt {
    font-size: .6rem;
}

.gallery_container-all .gallery_container:hover .caption, 
.gallery_container-all .gallery_container:focus .caption{
    display: block;
}

.gallery_container-all .gallery_container span {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 5px;
    font-size: .65rem;
    text-transform:uppercase
}

.gallery_container-all figcaption.show{
    display:block;
}

@keyframes fade-in-move-up {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 2100px) {
    .gallery_container-all .gallery_container {
        width: 19.7%;
    }
}
@media (min-width: 1620px) {
    .gallery_container-all {
        margin: 0 auto;
    }
}

@media (max-width: 1450px) {

    .gallery_container-all .gallery_container {
        width: calc(25% - 6px);
    }

    .gallery_container-all .gallery_interact1 .gallery_detail1
    .gallery_container-all .gallery_interact1 .gallery_download1,
    .gallery_container-all .gallery_interact1 .gallery_share1 {
        margin-right: 20px;
        margin-left: 0;
    }

    .gallery_container-all {
        margin-left: 2px;
    }
}

@media  (max-width: 1125px) {
    .gallery_container-all .gallery_container {
        width: calc(33.33% - 6px);
    }
}

@media (max-width: 991px) {
    .gallery_container-all .gallery_container:hover .gallery-image {
        transform: scale(1);
        transition-duration: 0s;
    }

    .gallery_container-all .gallery_container .caption {
        display: block;
    }

    .gallery_container-all .gallery_container:hover .caption-background-color {
        opacity: 0.9;
        top: 25%;
        bottom: 0;
        height: 75%;
        background: linear-gradient(to top, rgba(0, 0, 0, .9), 55%, rgba(255, 255, 255, 0));
    }

    .gallery_container-all .gallery_container .caption-background-color {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 75%;
        background: linear-gradient(to top, rgba(0, 0, 0, .7), 55%, rgba(255, 255, 255, 0));
        opacity: 1;
        cursor: pointer;
    }

    .gallery_container-all .gallery_interact1 .gallery_detail1
    .gallery_container-all .gallery_interact1 .gallery_download1,
    .gallery_container-all .gallery_interact1 .gallery_share1 {
        font-size: .65rem;
    }

    .gallery_container-all .gallery_container .gallery_text {
        display: none;
    }

    .gallery_container-all .gallery_container:hover .gallery_text {
        display: none;
    }

    .gallery_container-all .gallery_container .gallery_title {
        -webkit-line-clamp: 2;
        font-size: 1.2rem !important;
        line-height: 1.45rem;
        text-transform:uppercase;
    }
}

@media (max-width: 885px) {
    .gallery_container-all .gallery_container {
        width: calc(50% - 6px);
        max-width: 100%;
    }
}


@media (max-width: 625px) {
    .gallery_container-all .intro {
        margin-top: 40px;
    }

    .gallery_container-all {
        margin-left: 0;
        padding-left: .15rem;
    }

    .gallery_container-all .gallery_container {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery_container-all .gallery_text {
        display: none;
    }

    .gallery_container-all .caption {
        bottom: 6%;
    }

    .gallery_container-all .gallery_container:hover .gallery-image {
        transform: none;
    }

    .gallery_container-all .gallery_container:hover .caption-background-color {
        background-color: rgba(0, 0, 0, .0);
    }
}

@media all and (max-width:625px) and  (-ms-high-contrast:none) {
    *::-ms-backdrop, .gallery_container-all .gallery_title, .gallery_container-all .gallery_text {
        max-height: calc( 3 * 1.3em );
        overflow: hidden;
    }
}

@media only screen and (max-width: 320px) {
    .gallery_container-all .gallery_title {
        font-size: 1rem;
    }
}


/**************************************************************
 *Filter CSS 
 ***/

/****
    Container Styles
*/
.advanced-search {
    background: rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.inner {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
}

.cellinner {
    max-width: 100%;
    min-width: 33%;
    width: 100%;
    flex-basis: auto;
    display: flex;
    flex-grow: 1;
    margin-bottom: 15px;
    padding-right: 15px;
}

.field-outer {
    width: 100%;
}

/****
    Input Styles
*/

.cellinner input {
    width: 100%;
    margin-bottom: 0 !important;
}

.advanced-search .uneditable-input,
.advanced-search input[type=color],
.advanced-search input[type=date],
.advanced-search input[type=datetime-local],
.advanced-search input[type=datetime],
.advanced-search input[type=email],
.advanced-search input[type=month],
.advanced-search input[type=number],
.advanced-search input[type=password],
.advanced-search input[type=search],
.advanced-search input[type=tel],
.advanced-search input[type=text],
.advanced-search input[type=time],
.advanced-search input[type=url],
.advanced-search input[type=week],
.advanced-search select,
.advanced-search textarea {
    height: 1.6rem;
    font-size: 0.7rem;
    background: #f9f9f9;
    padding: 0.35rem 8px;
    border: 1px solid #636363;
    color: #636363;
    font-weight: normal;
    margin: 0;
}

.advanced-search input[type="text"]::placeholder {
    color: #707070;
    font-weight: normal;
}

/* Date picker styles */
.advanced-search .date.startend-date-picker {
    display: flex;
    justify-content: space-between;
}

/****
    Advanced Option Styles
*/

.advanced-options {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}

.advanced-search label.show-advanced {
    color: #636363;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    margin: -1.3rem 0 0 0;
    float: left;
}

#advanced-check {
    width: 0px;
}

    #advanced-check:focus + .show-advanced {
        text-decoration: underline;
        border-radius: 5px;
    }

.show-advanced:hover {
    text-decoration: underline;
}

@media(max-width: 768px) {
    .advanced-options-mobile {
        max-height:0;
        margin-bottom: 0;
        transition: max-height .2s, margin .2s;
        overflow:hidden;
        position:absolute; left:-999rem;
        visibility: hidden;
    }
    .advanced-options-mobile.open {
        display:flex;
        margin-bottom: 15px;
        max-height:100px;
        overflow:unset;
        position:relative;left:0;
        visibility: visible;
    }
}

/****
    Search button/container styles
*/

.search-container {
    background: #636363;
    align-self: flex-end;
    margin-bottom: 0;
}

.search-button,
.search-button:visited,
.search-button:link {
    height: 1.9rem;
    padding: 9px 15px;
    color: #fff;
    transition: background 0.2s linear, box-shadow 0.2s linear;
}

.search-button:hover,
.search-button:focus,
.search-button:active {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(209,209,209,.6);
    outline: none;
    color: #fff;
    text-decoration: none;
    background: hsla(0, 0%, 100%, .1);
    transition: background 0.2s linear, box-shadow 0.2s linear;
}

.search-label {
    white-space: nowrap;
    margin: 5px 5px 0 0;
    line-height: 1rem;
}

/****
    Media Queries
*/

@media (min-width: 576px) {
    .cellinner {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .inner {
        width: 100%;
    }

    .cellinner {
        width: 33%;
    }

    .search-container {
        margin-bottom: 15px;
        margin-left: 15px;
    }

    .search-button,
    .search-button:visited,
    .search-button:link {
        padding: 7px 12px;
        height: 1.6rem;
    }

    .advanced-search label.show-advanced {
        float: none;
        margin: 0;
    }
}
/***
    Scroll Bar Styles
*/
.advanced-search * {
    /* stylelint-disable property-no-unknown */
    scrollbar-width: auto;
    scrollbar-color: #757575 #636363;
    /* stylelint-enable */
}

.advanced-search *::-webkit-scrollbar {
    width: 6px;
}

.advanced-search *::-webkit-scrollbar-track {
    background: #636363;
}

.advanced-search *::-webkit-scrollbar-thumb {
    background-color: #79797a;
    border-radius: 20px;
    border: 3px solid transparent;
}

/***
    Tagit Override Styles
*/

/* Style for tag input UI */
.advanced-search .ui-widget.ui-widget-content.tagit {
    border: 1px solid #636363;
    border-radius: 0;
    min-height: 1.6rem;
    margin: 0;
    background: #f9f9f9;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -ms-overflow-style: none;
    /* stylelint-disable property-no-unknown */
    scrollbar-width: none;
    /* stylelint-enable */
}

.advanced-search .ui-widget.ui-widget-content.tagit::-webkit-scrollbar {
    display: none;
}

.advanced-search ul.tagit li.tagit-new {
    display: inline;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Style for the actual tag itself after it's inputted */
.advanced-search ul.tagit li.tagit-choice {
    padding: 0.1rem;
    border: none;
    background: #E0DEDE;
    align-items: center;
    border-radius: 3px;
    display: flex;
    margin: 0 0 0 8px;
}

/* Style for the tag's text */
.advanced-search ul.tagit li.tagit-choice .tagit-label:not(a) {
    font-size: 0.7rem;
    font-weight: normal;
    color: #636363;
    white-space: nowrap;
}

/* Close/delete button for the tag ("X button") */
.advanced-search ul.tagit li.tagit-choice a.tagit-close {
    margin: -.25rem 0 0 0.1rem;
    font-size: 0.7rem;
    position: static;
}

/* Text input for inputing tags */
.advanced-search ul.tagit input[type="text"] {
    padding: 0 0 0 8px;
    color: #636363;
    font-weight: normal;
    height: 1.5rem;
}

/* Tagit autocomplete styles */

/* Autocomplete container */
ul.tagit-autocomplete.ui-widget-content {
    background: #636363;
    color: #fff;
    font-size: 0.7rem;
    padding: 0;
    border: none;
}

/* Autocomplete item */
ul.tagit-autocomplete div.ui-meu-item-wrapper {
    padding: 0.3rem 0.4rem;
}

/* Autocomplete item hover state */
ul.tagit-autocomplete div.ui-menu-item-wrapper.ui-state-active {
    border: none;
    background: hsla(0, 0%, 100%, 0.25);
    margin: 0;
}


/************************************
    jQuery UI Datepicker Overrides
*/

.ui-datepicker table.ui-datepicker-calendar {
    display: table;
}

.ui-datepicker {
    width: 15em;
}

.ui-datepicker.ui-corner-all {
    border-radius: 5px;
}

.ui-datepicker .ui-datepicker-calendar th {
    padding: .2em .3em;
    text-align: center;
    font-weight: normal;
    border: 0;
    font-size: 0.7rem;
    color: #ccc;
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-default {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 5px;
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-hover {
    border: none;
    background: #bddfff;
    font-weight: normal;
}

.ui-datepicker .ui-datepicker-calendar td a.ui-state-highlight {
    border: none;
    background: #636363;
    font-weight: normal;
    color: #fff;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
}

.ui-datepicker.ui-widget.ui-widget-content {
    padding-right: 0;
    padding-left: 0;
    width: 10.7em;
}

div.ui-datepicker div.ui-datepicker-header:after,
div.ui-datepicker div.ui-datepicker-header:before {
    content: none;
}

div.ui-datepicker div.ui-datepicker-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    color: #636363;
}

.ui-datepicker-calendar thead {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    order: 1;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    order: 3;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
    order: 2;
    margin: 0;
    font-size: 0.9rem;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
    background: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
    background: none;
    font-weight: 900;
    /* stylelint-disable font-family-no-missing-generic-family-keyword */
    font-family: 'Font Awesome 5 Free';
    /* stylelint-enable */
    content: '\f053';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
    background: none;
    font-weight: 900;
    /* stylelint-disable font-family-no-missing-generic-family-keyword */
    font-family: 'Font Awesome 5 Free';
    /* stylelint-enable */
    content: '\f054';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
}

.advanced-search .datepicker-wrapper {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.advanced-search .startend-date-picker .datepicker-wrapper:first-of-type {
    margin-right: 15px;
}

.advanced-search .datepicker-wrapper::after {
    /* stylelint-disable font-family-no-missing-generic-family-keyword */
    font-family: "Font Awesome 5 Free";
    /* stylelint-enable */
    content: '\f073';
    color: #707070;
    font-size: 1rem;
    position: absolute;
    top: 3px;
    right: 8px;
    visibility: visible;
}

/* Styling the loader */
.spinner3 > div {
    background-color: #636363;
}

/***
    Clear Filters and Results Styles
*/

.results-container {
    background: rgba(0, 0, 0, 0.05);
    padding: 0 0 15px 0;
    text-align: center;
}

.clear-filter {
    font-size: 0.7rem;
    text-decoration: underline;
    cursor: pointer;
}

.pager-metrics {
    font-size: 0.7rem;
}

.results-container .pipe {
    padding: 0 10px 0 10px;
}

/**************************/
/**** Detail Page ********/

.GWFImageDiv .flexslider {
    position: relative;
    width: 79%;
    margin: 0 auto;
}

picture.fixed-aspect {
    display: block;
    position: relative;
    padding-bottom: 57%;
}

picture.fixed-aspect img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%; /*overidden inline if provided*/
}

picture.fixed-aspect.portrait .slide-bg-blur {
    position: absolute;
    top: -20rem;
    right: 1rem;
    left: 1rem;
    bottom: -20rem;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    background-size: cover;
    background-position: 50%;
}

.bg-image-fallback {
    background-size: cover;
}

picture.fixed-aspect.portrait .bg-image-fallback,
picture.fixed-aspect.portrait img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.GWFImageDiv .nav-spacing {
    margin: 0 10px 10px 10px;
}

.share-container {
    text-align: left;
    display: flex;
    text-transform: uppercase;
}

.share-container .a2a_kit {
    line-height: inherit !important;
}

.image-detail-body {
    max-width: 79%;
    margin: 40px auto;
    color: #636363;
}

.details-image-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.9rem;
    padding-top: .7rem;
}

.gwf-details-download {
    margin-right: 20px;
}

.author-container, .virin-container, .filesize-container {
    margin-right: 2rem;
    white-space: nowrap;
    padding-bottom: 5px;
}

.camera-readme-info {
    display:flex;
    flex-wrap:wrap;
    background-color: rgba(0,0,0,.05);
    padding: 2rem 1rem 1rem 1rem;
    border-bottom: 1px solid #707070;
    position: relative;
    margin-top: 65px;
    margin-bottom: 32.5px;
}

.camera-readme-info .cri-header {
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    top: -37px;
}

.details-gallery-link a,
.details-gallery-link a:visited {
    font-size: 1.5rem;
    font-weight: 300;
    color: #707070;
}

.details-gallery-link a:hover{
    color: #636363;
    text-decoration: none;
    border: none;
}

.dcd-flex{
    flex:1;
    padding-right: 1rem;
}

.photo-attributes-list {
    display: flex;
    flex-wrap: wrap;
}

.GWFImageDiv .flex-direction-nav {
    position: absolute;
    top: 0;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
}

.GWFImageDiv .flex-direction-nav:hover {
    background: linear-gradient( to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) );
}

.GWFImageDiv .flex-direction-nav li {
    flex: 0 0 33%;
}

.GWFImageDiv .index-counter {
    text-align: center;
    position: relative;
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
}

.GWFImageDiv .flex-index {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.readmore:after {
    content: '+';
    font-size: 1rem;
    font-weight: bold;
}

.readmore.opened:after {
    content: '-';
}

.GWFImageDiv .faux-nav {
    display: flex;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: #757575;
    color: #fff;
}

.GWFImageDiv .faux-nav span {
    flex: 1;
}

.GWFImageDiv .faux-nav .faux-counter {
    text-align: center;
}

.GWFImageDiv .faux-nav .faux-next{
    text-align: end;
}

.GWFImageDiv .faux-nav span:first-child:hover,
.GWFImageDiv .faux-nav span:last-child:hover {
    cursor: pointer;
}

.GWFImageDiv .flex-prev, .GWFImageDiv .flex-next {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .75rem;
}

.GWFImageDiv .flex-prev:before {
    font-weight: 900;
    color: #fff !important;
}

.GWFImageDiv .flex-next:after {
    font-weight: 900;
    color: #fff !important;
}

.GWFImageDiv .ig-slider-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.GWFPager .listing-pagination ul {
    padding: 0 0 20px 0;
}

.GWFImageDiv .ig-slider-image:after {
    padding-top: 67%;
    display: block;
    content: '';
}

.GWFImageDiv .gwf-details-download, .GWFImageDiv .gwf-details-share {
    display: inline-block;
    font-size: .85rem;
    text-transform:uppercase;
}

.GWFImageDiv .gwf-details-download {
    margin-left: 2.5rem;
}

.photo-release.slideup {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    opacity: 0;
}

.photo-release.slidedown {
    max-height: 100%;
    overflow-y: hidden;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    opacity: 1;
}

.readmore, .readmore.opened {
    margin-bottom: 16px;
    display: inline-block;
    text-transform: uppercase;
}

 p#spanCaption {
    letter-spacing: .05rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.readmore {
    cursor: pointer;
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .05rem;
}

.detail-font-family {
    font-family: Oswald,arial,helvetica,sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.details-content h1, .details-content h4 {
    color: inherit;
}

.details-content h1 {
    font-size: 1.75rem;
}

p.photo-attribute.title {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.photo-attributes-list p.value[class^=photo-] {
    font-size: .85rem;
    font-weight: 300;
    letter-spacing: .05rem;
}

.details-share-link, .details-download-link,
.details-share-link:hover, .details-download-link:hover,
.details-share-link:visited, .details-download-link:visited {
    text-decoration: none;
    color: #636363;
}

.author-container #author, .virin-container #virin, .filesize-container #sizemb {
    letter-spacing: 0.1rem;
    font-weight: 300;
    margin-left: 10px;
}

p.photo-attribute-none {
    font-size: 1.75rem;
}

p.photo-release {
    letter-spacing: .01rem;
    line-height: 1.5rem;
    font-weight: 200;
    font-size: 1rem;
    margin-bottom: .5rem;
    min-height: 260px;
}

.photo-release a {
    color: #757575;
}

@media (max-width: 1279px) {
    .GWFImageDiv .ig-slider-image {
        height: calc(100vh - 75px);
    }
}

@media (max-width: 992px) {
    .GWFImageDiv .author-container, .GWFImageDiv .virin-container, .GWFImageDiv .filesize-container {
        flex: 0 1 100%;
    }

    .GWFImageDiv .flex-direction-nav {
        background: none;
    }

    .share-container {
        text-align: left;
        padding-bottom: 30px;
    }

    .GWFImageDiv .ig-slider-image {
        height: auto;
    }

    .GWFImageDiv .flexslider {
        width: 94%;
    }

    picture.fixed-aspect {
        padding-bottom: 67%;
    }



}

@media (max-width: 768px) {
    .GWFImageDiv .flex-prev, .GWFImageDiv .flex-prev:hover, .GWFImageDiv .flex-prev:focus, .GWFImageDiv .flex-prev.flex-disabled,
    .GWFImageDiv .flex-prev.flex-disabled:visited, .GWFImageDiv .flex-prev.flex-disabled:active,
    .GWFImageDiv .flex-prev.flex-disabled:hover {
        margin-left: 25px;
    }

    .GWFImageDiv .flex-next, .GWFImageDiv .flex-next:hover, .GWFImageDiv .flex-next:focus, .GWFImageDiv .flex-next.flex-disabled,
    .GWFImageDiv .flex-next.flex-disabled:visited, .GWFImageDiv .flex-next.flex-disabled:active,
    .GWFImageDiv .flex-next.flex-disabled:hover {
        margin-right: 20px;
    }

    .dcd-flex {
        flex: 1 0 100%;
    }
}

@media(max-width: 375px){
    .image-detail-body {
        max-width: 90%;
    }
}

@media(max-width: 320px) {
    .GWFImageDiv .flex-next, .GWFImageDiv .flex-next:hover, .GWFImageDiv .flex-next:focus, .GWFImageDiv .flex-next.flex-disabled,
    .GWFImageDiv .flex-next.flex-disabled:visited, .GWFImageDiv .flex-next.flex-disabled:active,
    .GWFImageDiv .flex-next.flex-disabled:hover {
        margin-right: 30px;
    }

    p.photo-release {
        max-width: 16rem;
        word-break: break-word;
    }
}

/*flex slider stuff*/
.flex-control-nav {
    position: absolute;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.flex-control-nav li {
    margin: 0 5px;
}

.flex-control-nav a {
    text-indent: -999rem;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    opacity: .6;
    height: .9rem;
    width: .9rem;
    cursor: pointer;
}

.flex-control-nav a.flex-active {
    opacity: 1;
}

@media(min-width: 1025px) {
    .flex-control-nav {
        display: none;
    }
}

 .flex-prev,
 .flex-next {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20%;
    display: none;
    opacity: 0;
    text-indent: -999rem;
    transition: opacity .2s;
}

 .flex-next {
    right: 0;
    left: auto;
}

    .flex-prev::before,
    .flex-next::before {
    content: "\f053";
    display: block;
    height: 2rem;
    width: 2rem;
    position: absolute;
    left: 35%;
    top: 50%;
    margin-top: -1rem;
    margin-left: -1rem;
    /* stylelint-disable font-family-no-missing-generic-family-keyword */
    font: 700 2rem/1 "Font Awesome 5 Free";
    /* stylelint-enable font-family-no-missing-generic-family-keyword */
    text-align: center;
    text-indent: 0;
    color: #fff;
    transition: left .2s, right .2s;
}

.flex-next::before {
    content: "\f054";
    left: auto;
    right: 35%;
    margin-left: auto;
    margin-right: -1rem;
}

 .flex-prev:hover::before {
    left: 30%;
}

 .flex-next:hover::before {
    right: 30%;
}

@media(min-width: 992px) {
     .flex-prev,
     .flex-next {
        display: block;
    }

    :hover .flex-prev,
    :hover .flex-next {
        opacity: .35;
    }

     .flex-prev:hover,
     .flex-next:hover {
        opacity: .9;
    }
}

 .flex-disabled {
    display: none;
}

div#pnlImageDiv {
    padding: 40px 0 0;
    background: rgb(99,99,99);
    background: linear-gradient( 0deg, rgba(99,99,99,0) 0, rgba(99,99,99,0) 120px, rgba(99,99,99,1) 71px,rgba(99,99,99,1) 100%);
}

/*** Start Progess Bar**/
@-webkit-keyframes loader {
    0% {
        width: 0;
    }

    20% {
        width: 10%;
    }

    25% {
        width: 24%;
    }

    43% {
        width: 41%;
    }

    56% {
        width: 50%;
    }

    66% {
        width: 52%;
    }

    71% {
        width: 60%;
    }

    75% {
        width: 76%;
    }

    94% {
        width: 86%;
    }

    100% {
        width: 100%;
    }
}

@keyframes loader {
    0% {
        width: 0;
    }

    20% {
        width: 10%;
    }

    25% {
        width: 24%;
    }

    43% {
        width: 41%;
    }

    56% {
        width: 50%;
    }

    66% {
        width: 52%;
    }

    71% {
        width: 60%;
    }

    75% {
        width: 76%;
    }

    94% {
        width: 86%;
    }

    100% {
        width: 100%;
    }
}

.theprogress-bar span {
    display: block;
}

.thebar {
    background: rgba(0, 0, 0, 0.075);
}

.theprogress {
    -webkit-animation: loader 8s ease infinite;
    animation: loader 8s ease infinite;
    background: #757575;
    color: #fff;
    padding: 5px;
    width: 0;
}

.theprogress-bar {
    border-radius: 60px;
    overflow: hidden;
    width: 100%;
    left: 47%;
    right: 50%;
    max-width: 10%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}
/*** End Progress Bar***/

/********/
.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
}

.gallery_container:hover .content-details,
.gallery_container.hover .content-details,
.gallery_container:focus .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h1 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.content-details div {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}
/********/