/*
     MODAL CSS - March 2022
*/

:root
{
 --lwblue:     #0C4964;   
 --lightgrey:  #ddd;
} 

.modal
{
 position: fixed;
 top: 0;
 left: 0;
 bottom: 0;
 right: 0;
 display: none;
 overflow: auto;
 background-color: #000000;
 background-color: rgba(0, 0, 0, 0.5);
 z-index: 9999999999999999;
}

.modal-window
{
 position: relative;
 background-color: #FFFFFF;
 width: 75%;
 max-width: 450px;
 margin: 10% auto;
 padding: 20px;
}    

.modal-info-window
{
 position: relative;
 background-color: #FFFFFF;
 width: 75%;
 max-width: 450px;
 margin: 5% auto;
 padding: 10px;   
 font-size: 16px;
}         

.modal-share-window
{
 position: relative;
 background-color: #FFFFFF;
 width: 75%;
 max-width: 400px;
 margin: 5% auto;
 padding: 10px;   
 font-size: 15px;
}

.modal-window.small {
    width: 30%;
}

.modal-window.large {
    width: 75%;
}

.modalclose
{
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(0,0,0,0.3);
    height: 30px;
    width: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.modalclose:hover,
.modalclose:focus {
    color: #000000;
    cursor: pointer;
}

.modalopen
{
 display: block;
}

.sharebutton
{
 border: none;
 background: none;
 padding: 8px 0 0 0;
}

.nobuttonbutton
{
 background: none;
 border: none;
 margin: 0;
 padding: 0;
 cursor: pointer;
 color: #A73467;  
}
.nobuttonbutton:hover
{
 text-decoration: underline;
}

.modalheader
{  
 display: inline;
 font-size: 16px;
 font-weight: bold;
 color: var(--lwblue);
}  

.modalshareheader
{  
 display: inline;
 font-size: 24px;
 font-weight: bold;
 color: var(--lwblue);
}    

.modalshareheader2
{  
 display: inline;
 font-size: 16px;
 font-weight: bold;
 color: var(--lwblue);
}

.modalX
{
 display: inline;
 float: right;
 cursor: pointer;
 padding: 0 10px 0 0;
 margin: 0 0 20px 0;
 font-weight: bold;
 font-size: 24px;
 color: #999;
}
.modalX:hover
{
 color: #333;
}     

.modalinfoX
{
 display: inline;
 //float: right;
 cursor: pointer;
 padding: 10px 0 0 0;
 //margin: 0 0 20px 0;
 font-weight: bold;
 font-size: 30px;
 line-height: 16px;
 color: #999;
}
.modalinfoX:hover
{
 color: #333;
}

.modalhr
{  
 border: none;
 height: 1px;
 color: var(--lightgrey);
 background-color: var(--lightgrey);
}

.modalh2
{
 font-size: 14px;
 margin: 0px 0 5px 0;
 color: #888;
}   

.modaleh2
{
 font-size: 13px;
 margin: 0px 0 5px 0;
 color: #888;
}

.modalinput
{
 font-family: sans-serif;
 font-size: 14px; 
 margin: 5px 0 0 0;
 width: 97%;
}    

.modaleminput
{
 font-family: sans-serif;
 font-size: 13px; 
 margin: 5px 0 0 0;
 width: 97%;
}

.modalemailmenu
{
 margin: 0 7px 0 0;
 float: right;
 display: inline;
}

.modalbuttonclose
{
 margin: 5px 5px 0 0;
 color: white;
 background-color: #999;
 border: none;
 display: inline-block;
 padding: 8px 10px;
 border-radius: 8px;
}
.modalbuttonclose:hover
{
 background-color: #666;
}

.modalbuttonsend
{
 margin: 5px 5px 0 0;
 color: white;
 background-color: var(--lwblue); 
 border: none;
 display: inline-block;
 padding: 8px 10px;
 border-radius: 8px;
} 
.modalbuttonsend:hover
{
 background-color: #002b3e;
}

.iconstable
{
 font-size: 13px;
}
