/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.add-to-wishlist:hover > i {
    color: red;
}

.add-to-wishlist > i.fas {
    color: red;
}

/**
 * Link: https://gist.github.com/mavieth/e0c8fdcb72a30d85f57a
 * ------------------------------------------
 *  Responsive Grid Media Queries - 1280, 1024, 768, 480
 *   1280-1024   - desktop (default grid)
 *   1024-768    - tablet landscape
 *   768-480     - tablet
 *   480-less    - phone landscape & smaller
 * --------------------------------------------
 */
@media all and (min-width: 1024px) {

}

@media all and (min-width: 768px) and (max-width: 1024px) {

}

@media all and (min-width: 480px) and (max-width: 768px) {
}

@media all and (max-width: 480px) {

}

@media all and (max-width: 767px) {
    .retina-logo {
        height: 65px;
    }
}
