/*
 Theme Name:        Platonic for GeneratePress
 Description:       Platonic is a custom child theme for GeneratePress, which includes special features
 Author:            Gerard Reches
 Author URI:        https://gerardreches.com
 Template:          generatepress
 Version:           2.3
 Text Domain:       platonic-for-generatepress
*/

.copyright-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.copyright-bar > span {
    flex-basis: 100%;
}

.copyright-bar a:hover {
    color: inherit;
    text-decoration: underline;
}

@media (min-width: 768px) {

    .copyright-bar {
        flex-wrap: nowrap;
    }

    .copyright-bar > span {
        flex-basis: auto;
    }
}

/* Including Font Awesome icons in menus */
#primary-menu .fas,
#primary-menu .far,
#primary-menu .fal,
#primary-menu .fad,
#primary-menu .fab {
    padding-right: 10px;
}

/* Lazy loading */
img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    transition: opacity .2s linear;
    opacity: initial;
}