/ `xs` returns only a ruleset and no media query
// ... 

    .sp_title
    {
        font-size: 2.4em;
    }

    .sp_location
    {
        font-size: 0.8em;
    }

// `sm` applies to x-small devices (portrait phones, less than 576px)
@media screen and (max-width: 575.98px) 
{
    .sp_title
    {
        font-size: 1.8em;
    }

    .sp_location
    {
        font-size: 1.0em;
    }
}

// `md` applies to small devices (landscape phones, less than 768px)
@media screen and (max-width: 767.98px) 
{

}

// `lg` applies to medium devices (tablets, less than 992px)
@media screen and (max-width: 991.98px) 
{ 

}

// `xl` applies to large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) { ... }

// `xxl` applies to x-large devices (large desktops, less than 1400px)
@media (max-width: 1399.98px) { ... }

.prayerline {
	width: 100%;
}
.prayerdayno {
	width: 50px;
	float: left;
}
.prayerday {
	width: 40px;
	float: left;
}
.prayertext {
	float: left;
}