/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

#gwp_overlay_id {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0px;
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    text-align: center;
    font-size: 200%;
    font-weight: bold;
}
 
/* Position the close button (top right corner) */
.gwp_overlay_class .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}
 
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
.gwp_overlay_class a {font-size: 20px}
.gwp_overlay_class .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}