﻿@charset "utf-8";
/* CSS Document */

.lightBox {
    -moz-border-radius: 0px;
    background: #f4f4f4;
    border: 3px solid #4eb128;
    -webkit-border-radius: 0px;
    -webkit-box-shadow: rgba(0,0,0,.6) 0px 2px 6px;
    -moz-box-shadow: rgba(0,0,0,.6) 0px 2px 6px;
    padding: 14px 22px;
    width: 400px;
    position: relative;
    display: none;
}

    .lightBox label, .lightBox .form_text {
        display: block;
        color: #536376;
        font-size: 16px;
    }

    .lightBox .lightBox_head {
        width: 250px;
        height: 30px;
        background-position: -202px -133px;
        margin-top: 5px;
        margin-bottom: 15px;
    }

    .lightBox .lightBox_form {
        margin-bottom: 15px;
    }

    .lightBox .lightBox_foot {
        margin-bottom: 10px;
    }

    .lightBox .lightBox_center {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .lightBox .lightBox_center div {
            margin: 0px auto;
            *margin: 0px auto;
            _margin: 0px auto;
        }

.closeX {
    width: 24px;
    height: 24px;
    overflow: hidden;
    line-height: 1000px;
    display: block;
    position: absolute;
    top: 9px;
    right: 9px;
    background: url(../../images/closeX.png) no-repeat;
}

/* Pure CSS3 Lightbox start */
/*

.lightbox-target {
    position: fixed;
    top: -100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
}

    .lightbox-target .content {
        width: 90%;
        height: 90%;
        background: #fff;
        color: #333;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 0%;
        max-width: 0%;
        border: 3px solid #fff;
        -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .lightbox-target img {
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 0%;
        max-width: 0%;
        border: 3px solid #fff;
        -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .lightbox-target:target {
        opacity: 1;
        top: 0;
        bottom: 0;
    }

        .lightbox-target:target .content, .lightbox-target:target img {
            max-height: 100%;
            max-width: 100%;
        }

        .lightbox-target:target .lightbox-close {
            top: 5%;
        }

.lightbox-close {
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: #139dd7;
    color: #fff;
    position: absolute;
    top: 10%;
    right: 5%;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

    .lightbox-close:before, .lightbox-close:after {
        content: " ";
        display: block;
        height: 30px;
        width: 1px;
        background: #fff;
        position: absolute;
        left: 26px;
        top: 10px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .lightbox-close:after {
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

*/
