
#SlideShow {
    padding:0px;
    margin:0px;
    background-color: rgba(0, 0, 0, 0.7);
}
#SlideShow .modal-dialog {
    padding:0px;
    margin:0px;
    width: 100%;
    height: 100%;
    max-width: unset;
}
#SlideShow .modal-content {
    padding:0px;
    margin:0px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background-color: transparent;
}
#SlideShow .modal-header {
    border-bottom:none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 10%;
}
#SlideShow .modal-header .modal-title {
    width: 100%;
    text-align: center;
    color: #c9c9c9;
}
#vcards-app figcaption .filename {
    width: 100%;
    text-align: center;
}
#SlideShow .modal-header button {
    font-size: 30px;
    padding: 0px;
    text-shadow: none;
    color: #fff;
    cursor: pointer;
}
#SlideShow .modal-header .close {
    margin: 0px 0px 0px 20px;
}
#SlideShow .modal-header .download {
    color: #fff;
    font-size: 30px;
    margin: 0px 0px 0px auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    font-weight: 700;
    line-height: 1;
    opacity: .5;
}
#SlideShow .modal-header button:hover, #SlideShow .modal-header a.download:hover {
    opacity: 1;
}
#SlideShow .modal-body {
    margin: 0 auto;
    height: 80%;
    align-items: center;
    justify-content: center;
    display: flex;
}
#SlideShow .modal-body .modal-image {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    /* max-width: 100%;
     max-height: 100%;
     height: -webkit-fill-available;*/
}
#SlideShow .modal-body img {
    max-height: 100%;
}
#SlideShow .modal-footer {
    border-top: none;
    height: 10%;
}
#SlideShow .slide-nav {
    position: absolute;
    display: block;
    width: 100%;
    height: 80%;
    top:10%;
    z-index: 1000;
}
#SlideShow .back {
    display: block;
    width: 50%;
    float: left;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    display: flex;
}
#SlideShow .next {
    display: block;
    width: 50%;
    float: right;
    height: 100%;
    left: 50%;
    align-items: center;
    justify-content: flex-end;
    display: flex;
}
#SlideShow .back span, #SlideShow .next span {
    margin: 5%;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.9);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .5s;
    font-size: 20px;
    border-radius: 20px;
}

#SlideShow .back:hover span, #SlideShow .next:hover span {
    opacity: 1;
}

#SlideShow .fade-enter-active, #SlideShow .fade-leave-active {
    transition: opacity .2s;
}
#SlideShow .fade-enter, #SlideShow .fade-leave-to, #SlideShow .fade-leave-active {
    opacity: 0;
}
#SlideShow .slide-fade-enter-active {
    transition: all .1s ease;
}
#SlideShow .slide-fade-leave-active {
    transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
#SlideShow .slide-fade-enter, #SlideShow .slide-fade-leave-to, #SlideShow .slide-fade-leave-active {
    transform: translateX(10px);
    opacity: 0;
}
