﻿/*
'-- Revamped By		: Alfred Li (AL732)
'-- Revamped Date	: 09 Mar 2021
'-- Enhancement#    : 732
'-- Description	    : Alert Announcement on Corporate Web Pop-up + News & Events
*/

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 120px; /* 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 */
    box-sizing: border-box;
}

/* Modal Content #fefefe*/
.modal-content {
    position: relative;
    top: 20%;
    background-color: #fefefe;
    margin: auto;
    padding: 3px;
    border: 1px solid #888;
    width: 45%;
    text-align: center;
    border-color: #000000;
    border: 5px solid;
    font-size: 14px;
}
.modal-header {
    padding: 2px 8px;
    position: relative;
    background-color: #fefefe;
    color: #FF0000;
    text-align: left;
    font-size: 18px;
    vertical-align: text-bottom;
    height: 14%;
    margin: 10px 2px;
    font-weight: bolder;
}
.modal-underline {
    text-decoration: none;
    border-bottom: 2px solid;
    color: #000000;
}
.modal-body {
    position: relative;
    padding: 2px 8px;
    font-size: 16px;
    height: 50%;
    vertical-align: middle;
    text-align: left;
    font-family: Arial,Arial, Helvetica, sans-serif;
}

.modal-footer {
    height: 100%;
    text-align: center;
    vertical-align: top;
    height: 36%;
    font-family: Arial,Arial, Helvetica, sans-serif;
}
/* The Close Button */
.close {
    color: #000000;
    float:right;
    padding-right:5px;
    font-size: 16px;
    font-weight: bold;
}

.close:hover,
.close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
}