.cxImageSlider-Overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;


    background-color: rgba(0,0,0,0);
    display: none;
}

.cxImageSlider-Overlay.cxImageSlider-Overlay-Show {
    display: block;
    background-color: #E9EAEE;

    -webkit-animation: fadeIn .2s ease;
    animation: fadeIn .2s ease;
}

@-webkit-keyframes fadeIn{from{background-color: rgba(0,0,0,0)}to{background-color: #E9EAEE;}}
@keyframes fadeIn{from{background-color: rgba(0,0,0,0)}to{background-color: #E9EAEE;}}

.cxImageSlider-Header,
.cxImageSlider-ImageContainer,
.cxImageSlider-DescriptionContainer,
.cxImageSlider-ThumbContainer {
    position: relative;
    width: 100%;
    padding: 2vh;
    text-align: center;

    float: left;
}

.cxImageSlider-Header {
    height: 7vh;
    text-align: left;
    font-size: 3vh;
    line-height: 100%;
    border-bottom: 1px solid #FFF;
    color: #004E96;
}

.cxImageSlider-CloseIcon {
    float: right;
    cursor: pointer;
}

.cxImageSlider-CloseIcon svg {
    width: 3vh;
    height: 3vh;
}

.cxImageSlider-ImageContainer {  height: 79vh; }
.cxImageSlider-ImageContainer-WithDescription {  height: 65vh; }

.cxImageSlider-DescriptionContainer {
    overflow: auto;
    height: 14vh;

    display: none;
}
.cxImageSlider-ImageContainer-WithDescription ~ .cxImageSlider-DescriptionContainer { display: block; }

.cxImageSlider-DescriptionContainer p {
    text-align: center !important;
}

.cxImageSlider-ThumbContainer {
    height: 14vh;
    white-space: nowrap;
    border-top: 1px solid #FFF;
    overflow: hidden;
    overflow-x: auto;
}

.cxImageSlider-Thumb {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    width: 14vh;
    margin: 0 .5vh auto;
    cursor: pointer;
    overflow: hidden;
    overflow-x: auto;
}

.cxImageSlider-Thumb-Selected {
    border: 5px solid #004E96;
}

.cxImageSlider-Image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: auto; */
    background-size: contain;

    transition: all .3s ease;

    opacity: 0;
    display: none;
}

.cxImageSlider-Image-Show {
    opacity: 1;
    display: block;
}
