﻿
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 30009; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    margin: auto;
    border: 1px solid #888;
    width: 80%;
    /*background-image: url("/img/popup/filigrana.jpg");  The image used */
    background-color: #fff; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    text-align: center;
    padding: 40px 15px;
    font-size: 18px;
    color: #000!important
}

    .modal-content p {
        font-size: 18px;
        color: #000;
        margin-bottom: 12px;
        line-height: 28px;
        font-weight: 400;
        color: #000 !important
    }
    .modal-content a {
        color: #000 !important
    }


    .modal-content h3 {
        margin-bottom: 25px;
        line-height: 26px;
        font-weight: 600;
        color: #000 !important
    }


/* The Close Button */
.close {
    color: #000;
    font-size: 38px;
    font-weight: bold;
    position: absolute;
    opacity: 0.8;
    right: 15px;
    top: 8px
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

@media screen and (min-width: 992px) {
    .modal-content {
        width: 35%;
        padding: 80px 50px;
    }

    .close {
        right: 35px;
        top: 35px
    }
}


