/* Resets */
* {
    margin: 0;padding: 0;border: 0;
    text-decoration: none;outline-style: none;
    /*font-size: 14px; font-size: 1.4rem;*/

    -o-box-sizing: border-box; /* Opera */
    -ms-box-sizing: border-box; /* IE */
    -moz-box-sizing: border-box; /* Mozilla */
    -webkit-box-sizing: border-box; /* Chrome, Safari */
    box-sizing: border-box;     
}
input[type=button], input[type=submit], input[type=reset] {
    -webkit-appearance: none;
    border-radius: 0;
}
#adminLink {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
* a {
    color:#333;
}
* a:hover {
    color:#1c1c1c;
    text-decoration:none;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

html {
    /*font-size: 62.5%;*/
    /*-webkit-text-size-adjust: 100%;  Prevent font scaling in */
    height:100%;
    min-height:100%; 
    position:relative;
    color: #333;
}
body {
    position:relative;
    height:100%;	
    min-height:100%;
    min-width:280px;
    background: url(../images/assets/texture/white_wall_hash.png);
    background-repeat: repeat;
    background-position: center;
}


/*https://stackoverflow.com/questions/30102792/css-media-query-target-only-ios-devices*/
/*https://css-tricks.com/forums/topic/click-function-for-hover-states-on-touch-devices/*/
@supports (-webkit-overflow-scrolling: touch) {
    body {
        cursor: pointer;
    }
}