/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    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-header {
    background-image: url('../images/frigotel_logo_popup_header.png');
    background-repeat: no-repeat;
    color: white;
/*    min-height: 50px;*/
}

/* Modal Body */
.modal-body {
    min-width: 500px;
}

/* Modal Footer */
.modal-footer {
    background-image: url('../images/frigotel_logo_popup_footer.png');
    background-repeat: no-repeat;
    background-position: right;
    color: white;
    max-height: 30px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    /*        width: 80%;  Could be more or less, depending on screen size */
    width: min-content;
    width: -moz-min-content;
}

/* The Close Button */
.modal-close {
    float: right;
    font-size: 60px;
    font-weight: bold;
    margin-right: -78px;
    margin-top: -80px;
    padding: 0px 25px 0px 25px;
    border-radius: 50px;
    color: #446e9b;
    background-color: #EEEEEE;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    color: #EEEEEE;
    background-color: #446e9b;
}