button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}

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

html {
	font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
	color: #464646;
}

html, body {
	height: 100%;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 5;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	padding-top: 10px;
	padding-bottom: 10px;
}

body {
	font-size: 17px;
	min-height: 100%;
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-direction: column;
	/* Font Aliasing */
	-webkit-text-size-adjust: 100%;
	/* Font variant */
	font-variant-ligatures: none;
	-webkit-font-variant-ligatures: none;
	/* Smoothing */
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

.body-content {
	flex: 1 0 auto;
}

section {
	overflow: auto;
}

a {
	color: #2775b9;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	text-decoration: none;
	cursor: pointer;
}

a:hover, a:focus {
	color: #000;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6, p {
	margin-bottom: 20px;
}

h1 {
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: 400;
}

h2 {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 400;
}

h3 {
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 26px;
}

h4 {
	font-size: 26px;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 26px;
}

h5 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 26px;
}

h6 {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 400;
	line-height: 26px;
}

p {
	font-size: 17px;
	margin-bottom: 10px;
	line-height: 26px;
}

hr {
	display: block;
	margin: 2em auto 2em auto;
	width: 70%;
	border-color: rgba(255, 255, 255, 0.52);
}

label {
	display: inline-block;
	margin-bottom: 0 !important;
	font-weight: normal !important;
}

img {
	display: block;
}

.container {
	display: block;
	margin: 0 auto;
	width: 1250px;
}

.div-box-center {
	display: block;
	margin: 0 auto;
	width: 350px;
}

.image-center {
	display: block;
	margin: 0 auto;
}

.div-center {
	display: block;
	margin: 0 auto;
}

.div-parent-border {
	padding: 1em;
	border: 1px solid #ececec;
	border-radius: 2px;
	overflow: hidden;
}

input[type=text], input[type=password], input[type=number], textarea, select {
	display: inline-block;
	font-family: inherit;
	font-size: 17px;
	padding: 10px 8px;
	width: 320px;
	max-width: 100%;
	-webkit-appearance:none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #e2e2e2;
	border-radius: 3px;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, textarea:focus, select:focus {
	-webkit-transition: all 0.20s ease-in-out;
	-moz-transition: all 0.20s ease-in-out;
	-ms-transition: all 0.20s ease-in-out;
	-o-transition: all 0.20s ease-in-out;

	outline-style:none;
	box-shadow:none;
	border-color:transparent;
	box-shadow: 0 0 1px #207df1;
	-moz-box-shadow: 0 0 1px #207df1;
	-webkit-box-shadow: 0 0 1px #207df1;
	border: 1px solid #207df1;
}

input::placeholder, textarea::placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #b9b9b9 !important;
	opacity: 1 !important;
}

input[type=checkbox] + label, input[type=radio] + label {
	display: inline;
}

/* Checkbox and radio buttons */
input[type=checkbox] {
	height: 18px;
	width: 18px;
	position: relative;
	top: 1px;
	margin-bottom: 3px;
}
input[type=radio] {
	height: 14px;
	width: 14px;
	position: relative;
	top: -1px;
	margin-bottom: 3px;
	margin-right: 2px;
	margin-left: 5px;
}

input[type=checkbox]:after, input[type=radio]:after {
	content: '\2713';
	display: block;
	background: white;
	background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 95.8 65.43"><title>checkmark</title><path d="M96,20.66a5.68,5.68,0,0,0-8,0L37.94,70.74,11.58,44.38a5.67,5.67,0,0,0-8,8L33.93,82.77a5.67,5.67,0,0,0,8,0L96,28.68A5.68,5.68,0,0,0,96,20.66Z" transform="translate(-1.9 -19)" style="fill:rgb(255,255,255)"/></svg>');
	pointer-events: none;
	border-width: 1px;
	border-style: solid;
	border-color: #a9c3ea;
	border-radius: 3px;
	background-repeat: no-repeat;
	color: transparent;
	transition: .12s all ease-in-out;
	font-size: 18px;
	position: absolute;
	height: 16px;
	width: 16px;
	line-height: 18px;
}
input[type=checkbox]:after {
	top: 0;
	left: 0;
	background-size: 11px 11px;
	background-position: 3px 18px;
}
input[type=radio]:after {
	left: -2px !important;
	top: -1px !important;
	background-size: 10px 10px;
	background-position: 1px 18px;
}
input[type=checkbox].disabled-checkbox:after {
	background-color: #e4e4e4;
	border-color: rgba(255, 255, 255, 0);
}

input[type=checkbox].disabled-checkbox:hover:after {
	border-color: #a9c3ea;
}

