.zoomify-container-active .header{
    z-index: -1;
}
.zoomify-container{
    min-width: 300px;
    min-height: 410px;
    overflow: hidden;
    display: none;
}
.zoomify-container.active{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 66, 68, .94);
    z-index: 9999;
    display: block;
}
.zoomify-item{
    width: 100%;
    height: 100%;
}
.zoomify-toolbar{
    position: fixed!important;
    top: auto;
    left: calc(50% - 75px);
    right: auto;
    bottom: 0;
    background: #292C2D!important;
    z-index: 9999;
    display: flex!important;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
.zoomify-toolbar{
    opacity: 1!important;
}
.zoomify-toolbar-item{
    width: 50px;
    height: 50px;
    display: inline-flex!important;
    align-items: center;
    justify-content: center;
    position: relative!important;
    cursor: pointer;
    top: 4px;
}
.zoomify-toolbar-item img{
    max-height: 30px;
    max-width: 46px;
    position: absolute!important;
    top: auto!important;
    left: auto!important;
}
.zoomify-toolbar-item:nth-child(4){
    display: none!important;
}
.zoomify-toolbar-item:nth-child(3) img{
    width: 32px;
}
.zoomify-toolbar{
    height: 50px;
}
.zoomify-close{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 45px;
    height: 45px;
    background: #292C2D;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
}
.zoomify-close svg{
    transition: all .3s;
    fill: #B7BBBC!important;
}
.zoomify-close:hover svg{
    transition: all .3s;
    fill: #fff!important;
}
.zoomify-arrows{
    position: fixed;
    display: flex;
    z-index: 999;
    bottom: 0;
    left: calc(50% + 25px);
}
.zoomify-prev,
.zoomify-next{
    width: 50px;
    height: 50px;
    background: #292C2D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.zoomify-prev svg,
.zoomify-next svg{
    fill: #B7BBBC;
}
.zoomify-prev:hover svg,
.zoomify-next:hover svg{
    fill: #fff;
}
.zoomify-slider .zoomify-toolbar{
    left: calc(50% - 125px);
}