/*
*	(C) Copyright 2014 Focus BC - http://www.focus-bc.com/.
*
*  main.css
*	Summary: Stylesheet for commons styles for desktop and mobile
*
*/


/* MAIN ************************************************************************/

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    /* Make elements unselectable, because the onclick on TD and other events */
    /*-moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}


/* INPUTS **********************************************************************/

textarea,
input,
button,
select {
    font-family: 'PT Sans', sans-serif;
}


/* FONTS AND STYLES ***********************************************************/

h1 {
    font-family: 'PT Sans Narrow', sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 19px;
    line-height: 19px;
    font-weight: 300;
}

h2 {
    font-family: 'PT Sans Narrow', sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-weight: 250;
}

h3 {
    font-family: 'PT Sans', sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
}

h4 {
    font-family: 'PT Sans', sans-serif;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 100;
}

#mask-initial {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 1;
    z-index: 99999;
    background-size: 60%;
}

#mask-content{
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    opacity: 1;
    background-color: white;
    z-index: 40001;
}

.btn-pointer {
    cursor: pointer;
}

/* OVERRIDES ********************************************************************/

ui-widget,
ui-atucomplete {
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
}

.hidden-input {
    width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    height: 0;
    display: none;
}

.hidden-input-file {
    width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    height: 0;
    display: block;
}


/* MATERIAL **********************************************************************/

.material-shadow, #popup, .button-state-round, .popup-button, .popup-button-small, #main-footer, #map-suggestion-submit {
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, .4);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, .4);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.material-shadow-from-bottom-right {
    -webkit-box-shadow: -1px -1px 4px rgba(0, 0, 0, .4);
    box-shadow: -1px -1px 4px rgba(0, 0, 0, .4);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.material-shadow-from-bottom-left {
    -webkit-box-shadow: 1px -1px 4px rgba(0, 0, 0, .4);
    box-shadow: 1px -1px 4px rgba(0, 0, 0, .4);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.material-icon-float {
    font-size: 28px;
    margin-top: 16px;
}

@media(max-width: 800px){
	html, body{
		-moz-user-select: -moz-none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
}