input[type=radio]:after {
	border-radius: 50%;
}

input[type=checkbox]:checked:after {
	background-color: #2376f3;
	background-position: 2px 3px;
	border-color: rgba(255, 255, 255, 0);
}
input[type=radio]:checked:after {
	background-color: #2376f3;
	background-position: 3px 3px;
	border-color: rgba(255, 255, 255, 0);
}

input[type=checkbox]:checked:hover:after, input[type=radio]:checked:hover:after {
	border-color: rgba(255, 255, 255, 0);
}

input[type=checkbox]:hover:after, input[type=radio]:hover:after {
	border-color: #2376f3;
}

input[type="checkbox"]:focus, input[type="radio"]:focus {
	outline:none;
}
/* End checkbox and radio buttons */

input[type=submit] {
	font-size: 18px;
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: 300px !important;
	padding: 10px 25px;
	cursor: pointer;
	-webkit-appearance:none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
}

input[type="file"] {
	display: none;
}

input[type="submit"], button {
	outline-style: none;
	box-shadow: none;
	border-color: transparent;
	transition: all .4s ease;
	-o-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-webkit-transition: all .4s ease;
}

textarea {
	/*width: 400px !important;*/
	width: 320px !important;
	height: 150px !important;
}

ul.bullet-point li {
	margin-bottom: 15px;
}

ol li {
	margin-bottom: 10px;
}

ul.bullet-point-solid {
	list-style-type: disc;
}

.full-width {
	width: 100% !important;
}

.input-large {
	width: 340px !important;
	font-size: 17px !important;
}

.word-break {
	word-break: break-all;
}

.file-upload {
	display: inline-block;
	padding: 0.7em;
	border-radius: 2px;
	background-color: #f5b229;
	cursor: pointer;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	font-size: 17px;
	border: 1px solid #e2e2e2;
	padding: 10px 30px 10px 10px;
	background-image: url("https://d3chrpec02hqq8.cloudfront.net/images/down.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
	width: auto;
}

button, .button {
	font-size: 18px;
	border: 1px solid rgba(255, 255, 255, 0);
	border-radius: 300px !important;
	padding: 10px 20px;
	cursor: pointer;
	outline: none;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.1);
	display: inline-block;
	margin-bottom: 10px !important;
}

a.button:hover {
	color: #fff !important;
}

.table-responsive {
	overflow-x: auto;
}

table {
	border-spacing: 0;
}

ul, ol {
	list-style-position: inside;
}

ul.list, ol.list {
	margin: 10px 0;
}

.list li {
	margin: 5px 0;
}

.container-wide {
	width: 97%;
	display: block;
	margin: 0 auto;
}

.box {
	padding: 20px;
	border: 1px solid #ececec;
	border-radius: 3px;
	background-color: #fafafa;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
}

.header {
	width: 100%;
	z-index: 999999;
}

.header > div {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}

.header ul {
	list-style: none;
	/*overflow: hidden;*/
}

.header li a {
	display: block;
	/*padding: 20px 20px;*/
	text-decoration: none;
}

.header .logo {
	display: block;
	float: left;
	padding: 10px 20px;
	text-decoration: none;
}

/* menu */

.header .nav-menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 10px 0px;
	position: relative;
	user-select: none;
}

.header .menu-icon .navicon {
	background: #7d7d7d;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 18px;
	border-radius: 300px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
	background: #7d7d7d;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
	border-radius: 300px;
}

.header .menu-icon .navicon:before {
	top: 5px;
}

.header .menu-icon .navicon:after {
	top: -5px;
}

/* menu btn */

.header .menu-btn {
	display: none;
}

.header .menu-btn:checked ~ .nav-menu {
	max-height: 500px;
	overflow-y: auto;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
}

.button-blue {
	background-color: #2086de;
	color: #fff;
}

.button-blue:hover {
	background-color: #2397fb;
}

.button-green {
	background-color: #21c178;
	color: #fff;
}

.button-green:hover {
	background-color: #20d080;
}

.button-red {
	background-color: #dc2035;
	color: #fff;
}

.button-red:hover {
	background-color: #cc1d30;
}

.button-grey {
	background-color: #bbb;
	color: #272727;
}

.button-grey:hover {
	background-color: #cecece;
}

.button-orange {
	background-color: #f18b22;
	color: #fff;
}

.button-orange:hover {
	background-color: #ff9b34;
}

.button-yellow {
	background-color: #f3cd15;
	color: #333;
}

.button-yellow:hover {
	background-color: #ffd921;
}

.big-button {
	font-size: 20px;
	color: #fff;
	padding: 12px 20px;
	width: 280px;
}

