



/*!
lightbox*************************************************************************
*/
.black_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}
.white_content {
    display: none;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    padding: 16px;
    border: 16px solid orange;
    background-color: white;
    z-index: 1002;
    overflow: auto;
}

/*!
            @media (min-width: 7680px)            {
                .listado{
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);     
                    grid-column-gap: 2rem;

                }
            }


            .listado2 {
                display: grid;
            }

            .elemento {
                
                grid-column: auto;
                grid-column: 4 / 6;
                grid-column: span 3;
                grid-column: span 3 / 6;
            }
*/



/*!
* modified Simple lightbox effect in pure JS
* @see {@link https://github.com/squeral/lightbox}
* @see {@link https://github.com/squeral/lightbox/blob/master/lightbox.js}
* passes jshint
*/

.iframe-lightbox,
.iframe-lightbox .backdrop {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.iframe-lightbox {
    display: none;
    position: fixed;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    /*!
     * @see {@link https://github.com/englishextra/iframe-lightbox/issues/10}
     * @see {@link https://github.com/englishextra/iframe-lightbox/issues/14}
     */
    z-index: 999999;
}

.iframe-lightbox .backdrop {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: default;
}

.iframe-lightbox .content-holder {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-right: -50%;
}

.iframe-lightbox .content {
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
}

.iframe-lightbox .content>.body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */

.iframe-lightbox .content>.body .half-circle-spinner,
.iframe-lightbox .content>.body .half-circle-spinner * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.iframe-lightbox .content>.body .half-circle-spinner {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: relative;

    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.iframe-lightbox .content>.body .half-circle-spinner .circle {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: calc(60px / 10) solid transparent;
}

.iframe-lightbox .content>.body .half-circle-spinner .circle.circle-1 {
    border-top-color: #FFFFFF;
    -webkit-animation: half-circle-spinner-animation 1s infinite;
    animation: half-circle-spinner-animation 1s infinite;
}

.iframe-lightbox .content>.body .half-circle-spinner .circle.circle-2 {
    border-bottom-color: #FFFFFF;
    -webkit-animation: half-circle-spinner-animation 1s infinite alternate;
    animation: half-circle-spinner-animation 1s infinite alternate;
}

@-webkit-keyframes half-circle-spinner-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes half-circle-spinner-animation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.iframe-lightbox .content>.body.is-loaded .half-circle-spinner {
    display: none;
}

.iframe-lightbox iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
    /*!
     * in js: iframe onload="this.style.opacity=1;" style="opacity:0;border:none;"
     */
    /* opacity: 0; */
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.iframe-lightbox.is-showing {
    display: block;
}

.iframe-lightbox.is-opened {
    opacity: 1;
}

.iframe-lightbox .btn-close {
    position: fixed;
    top: 0.625em;
    right: 0.625em;
    width: 1.500em;
    height: 1.500em;
}

/*!
 * pure css version
 * @see {@link https://codepen.io/brissmyr/pen/egidw}
 */

.iframe-lightbox .btn-close:before,
.iframe-lightbox .btn-close:after {
    content: " ";
    width: 0.125em;
    height: 1.500em;
    position: absolute;
    right: 0.625em;
    background-color: #FFFFFF;
}

.iframe-lightbox .btn-close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.iframe-lightbox .btn-close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*!
 * @see {@link https://github.com/englishextra/iframe-lightbox/issues/12}
 */

body.iframe-lightbox--open {
    overflow: hidden;
}






/*!
flecha *************************************************************************
*/

.arrow,
.arrow:before{
    /* display: none;*/
}



@media (min-width: 768px)    {
    .arrow,
    .arrow:before{
        position: absolute;
        left: 50%;

    }


    .arrow:before{
        content: '';
        width: 50px;
        height: 50px;
        bottom: 50px;
        margin: -10px 0 0 -10px;
        border-left: none;
        border-top: none;
        border-right: 1px #fff solid;
        border-bottom: 1px #fff solid;
        transform: rotate(45deg);
    }
}




/*!
formulario ************************************************************************
*/
/* formulario */


#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
    font-size: 0.8em;
}


#contact {
    line-height: 2.5;
}

@media (min-width: 768px)    {   

}



#contact h3 {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
}

#contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
    font-weight: 400;
}

fieldset {
    border: medium none ;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    height: 40px;

}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}

#contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#contact button[type="submit"] {
    cursor: pointer;
    width: 50%;
    border: none;
    background: black;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#contact button[type="submit"]:hover {
    background: black;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}



#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

::-webkit-input-placeholder {
    color: #888;
}

:-moz-placeholder {
    color: #888;
}

::-moz-placeholder {
    color: #888;
}

:-ms-input-placeholder {
    color: #888;
}


