﻿.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card-panel {
    transition: box-shadow .25s;
    padding: 20px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
}

.card {
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    transition: box-shadow .25s;
    border-radius: 2px;
}

    .card .card-title {
        color: #ff0000;
        font-size: 10px;
        font-weight: bold;
    }

        .card .card-title.activator {
            cursor: pointer;
        }

    .card.small, .card.medium, .card.large {
        position: relative;
    }

        .card.small .card-image, .card.medium .card-image, .card.large .card-image {
            overflow: hidden;
        }

        .card.small .card-content, .card.medium .card-content, .card.large .card-content {
            overflow: hidden;
        }

        .card.small .card-action, .card.medium .card-action, .card.large .card-action {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .card.small {
        height: 230px; /*300*/
    }

        .card.small .card-image {
            height: 170px; /*150*/
        }

        .card.small .card-content {
            height: 130px; /*150*/
        }

    .card .card-image {
        position: relative;
    }

        .card .card-image input {
            width: 100%;
            height: 100%;
            position: absolute;
        }

        .card .card-image label {
            position: absolute;
            width: 100%;
            height: 100%;
            cursor: zoom-in;
        }

        .card .card-image img {
            border-radius: 2px 2px 0 0;
            position: relative;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            width: 100%;
        }

        .card .card-image .card-title {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 5px; /*20*/
        }

    .card .card-content {
        padding: 5px; /*20*/
        border-radius: 0 0 2px 2px;
    }

        .card .card-content p {
            margin: 0;
            color: inherit;
        }

        .card .card-content .card-title {
            line-height: 48px;
        }

    .card .card-action {
        border-top: 1px solid rgba(160, 160, 160, 0.2);
        padding: 20px;
    }

        .card .card-action a {
            color: #ffab40;
            margin-right: 20px;
            -webkit-transition: color .3s ease;
            -moz-transition: color .3s ease;
            -o-transition: color .3s ease;
            -ms-transition: color .3s ease;
            transition: color .3s ease;
            text-transform: uppercase;
        }

            .card .card-action a:hover {
                color: #ffd8a6;
            }

    .card .card-reveal {
        padding: 20px;
        position: absolute;
        background-color: #fff;
        width: 100%;
        overflow-y: auto;
        top: 100%;
        height: 100%;
        z-index: 1;
        display: none;
    }

        .card .card-reveal .card-title {
            cursor: pointer;
            display: block;
        }

/*Painel de Filtros*/

.panel-heading {
  padding: 5px; /*10px 15px*/
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-danger > .panel-heading {
    color: #ffffff;
    background-color: #a94442;
    border-color: #930021;
}

/***************
  Radio Buttons
***************/
/* Remove default Radio Buttons */
[type="radio"]:not(:checked), [type="radio"]:checked {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

    [type="radio"]:not(:checked) + label, [type="radio"]:checked + label {
        position: relative;
        padding-left: 27px;
        cursor: pointer;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        font-size: 1.2rem;
        -webkit-transition: .28s ease;
        -moz-transition: .28s ease;
        -o-transition: .28s ease;
        -ms-transition: .28s ease;
        transition: .28s ease;
        -webkit-user-select: none;
        /* webkit (safari, chrome) browsers */
        -moz-user-select: none;
        /* mozilla browsers */
        -khtml-user-select: none;
        /* webkit (konqueror) browsers */
        -ms-user-select: none;
        /* IE10+ */
    }

[type="radio"] + label:before, [type="radio"] + label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
    -webkit-transition: .28s ease;
    -moz-transition: .28s ease;
    -o-transition: .28s ease;
    -ms-transition: .28s ease;
    transition: .28s ease;
}

/* Unchecked styles */
[type="radio"]:not(:checked) + label:before {
    border-radius: 50%;
    border: 2px solid #5a5a5a;
}

[type="radio"]:not(:checked) + label:after {
    border-radius: 50%;
    border: 2px solid #5a5a5a;
    z-index: -1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

/* Checked styles */
[type="radio"]:checked + label:before {
    border-radius: 50%;
    border: 2px solid transparent;
}

[type="radio"]:checked + label:after {
    border-radius: 50%;
    border: 2px solid #a94442;
    background-color: #a94442;
    z-index: 0;
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

/* Radio With gap */
[type="radio"].with-gap:checked + label:before {
    border-radius: 50%;
    border: 2px solid #a94442;
}

[type="radio"].with-gap:checked + label:after {
    border-radius: 50%;
    border: 2px solid #a94442;
    background-color: #a94442;
    z-index: 0;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    -o-transform: scale(.5);
    transform: scale(.5);
}

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + label:before {
    border: 2px solid rgba(0, 0, 0, 0.26);
}

[type="radio"].with-gap:disabled:checked + label:after {
    border: none;
    background-color: rgba(0, 0, 0, 0.26);
}

/* Disabled style */
[type="radio"]:disabled:not(:checked) + label:before, [type="radio"]:disabled:checked + label:before {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled + label {
    color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:not(:checked) + label:before {
    border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:checked + label:after {
    background-color: rgba(0, 0, 0, 0.26);
    border-color: #BDBDBD;
}

/*Painel 1*/

.modalZoom1 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom1-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom1-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom1-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom1-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto1"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto1"]:checked + div.modalZoom1 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto1"]:checked + div.modalZoom1 .modalZoom1-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 2*/

.modalZoom2 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom2-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom2-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom2-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom2-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto2"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto2"]:checked + div.modalZoom2 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto2"]:checked + div.modalZoom2 .modalZoom2-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 3*/

.modalZoom3 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom3-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom3-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom3-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom3-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto3"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto3"]:checked + div.modalZoom3 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto3"]:checked + div.modalZoom3 .modalZoom3-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 4*/

.modalZoom4 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom4-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom4-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom4-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom4-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto4"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto4"]:checked + div.modalZoom4 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto4"]:checked + div.modalZoom4 .modalZoom4-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 5*/

.modalZoom5 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom5-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom5-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom5-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom5-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto5"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto5"]:checked + div.modalZoom5 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto5"]:checked + div.modalZoom5 .modalZoom5-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 6*/

.modalZoom6 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom6-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom6-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom6-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom6-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto6"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto6"]:checked + div.modalZoom6 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto6"]:checked + div.modalZoom6 .modalZoom6-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 7*/

.modalZoom7 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom7-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom7-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom7-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom7-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto7"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto7"]:checked + div.modalZoom7 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto7"]:checked + div.modalZoom7 .modalZoom7-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }

/*Painel 8*/

.modalZoom8 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.1s 0.1s ease-in-out;
    transition: all 0.1s 0.1s ease-in-out;
    background-color: rgba(0,0,0,0.5);
}

.modalZoom8-content {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    z-index: 10001;
    opacity: 0;
    border-radius: 3px;
    background: #fff;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 3px;
}

    .modalZoom8-content img {
        width: 100%;
        height: 100%;
    }

.modalZoom8-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10002;
    cursor: zoom-out;
}

    .modalZoom8-close:after {
        content: "X";
        float: right;
        margin: 5px 5px 0 0;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 10003;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        background-color: rgba(255,255,255,0.8);
        border-radius: 20px;
        box-shadow: 0 0 3px #000;
    }

input[id*="modal_foto8"] {
    position: fixed;
    left: -9999px;
    top: 50%;
    opacity: 0;
}

    input[id*="modal_foto8"]:checked + div.modalZoom8 {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        -ms-transition-delay: 0s;
        transition-delay: 0s;
    }

        input[id*="modal_foto8"]:checked + div.modalZoom8 .modalZoom8-content {
            opacity: 1;
            -webkit-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            -webkit-transition-delay: 0.1s;
            -ms-transition-delay: 0.1s;
            transition-delay: 0.1s;
        }