.info-message-red {
	width: 90%;
	line-height: 26px;
	background-color: #d63446;
	padding: 15px 15px 15px 50px;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	display: block;
	margin: 0 auto 30px auto;
	background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94 94"><title>Untitled-1</title><path d="M49,12.55A38.45,38.45,0,1,1,10.55,51,38.5,38.5,0,0,1,49,12.55M49,4A47,47,0,1,0,96,51,47,47,0,0,0,49,4Z" transform="translate(-2 -4)" style="fill:rgb(255,255,255)"/><rect x="26.51" y="46.47" width="44.9" height="7.98" rx="3.52" transform="translate(-23.34 45.4) rotate(-45)" style="fill:rgb(255,255,255)"/><rect x="44.97" y="28.01" width="7.98" height="44.9" rx="3.52" transform="translate(-23.34 45.4) rotate(-45)" style="fill:rgb(255,255,255)"/></svg>');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: left 15px center;
}

.info-message-blue {
	width: 90%;
	line-height: 26px;
	background-color: #497bb9;
	padding: 15px 15px 15px 50px;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	display: block;
	margin: 0 auto 30px auto;
	background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94 94"><title>Untitled-1</title><path d="M49,12.55A38.45,38.45,0,1,1,10.55,51,38.5,38.5,0,0,1,49,12.55M49,4A47,47,0,1,0,96,51,47,47,0,0,0,49,4Z" transform="translate(-2 -4)" style="fill:rgb(255,255,255)"/><path d="M60.22,75.87C57.87,76.8,56,77.5,54.59,78a14.68,14.68,0,0,1-4.87.73,9.69,9.69,0,0,1-6.63-2.08,6.73,6.73,0,0,1-2.37-5.28,18.65,18.65,0,0,1,.18-2.55c.12-.86.31-1.84.57-2.93l2.94-10.39c.26-1,.48-1.94.66-2.82a13.11,13.11,0,0,0,.26-2.45,3.76,3.76,0,0,0-.82-2.77,4.66,4.66,0,0,0-3.14-.77A8.1,8.1,0,0,0,39,47c-.79.24-1.48.46-2,.68l.78-3.2q2.88-1.18,5.52-2a16.45,16.45,0,0,1,5-.84,9.53,9.53,0,0,1,6.54,2.05A6.79,6.79,0,0,1,57.11,49c0,.46-.06,1.25-.16,2.39a16,16,0,0,1-.59,3.13L53.44,64.89a28.21,28.21,0,0,0-.65,2.84,14.83,14.83,0,0,0-.28,2.42A3.47,3.47,0,0,0,53.43,73a5.16,5.16,0,0,0,3.2.75,9.64,9.64,0,0,0,2.42-.37,14.14,14.14,0,0,0,2-.66Z" transform="translate(-2 -4)" style="fill:rgb(255,255,255)"/><circle cx="48.24" cy="25.92" r="6.76" style="fill:rgb(255,255,255)"/></svg>');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: left 15px center;
}

.info-message-green {
	width: 90%;
	line-height: 26px;
	background-color: #4f9c6f;
	padding: 15px 15px 15px 50px;
	border-radius: 10px;
	color: #fff;
	text-align: center;
	display: block;
	margin: 0 auto 30px auto;
	background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94 94"><title>Untitled-1</title><path d="M49,12.55A38.45,38.45,0,1,1,10.55,51,38.5,38.5,0,0,1,49,12.55M49,4A47,47,0,1,0,96,51,47,47,0,0,0,49,4Z" transform="translate(-2 -4)" style="fill:rgb(255,255,255)"/><rect x="33.15" y="44.16" width="7.94" height="27.01" rx="3.97" transform="translate(-32.66 43.23) rotate(-48.47)" style="fill:rgb(255,255,255)"/><rect x="52.22" y="26.68" width="7.94" height="45.28" rx="3.97" transform="translate(42.05 -28.45) rotate(39.38)" style="fill:rgb(255,255,255)"/></svg>');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: left 15px center;
}

