/* 
Theme Name: CASA Custom H5P
Description: Custom CSS for H5P content 
Author: The November Group
Version: 1.0.1
*/

/*
Mobile Only@media (max-width: 767px) { selector { ... } }
Tablet Only@media (min-width: 768px) and (max-width: 1024px) { selector { ... } }
Desktop Only@media (min-width: 1025px) { selector { ... } }
Mobile & Tablet@media (max-width: 1024px) { selector { ... } }
*/


.h5p-content .h5p-image-hotspot {
    color: green; !important;
}

/* Mobile Only */
@media (max-width: 767px) {
    .h5p-content .h5p-image-hotspot {
    font-size: 0.6em;
}
}
@media (min-width: 768px) and (max-width: 1024px) { 
    .h5p-content .h5p-image-hotspot {
        font-size: 0.6em;
}
}