/*----------------------------------------------------------------------------------------------------------------------
Color - Code:
------------------------------------------------------------------------------------------------------------------------
    Blue:
    Hex -> #00b1eb;
    rgba -> (98, 179, 233, 1)

    Black:
    Hex -> #060401
    rgba -> (6, 4, 1, 1)

    Orange:
    Hex -> #E4BA33
    rgba -> (228, 186, 51, 1)
*/

/*----------------------------------------------------------------------------------------------------------------------*/
@import url("global_styles.css");
@import url("480.css");
@import url("600.css");
@import url("720.css");
@import url("850.css");
@import url("960.css");
@import url("1200.css");
@import url("1280.css");
    /*--> Helper Classes <------------------------------------------------------------------------*/
    .clearfix{
        clear: both;
    }
    .display{
        display: block;
    }
    .display_none{
        display: none;
    }
    .visible{
        visibility: visible;
    }
    .invisible{
        visibility: hidden;
    }

/*----------------------------------------------------------------------------------------------------------------------
    Retina specific content
----------------------------------------------------------------------------------------------------------------------*/
    @media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   min--moz-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) { 
      
      /* Retina-specific stuff here */
    
    }