.info-message-yellow {
	width: 90%;
	line-height: 26px;
	background-color: #fff8c4;
	padding: 15px 15px 15px 50px;
	border-radius: 10px;
	color: #383838;
	text-align: center;
	display: block;
	margin: 0 auto 30px auto;
	border: 1px solid #f7f7f7;
	background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 94 94"><title>Untitled-1</title><path d="M49,12.55A38.45,38.45,0,1,1,10.55,51,38.5,38.5,0,0,1,49,12.55M49,4A47,47,0,1,0,96,51,47,47,0,0,0,49,4Z" transform="translate(-2 -4)" style="fill:rgb(91,91,91)"/><path d="M60.22,75.87C57.87,76.8,56,77.5,54.59,78a14.68,14.68,0,0,1-4.87.73,9.69,9.69,0,0,1-6.63-2.08,6.73,6.73,0,0,1-2.37-5.28,18.65,18.65,0,0,1,.18-2.55c.12-.86.31-1.84.57-2.93l2.94-10.39c.26-1,.48-1.94.66-2.82a13.11,13.11,0,0,0,.26-2.45,3.76,3.76,0,0,0-.82-2.77,4.66,4.66,0,0,0-3.14-.77A8.1,8.1,0,0,0,39,47c-.79.24-1.48.46-2,.68l.78-3.2q2.88-1.18,5.52-2a16.45,16.45,0,0,1,5-.84,9.53,9.53,0,0,1,6.54,2.05A6.79,6.79,0,0,1,57.11,49c0,.46-.06,1.25-.16,2.39a16,16,0,0,1-.59,3.13L53.44,64.89a28.21,28.21,0,0,0-.65,2.84,14.83,14.83,0,0,0-.28,2.42A3.47,3.47,0,0,0,53.43,73a5.16,5.16,0,0,0,3.2.75,9.64,9.64,0,0,0,2.42-.37,14.14,14.14,0,0,0,2-.66Z" transform="translate(-2 -4)" style="fill:rgb(91,91,91)"/><circle cx="48.24" cy="25.92" r="6.76" style="fill:rgb(91,91,91)"/></svg>');
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: left 15px center;
}

.info-message-red a, .info-message-red a:visited, .info-message-blue a, .info-message-blue a:visited, .info-message-green a, .info-message-green a:visited {
	color: #dadada;
}

.text-center {
	text-align: center;
}

.text-light {
	font-weight: 300;
	letter-spacing: 0.2px;
}

.text-bold {
	font-weight: 600;
}

.underline {
	text-decoration: underline;
}

.display-inline-block {
	display: inline-block;
}

.display-inline {
	display: inline !important;
}

.header-left {
	float: left;
	width: 25%;
}

.header-right {
	float: right;
	width: 75%;
}

.header-logo {
	width: 200px;
}

.header-logo-business {
	width: 300px;
}

.header-avatar-image {
	display: block;
	width: 35px;
	cursor: pointer;
	border: 1px solid rgba(185, 185, 185, 0.65);
	border-radius: 50%;
}

