/**
 * EasyZoom core styles
 */

@font-face {
    font-family: HelveticaLTStd_REGULAR;
    src: url(fonts/HelveticaLTStd_REGULAR.otf);
}
.contenedor_img_productos_detalle {
    width: 100%;
    padding: 0px 25px;
    text-align: center;
}
.easyzoom {
    position: relative;
    /* 'Shrink-wrap' the element */
    display: block;
    *display: inline;
    *zoom: 1;
    width: max-content;
    margin: 0 auto
}
.easyzoom img {
    vertical-align: bottom;
}
.easyzoom.is-loading img {
    cursor: progress;
}
.easyzoom.is-ready img {
    cursor: crosshair;
    max-width: unset;
}
.easyzoom.is-error img {
    cursor: not-allowed;
}
.easyzoom-notice {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 150;
    width: 300px;
    margin: auto;
    line-height: 2em;
    text-align: center;
    background: #FFF;
    box-shadow: 0 0 10px #888;
    background-color: #222222;
    color: white;
    padding: 5px 20px;
    font-family: HelveticaLTStd_REGULAR;
    display: none;
}
.easyzoom-flyout {
    position: absolute;
    z-index: 10;
    overflow: hidden;
    background: #FFF;
}
/**
 * EasyZoom layout variations
 */

.easyzoom--overlay .easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*.easyzoom--overlay .easyzoom-flyout img {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    height: 100%;
}*/

.easyzoom--adjacent .easyzoom-flyout {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    margin-left: 20px;
}
.thumbnails {
    overflow: hidden;
    margin: 1em 0;
    padding: 1em;
    height: auto;
    text-align: center;
}
.thumbnails li {
    display: inline-block;
    width: 100px;
    height: 110px;
    margin: 0 5px;
}
.thumbnails img {
    display: block;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid;
    border-color: #e4e4e4;
    opacity: 0.5;
}
.toggle {
    display: block;
    margin: 10px auto 1.5em;
}
@media (max-width: 575px) {
    .easyzoom {
        width: 90%;
    }
    .thumbnails li {
        width: 25%;
    }
}
@media screen and (max-width: 450px) {
    .contenedor_img_productos_detalle {
        padding: 0px;
    }
}