/*Plugin de popup*/
.pluginpopup {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pluginpopup .cont {
    width: 645px;
    height: auto;
    position: relative;
}

.pluginpopup .cont .img {
    width: 100%;
    height: auto;
    float: left;
    box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.3);
}

.pluginpopup .cont .img img {
    max-height: 97vh;
}

.pluginpopup .cont .fecharpluginpoup {
    width: 20px;
    height: 20px;
    float: right;
    top: 10px;
    right: 10px;
    padding: 20px;
    color: red;
    font-size: 17px;
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-weight: bold;
    z-index: 99;
}

.pluginpopup .cont .fecharpluginpoup:hover {
    color: #fff;
    background-color: red;
}


@media all and (max-width: 999px) {

    .pluginpopup {
        padding: 10px;
    }

    .pluginpopup .cont {
        width: 100%;
    }
}