.header-search-icon-svg {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.header-search-bar {
	/*visibility: hidden;*/
	/*display: none;*/

	transform: scaleX(0);
	opacity: 0;
	transition: transform .25s;
	transform-origin: 100% 50%;

	font-size: 0.9em !important;
	width: 20em !important;
}

.header-search-bar.show {
	transform: scaleX(1);
	opacity: 1;
}

.header-search-form input[type=submit] {
	display: none;
}

.nav-menu {
	float: right;
}

.nav-menu li {
	display: inline-block;
	list-style-type: none;
	margin-left: 40px;
	position: relative;
}

.nav-menu a, .nav-menu a:visited {
	color: #484848;
	text-decoration-line: none;
}

.nav-menu a:hover {
	color: #b7b7b7 !important;
}

.header-transparent .nav-menu a:hover {
	color: #d8d8d8 !important;
}

.nav-menu .sign-up-button {
	background-color: #18c375;
	padding: 10px 20px;
	border-radius: 300px;
	color: #fff !important;
}

.sign-up-button:hover {
	background-color: #1bd07d;
}

.nav-menu a.sign-up-button:hover {
	color: #fff !important;
}

.clearfix {
	clear: both;
}

.section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.box-center-center {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}

footer {
	flex-shrink: 0;
	background-color: #424242;
	padding: 20px 0 20px 0;
	margin-top: 30px;
}

.footer {
	color: #d6d6d6;
	line-height: 40px;
}

.footer-left {
	float: left;
	width: 30%;
}

.footer-right {
	float: left;
	width: 70%;
}

.footer-nav {
	float: right;
	list-style-type: none;
}

.footer-nav li {
	display: inline-block;
	margin-left: 20px;
}

.footer-nav a {
	color: #d6d6d6;
	text-decoration: none;
}

.footer-gap {
	height: 5em;
}

.left-right-vertical-align {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.side-by-side-align {
	display: flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: space-around;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

/* Modal from Bootstrap */
.modal-open {
	overflow: hidden;
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	outline: 0;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(0, -25%);
	transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}

.modal.show .modal-dialog {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal-dialog-centered {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
	display: block;
	height: calc(100vh - (0.5rem * 2));
	content: "";
}

.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: 0.5;
}

.modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #e9ecef;
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
}

.modal-header .close {
	padding: 1rem;
	margin: -1rem -1rem -1rem auto;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
}

.modal-body {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
	margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
	margin-right: .25rem;
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll;
}

.modal-close {
	font-size: 32px;
	line-height: 22px;
	cursor:pointer;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
	.modal-dialog-centered {
		min-height: calc(100% - (1.75rem * 2));
	}
	.modal-dialog-centered::before {
		height: calc(100vh - (1.75rem * 2));
	}
	.modal-sm {
		max-width: 300px;
	}
}

@media (min-width: 992px) {
	.modal-lg {
		max-width: 800px;
	}
}

.modal .modal-dialog {
	width: 400px !important;
	margin-top: 90px !important;
}

.show-modal-button {
	display: none;
}

.modal-header h4 {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.modal-footer button {
	margin-bottom: 0 !important;
}

.on-off-switch {
	position: relative; width: 85px;
	-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.on-off-switch-checkbox {
	display: none;
}
.on-off-switch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid #e3e3e3;
	border-radius: 300px;

}
.on-off-switch label {
	display: block !important;
	margin-bottom: 0 !important;
	font-weight: unset !important;
}
.on-off-switch-inner {
	display: block; width: 200%; margin-left: -100%;
	transition: margin 0.3s ease-in 0s;
}
.on-off-switch-inner:before, .on-off-switch-inner:after {
	display: block; float: left; width: 50%; height: 36px; padding: 0; line-height: 36px;
	box-sizing: border-box;
}
.on-off-switch-inner:before {
	content: "Live";
	padding-left: 10px;
	background-color: #51b34f; color: #fff;
}
.on-off-switch-inner:after {
	content: "Off";
	padding-right: 12px;
	background-color: #FFFFFF; color: #666666;
	text-align: right;
}
.on-off-switch-switch {
	display: block; width: 32px; margin: 2px;
	background: #fff;
	position: absolute; top: 0; bottom: 0;
	right: 45px;
	border: 2px solid #e3e3e3; border-radius: 36px;
	transition: all 0.3s ease-in 0s; 
}
.on-off-switch-checkbox:checked + .on-off-switch-label .on-off-switch-inner {
	margin-left: 0;
}
.on-off-switch-checkbox:checked + .on-off-switch-label .on-off-switch-switch {
	right: 0px; 
}

.transparent-background {
	background-color: rgba(255, 255, 255, 0);
}

.slightly-transparent-background {
	background-color: rgba(255, 255, 255, 0.03) !important;
}

.text-smaller {
	font-size: 15px;
}

#tooltip {
	font-size: 15px;
	text-align: center;
	color: #fff;
	background: rgba(31, 31, 31, 0.86);
	position: absolute;
	z-index: 99999;
	padding: 10px;
	border-radius: 3px;
}

#tooltip:after {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #111;
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
}

#tooltip.top:after {
	border-top-color: transparent;
	border-bottom: 10px solid #111;
	top: -20px;
	bottom: auto;
}

#tooltip.left:after {
	left: 10px;
	margin: 0;
}

#tooltip.right:after {
	right: 10px;
	left: auto;
	margin: 0;
}

.tooltip-icon {
	display: inline-block;
	background-image: url('data:image/svg+xml;utf8,<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 98 98"><path d="M98 49a49 49 0 1 0-49 49 49 49 0 0 0 49-49z" fill="rgb(188,207,224)"/><path d="M27.3 34.29a15.66 15.66 0 0 1 2.62-8.37 20.37 20.37 0 0 1 7.72-7 24.35 24.35 0 0 1 11.88-2.77 25.28 25.28 0 0 1 11.11 2.32 18 18 0 0 1 7.44 6.31 15.5 15.5 0 0 1 2.63 8.68 13.41 13.41 0 0 1-1.5 6.46 19.59 19.59 0 0 1-3.56 4.79q-2.06 2-7.4 6.8a28.93 28.93 0 0 0-2.32 2.41 9.26 9.26 0 0 0-1.33 1.87 9.14 9.14 0 0 0-.67 1.65c-.16.56-.4 1.56-.71 3-.59 2.98-2.29 4.48-5.21 4.48a5.28 5.28 0 0 1-3.8-1.48 5.81 5.81 0 0 1-1.54-4.38 16.22 16.22 0 0 1 1.13-6.32 15.77 15.77 0 0 1 3-4.68 66.75 66.75 0 0 1 5-4.8q2.77-2.43 4-3.67a12.41 12.41 0 0 0 2.13-2.74 6.72 6.72 0 0 0 .84-3.3 7.66 7.66 0 0 0-2.58-5.86 9.43 9.43 0 0 0-6.66-2.39c-3.18 0-5.53.81-7 2.41a19.12 19.12 0 0 0-3.82 7.1q-1.47 4.9-5.6 4.9A5.5 5.5 0 0 1 29 38a5.27 5.27 0 0 1-1.7-3.71zm21.18 47.56a6.81 6.81 0 0 1-4.62-1.71 6 6 0 0 1-2-4.8 6.2 6.2 0 0 1 1.91-4.6 6.46 6.46 0 0 1 4.71-1.82 6.35 6.35 0 0 1 6.44 6.42 6.07 6.07 0 0 1-2 4.78 6.6 6.6 0 0 1-4.44 1.73z" fill="rgb(255,255,255)"/></svg>');
	background-repeat: no-repeat;
	width: 13px;
	height: 13px;
	vertical-align: middle;
	cursor: help;
	margin-bottom: 2px;
}

