/*
------------------------------
Customizations
------------------------------
// used for any CSS overrides or UI customizations

** stylesheet organization matches main style.css structure
** when editing please put styles in their respective area

TABLE OF CONTENTS
- 01: Global
- 02: Header
- 03: Structure
- 04: Components
- 05: Footer
- 06: Forms
- 07: Tables
- 08: Bootstrap
- 09: Plugins
- 10: Behavioral (JS)
- 11: Responsive (Media Queries)
- 12: Print
*/

/* 01: Global
========================================================================================================================= */
.color-purple {color: #565ed0 !important;}

.bg-purple {background: #565ed0 !important;}


/* 02: Header
========================================================================================================================= */



/* 03: Structure
========================================================================================================================= */



/* 04: Components
========================================================================================================================= */



/* 05: Footer
========================================================================================================================= */



/* 06: Forms
========================================================================================================================= */



/* 07: Tables
========================================================================================================================= */



/* 08: Bootstrap
========================================================================================================================= */



/* 09: Plugins
========================================================================================================================= */



/* 10: Behavioral (JS)
========================================================================================================================= */



/* 11: Responsive (Media Queries)
========================================================================================================================= */
/* Retina-specific styles */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (   -moz-min-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {

}

/* LARGE DESKTOP */
@media (max-width: 1399px) {

}

@media (max-width: 1199px) {

}

/* SMALL DESKTOP */
@media (min-width: 992px) {

}

/* TABLET */
@media (max-width: 1024px) {
	
}

/* MOBILE */
@media (max-width: 768px) {

}

/* SUPER MOBILE */
@media (max-width: 600px) {

}


/* 12: Print
========================================================================================================================= */


