.container {max-width: 1380px;}

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

.flex-row {
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.dis-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

body, html {
	font-family: nunito, sans-serif;
	font-size: 15px;
	color: #666666;

	height: 100%;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--phoenix-primary: #052535;
    --phoenix-primary-btn : #1050e8; 
	
	--phoenix-primary-rgb: 5, 37, 53;
    --phoenix-primary-btn-rgb : 16, 80, 232;    
}

button {
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
}



button:focus {outline: none;}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

@supports (-webkit-touch-callout: none) {
	#datepicker {
        visibility: visible;
    }
}