.swal-button {
	background-color: #2086de;
	color: #fff !important;
}

.padding-inside-div {
	padding: 5%;
}

.message-box {
	overflow-x: scroll;
	height: 50vh;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
}

.messages-list-single {
	padding: 1em;
	border: 1px solid #dadada;
	border-radius: 3px;
}

.message-single-left {
	display: inline-block;
	float: left;
	padding: 0.7em;
	background-color: #328fde;
	text-align: left;
	border-radius: 15px;
	color: #fff;
	clear: both;
}

.message-single-right {
	display: inline-block;
	float: right;
	padding: 0.7em;
	background-color: #808080;
	text-align: left;
	border-radius: 15px;
	color: #fff;
	clear: both;
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}

.two-columns {
	width: 50%;
	vertical-align: middle;
}

.three-columns {
	width: 33%;
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	vertical-align: middle;
}

.four-columns {
	width: 24%;
	vertical-align: middle;
}

.five-columns {
	width: 19%;
	vertical-align: middle;
}

.align-top {
	align-self: flex-start;
}

.sweet-alert p {
	font-weight: 400 !important;
}

.sweet-alert button {
	background-color: #2086de !important;
}

.sweet-alert button:hover {
	background-color: #2397fb !important;
}

.picker__holder {
	border: 1px solid #d2d2d2 !important;
	border-radius: 5px;
}

.picker__holder:focus {
	outline: none;
}

.picker__list-item {
	border-bottom: 1px solid #e6e6e6 !important;
	border-top: 1px solid #e6e6e6 !important;
}

.header-placeholder, .header-placeholder-business {
	min-height: 60px;
	height: 60px;
	min-width: 100%;
	width: 100%;
	margin-bottom: 40px;
}

.header-placeholder-business {
	margin-bottom: 0 !important;
}

header a.for-businesses {
	font-size: 16px;
	background-color: #389ce4;
	padding: 10px 20px;
	border-radius: 300px;
	color: #fff !important;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
	margin-right: -5px;
}

header a.for-businesses:hover {
	background-color: #43a8f3;
	color: #fff !important;
}

label.label-set {
	width: 250px;
	text-align: left;
	margin-right: 25px;
}

label.label-set + input {
	vertical-align: middle;
	margin-bottom: 5px;
}

.status-green {
	min-height: 8px;
	min-width: 8px;
	height: 8px;
	width: 8px;
	max-height: 8px;
	max-width: 8px;
	display: inline-block;
	background-color: #65c759;
	border-radius: 50%;
	margin-right: 2px;
	vertical-align: 1.2px;
}

.grey-section {
	background-color: #f7f7f7;
}

.red-required {
	color: red;
}

.center-content-flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}

.center-content-flex-child {
	width: auto;
}

.int-link { /* internal link */
	color: #2a5b8e;
}

.accordion {
	margin: 20px 0;
}

.accordion-title {
	background-color: #f7f7f7;
	color: #444;
	cursor: pointer;
	padding: 17px 20px;
	width: 100%;
	border: none;
	border-radius: 4px;
	text-align: left;
	outline: none;
	transition: 0.4s;
	font-size: 17px;
	margin: 5px 0;
}

.accordion-active, .accordion-title:hover {
	background-color: #efefef;
}

.accordion-title:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-top: -18px;
}

.accordion-active:after {
	content: "\2212";
}

.accordion-content {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	font-size: 16px;
}

.accordion-content p {
	padding: 10px 0;
}

.pagination {
	margin-top: 25px;
}

.pg-button {
	padding: 6px 8px;
	margin: 0 5px;
	border-radius: 5px;
}

