/*
  setup.css
  webcom.one | 30/11/2021 | CSS
  (c) Copyright 2021 Web Communication
*/


*,
*:after,
*:before {
    -webkit-box-sizing:      border-box;
    -moz-box-sizing:         border-box;
    box-sizing:              border-box;
    padding:                 0;
    margin:                  0;
}

* {
    outline:                 none;
}


* {
	/*-webkit-touch-callout:			none;
	-webkit-text-size-adjust:		none;
	-webkit-user-select:			none;  */
	-webkit-tap-highlight-color:	rgba(0,0,0,0);
}

body,html,p {
    margin:                  	0;
    padding:                 	0;
}


html, body {
        position: relative;
        height: 100%;
    }

body, html {
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  /*
  in cases where you don’t want Mobile Safari
  (or any other mobile browser) deciding at
  what scale to render your fonts, use this CSS
  */
}

/* LINK */

a:focus {
    -moz-outline:               0;
    outline:                    0;
    outline-offset:             0;
}

img,
a img {
    border:                		none;
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}
