﻿/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align and display modal popup
* @
*/
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: white; 
    background-color: rgba(0,0,0,0); 
    font-family: 'Roboto', sans-serif;
}

/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align and display modal content
* @
*/
.modal-content {
    height: 126.46px;
    width: 646.36px;
    background-color: #fefefe;
    margin: 5.5% auto; 
    display: flex;
    box-shadow: 0 31px 30px 0 rgba(0,0,0,0.29), 2px 4px 8px 0 rgba(0,0,0,0.15);
}

/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align close button in modal popup
* @
*/
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-left: 18px;
    padding-top: 15px;
}

/*
* 08/21/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Style to close button icon in modal popup
* @
*/
.closeIcon {
    cursor: pointer;
}

/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align info bar in modal popup
* @
*/
.infobar {
    height: 126.46px;
    width: 55px;
    background-color: #139CEB;
    text-align: center;
}
/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align and display information text header in modal popup
* @
*/
.infoHeader {
    height: 16px;
    width: 520px;
    color: #139CEB;
    font-size: 20px;
    line-height: 16px;
    padding-top: 20px;
    text-align: left;
    padding-left: 20px;
}
/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align and display information text content in modal popup
* @
*/
.infoContent {
    color: #7C7C88;
    width: 520px;
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
    display: block;
    padding-top: 10px;
    text-align: left;
}
/*
* 08/20/2019
* @author Arumuga Vignesh Venkatraman
* @module Modal Popup
* @description Styles to align and display information icon in modal popup
* @
*/
.infoSquare {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}