.pg-button-current {
	padding: 6px 8px;
	margin: 0 5px;
	border-radius: 5px;
	background-color: #528dca;
	color: #fff;
}

.select2-container .select2-selection--single {
	height: 39px !important;
}

.select2-container--default .select2-selection--single {
	border: 1px solid #e2e2e2 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin-top: 3px !important;
}

.select2-results__option {
	padding: 7px 10px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #318df9 !important;
}

.page-title {
	font-size: 36px;
}

span.select2-selection.select2-selection--single:focus, input.select2-search__field:focus {
	-webkit-transition: all 0.20s ease-in-out !important;
	-moz-transition: all 0.20s ease-in-out !important;
	-ms-transition: all 0.20s ease-in-out !important;
	-o-transition: all 0.20s ease-in-out !important;
	outline-style: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
	box-shadow: 0 0 1px #207df1 !important;
	-moz-box-shadow: 0 0 1px #207df1 !important;
	-webkit-box-shadow: 0 0 1px #207df1 !important;
	border: 1px solid #207df1 !important;
}

.cookie-consent-container {
	margin: 0;
	background: rgba(0, 0, 0, 0.68) !important;
	width: 100%;
	z-index: 999999;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: 15px 15px;
	color: #fff;
	text-align: center;
}
.cookie-consent-container p {
	font-size: 15px !important;
	padding: 0 !important;
	display: inline-block;
}
.cookie-consent-container a {
	color: #4699e2;
}
.cookie-consent-container button {
	background-color: #228ce6;
	color: #fff;
	font-size: 15px;
	padding: 7px 10px;
	display: inline-block;
	margin-bottom: 0 !important;
	margin-left: 10px;
	width: auto !important;
}
.cookie-consent-container .close-button {
	background-color: transparent;
	color: rgba(255, 255, 255, 0.89);
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.33);
	border-radius: 50% !important;
	width: 25px !important;
	height: 25px !important;
	margin-right: 10px;
	line-height: 0;
}

.form-field {
	margin-bottom: 25px;
}

label.label-field, .label-field, .form-field label {
	margin-bottom: 5px !important;
}

.pcr-app button, button.pcr-button {
	padding: 0;
	border-radius: 0.15em !important;
}
.pickr .pcr-button {
	width: 30px !important;
	height: 30px !important;
}

.swal-text {
	line-height: 28px;
	font-size: 17px;
	margin-top: 10px;
}

.business-types-header-single-text {
	margin-bottom: 40px;
}

