/*
Theme Name:   Window-ltbx
Description:  A child theme for Divi 5 for goshenwindow.org
Author:       Jordan Kauffman + LightBox team
Template:     Divi
Version:      1.0.2
Text Domain:  window-ltbx
*/

/* * ==========================================================================
 * MOBILE FIRST CSS GOES HERE
 * ==========================================================================
 * Why this approach: We write styles for the smallest screens first, 
 * then use `min-width` media queries to adjust layouts for larger screens. 
 */

.alert-bar {
    display:block;
    background-color: #C10000;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    /* line-height: 3; */
    width: 100%;
    position: fixed;
    z-index: 100000;
}

.alert-bar a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 0 1rem;
}

.alert-bar a:hover,
.alert-bar a:focus {
    color: #ffffff;
    text-decoration: underline;
}
#main-header {
    margin-top:30.59px;
}

#ab-mobile {
    display:block;
}
#ab-desktop {
    display:none;
}

@media only screen and (min-width:756px) {
#ab-mobile {
    display:none;
}
#ab-desktop {
    display:block;
}
}