﻿html { /* Need for some Android browsers */
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
}

.navbar-default {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0);
}

    .navbar-default .navbar-nav > li > a {
        color: #000;
    }

        .navbar-default .navbar-nav > li > a:hover {
            background: rgba(2, 128, 128, 0.4);
            color: #fff;
        }

    .navbar-default .navbar-nav > .active > a {
        background: rgba(128, 128, 128, 0.3);
        color: #fff;
    }

body {
    background-color: #1b1c24;
    background: url('../images/full/site-back.jpg') center top no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100%; /* Need for some Android browsers */
    min-width: 100%; /* Need for some Android browsers */
}

.bgImg {
    /*background: url('../images/full/image-02-full.jpg') center center fixed no-repeat;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #1b1c24;
}

.bgGrey {
    background: none;
    background-color: #1b1c24;
}

.brd1px000 {
    border: 1px solid #000;
}

.fotorama__img {
    border: 1px solid #333 !important;
}

.fotorama__stage {
    /*border: 1px solid #ff0000 !important;*/
    /*margin-bottom: -56px;
    margin-top: 20px;*/
}

.fotorama__frame {
    /*border: 1px solid #aa0000 !important;*/
}

.fotorama__nav-wrap {
    /*border: 1px solid #333 !important;*/
}

.fotorama__fullscreen-icon {
    /*top: 70px;*/
    right: 3%;
    top: 6%;
    opacity: 0.7;
}

.fotorama {
    /*border: 1px solid rgba(128, 128, 128, 0.2);*/
    /*margin-top: -20px;*/
    top: 0px;
}

#ftGal01 {
    background-color: #1b1c24;
}

a > img {
    border: 1px solid #000;
}

.img-responsive {
    min-width: 48px;
}

.darken {
    background-color: rgba(28, 28, 36, 1);
}

/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-out 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-out 1;
    animation: fadeIn ease-out 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

@viewport {
    zoom: 1.0;
    width: extend-to-zoom;
}

@-ms-viewport {
    width: extend-to-zoom;
    zoom: 1.0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.btn-secondary {
    background-color: rgba(0,0,0,0);
}

    .btn-secondary:active,
    .btn-secondary:focus,
    .btn-secondary:hover {
        outline: 1px solid rgba(0,0,0,0.5);
        outline-offset: 0px;
    }

.btn-group-lg {
    font-weight: normal;
    color: #000;
}

.percent8 {
    width: 8%;
    margin: 1%;
}

.percent5 {
    width: 5%;
    margin: 1%;
}

.img-thumbnail {
    background-color: transparent;
    border: 1px solid #333;
    padding: 0px;
}

*:focus {
    outline: none;
}

a,
/*a:focus,*/
a:hover > .item {
    color: transparent;
    outline: 1px solid rgba(0, 0, 0, 0);
    outline-offset: 0px;
}

    a:focus {
        outline: thin dotted;
        outline: 1px solid rgba(0, 0, 0, 1);
        /*outline-offset: -2px;*/
        outline-offset: 0px;
    }

.btn:active, .btn.active {
    outline: 1px solid rgba(0,0,0,0.5);
    outline-offset: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button:focus, a:focus {
    outline: 1px solid rgba(0,0,0,0);
}

.btn.active.focus {
    outline: 1px solid rgba(0,0,0,0.5);
    outline-offset: 0px;
}

.add15pxbelow {
    margin-bottom: 15px;
}

.repeat-item.ng-enter,
.repeat-item.ng-leave {
    -webkit-transition: 0.5s linear all;
    transition: 0.5s linear all;
}

    .repeat-item.ng-enter,
    .repeat-item.ng-leave.ng-leave-active {
        opacity: 0;
    }

        .repeat-item.ng-leave,
        .repeat-item.ng-enter.ng-enter-active {
            opacity: 1;
        }

/**:focus {
    outline: none !important;
}*/