@media (min-width: 769px) {
	.header li {
		float: left;
	}
	.header li a {
		/*padding: 20px 30px;*/
	}
	.header .nav-menu {
		clear: none;
		float: right;
		max-height: none;

		display: flex;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		align-items: center;
		justify-content: center;
	}
	.header .menu-icon {
		display: none;
	}

	.nav-menu-sub {
		/*position: absolute;
		display: none;
		top: 43px;
		right: 0;
		z-index: 99999999999;
		overflow: unset !important;
		background-color: #f7f7f7;
		border: 1px solid #cccccc;
		border-radius: 2px;
		width: auto;
		white-space: nowrap;*/

		background-color: #f7f7f7;
		border-radius: 5px;
		position: absolute;
		right: 0;
		margin-top: 5px;
		opacity: 0;
		visibility: hidden;
		transform-origin: top;
		animation-fill-mode: forwards; 
		transform: scale(0.9, 0.7) translateY(-20px);
		display: block; 
		transition: all 80ms ease;
		width: 190px;
		z-index: 99999;
		border: 1px solid rgba(0,0,0,.15);
	}

	.nav-menu-sub-visible {
		transform: scale(1, 1) translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu-sub li {
		display: block !important;
		float: unset;
		z-index: 99999999999;
		margin-left: 0 !important;
		border-bottom: 1px solid #dcdcdc;
	}

	.nav-menu-sub li a {
		padding: 15px 20px;
	}

	.sign-up-button-parent {
		margin-left: 30px !important;
	}

	.header-right-container {
		display: flex;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		align-items: center;
		float: right;
	}

	header .header .button {
		margin-bottom: 0 !important;
	}

	.header-placeholder-business + div + noscript + footer {
		margin-top: 0 !important;
	}
}

@media screen and (max-width: 1450px) {
	.container {
		width: 90%;
	}
}

@media screen and (max-width: 1024px) {
	.four-columns, .five-columns {
		width: 49%;
		margin-bottom: 20px;
	}
	.cookie-consent-container .close-button {
		display: none;
	}
	.cookie-consent-container, .cookie-consent-container p, .cookie-consent-container button {
		display: block;
		margin: 0 auto;
	}
	.cookie-consent-container p {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 900px) {
	.header-left {
		width: 35%;
	}

	.header-right {
		width: 65%;
	}

	.header-logo-business {
		width: 280px;
	}

	.three-columns {
		width: 49%;
	}
}

@media screen and (max-width: 768px) {
	.container {
		width: 90%;
	}

	.container-wide {
		width: 93%;
	}

	.header-left {
		width: 90%;
	}

	.header-right {
		width: 10%;
	}

	.header-logo {
		width: 185px;
	}

	.header-placeholder {
		margin-bottom: 20px !important;
	}

	.header-logo-business {
		width: 310px;
	}

	.header .nav-menu {
		padding: 0;
		width: 100%;
		background-color: #f7f7f7;
		margin-top: 50px;
		position: absolute;
		right: 0;
		z-index: 99999;
		overflow: hidden;
		margin-top: 35px;
		box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
		-moz-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
		-webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.08);
	}

	header.header-fixed + .body-content, header.business-logged-in-out + .body-content {
		margin-top: 65px;
	}

	.nav-menu-user {
		padding: 0 !important;
	}

	.nav-menu li {
		display: block !important;
		margin-left: 0;
		border-bottom: 1px solid #e0e0e0;
	}

	.nav-menu li a {
		padding: 20px;
	}

	.nav-menu > .business-sidebar-header > li {
		border-bottom: 1px solid #e0e0e0;
	}

	.header-right .on-off-switch {
		display: none;
	}

	.header-upgrade {
		display: none;
	}

	.div-center {
		text-align: center;
	}

	.two-columns {
		width: 100%;
	}

	.padding-inside-div {
		padding: 30px;
	}

	input[type=submit], button {
		width: 80%;
		font-size: 17px;
		padding: 10px 15px;
		display: block;
		margin: 0 auto;
		border-radius: 300px;
	}

	input[type=checkbox] {
		margin-right: 2px;
	}
	input[type=checkbox]:after, input[type=radio]:after {
		width: 18px;
		height: 18px;
		background-size: 12px 12px;
	}

	input[type=checkbox]:after {
		top: -2px;
		left: -2px;
	}

	input[type=radio]:after {
		top: -4px !important;
		left: -4px !important;
	}

	input[type=checkbox]:checked:after {
		background-position: 3px 3px !important;
	}

	.header-avatar-image {
		display: none;
	}

	.nav-menu-sub {
		position: unset;
		display: block !important;
	}

	.header-search-icon {
		display: none;
	}

	.header-search-form {
		display: none;
	}

	/* Override !important from .nav-menu li */
	li.header-search-elements {
		display: none !important;
	}

	.big-button {
		width: 90% !important;
	}

	.business-sidebar-header ul.sidebar-left-nav-submenu li {
		border-bottom: none !important;
	}

	.info-message-blue, .info-message-green, .info-message-red, .info-message-yellow {
		width: 100%;
	}

	.modal .modal-dialog {
		width: 90% !important;
	}

	.modal-footer input[type=submit], .modal-footer button {
		width: auto;
		display: inline-block;
	}

	label.label-set {
		display: block;
		width: 100%;
		margin-bottom: 5px !important;
	}

	.section {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}

@media screen and (max-width: 653px) {
	.nav-menu {
		margin-top: 41px;
	}
	
	.input-large {
		width: 100% !important;
	}

	.div-box-center {
		width: 100% !important;
	}

	.footer-left, .footer-right, .footer-nav {
		float: unset;
		width: 100%;
	}

	.footer-right {
		margin-top: 0.5em;
	}

	.footer-nav .first {
		margin-left: 0em;
	}

	.footer-gap {
		height: 7em;
	}

	.footer-nav li {
		display: block;
		margin-left: 0;
	}

	.footer-nav a {
		display: block;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.footer-nav .first {
		margin-top: 20px;
	}
}

@media screen and (max-width: 500px) {
	h1 {
		font-size: 30px;
	}

	h2 {
		font-size: 27px;
	}

	h3 {
		font-size: 25px;
	}

	h4 {
		font-size: 23px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

	p {
		font-size: 16px;
	}

	input[type=submit], button {
		width: 90%;
		padding: 12px 15px;
	}

	select, textarea {
		width: 100% !important;
	}

	.header-logo-business {
		width: 270px;
	}

	.three-columns {
		width: 100%;
	}

	.four-columns, .five-columns {
		width: 100%;
	}
}

@media screen and (max-width: 350px) {
	input[type=text], input[type=password], input[type=number], textarea, select {
		width: 100%;
	}
}