@charset "UTF-8";

html {
    width: 100%;
}
body {
	padding: 0px;
	margin: 0px;
	font-family: 'alto_pronormal';
	font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	background-color: rgb(255,255,255);
    color: rgb(30,30,30);
    cursor: default;
    -webkit-overflow-scrolling: hidden;
}
a {
	text-decoration:none;
    color: rgb(253,95,0);
}
a.underline:hover {
    text-decoration: underline;
}
div, img {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li {
	padding: 0px;
	margin: 0px;
	font-weight:normal;
}
h1 {
	font-family: 'alto_pronormal';
	font-size: 28px;
	margin-bottom: 14px;
}
h2 {
	font-family: 'alto_promedium';
	font-size: 14px;
	text-transform: uppercase;
}
h3 {
	margin-bottom: 4px;
	font-size: 16px;
	text-transform: uppercase;
}
strong {
	font-weight: normal;
	font-family: 'alto_probold';
}
input, textarea, select {
	border-radius: 0px;
	-webkit-border-radius: 0px;
    font-family: 'alto_pronormal';
    font-size: 16px;
    border: solid 1px rgb(204,204,204);
    outline: none;
    resize:none;
    -webkit-appearance: none;
    -moz-appearance: none;
	margin: 0px;
	color: rgb(30,30,30);
}
select::-ms-expand {
  display:none;
}
input[type='checkbox'],
input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
	transition: all 100ms ease;
}
input[type='checkbox']:checked,
input[type='checkbox']:not(:checked),
input[type='radio']:checked,
input[type='radio']:not(:checked) {
  background: transparent;
  position: relative;
  visibility: hidden;
  margin:0;
  padding:0;
  display: none;
}
input[type='checkbox']:checked + label::before,
input[type='checkbox']:not(:checked) + label::before,
input[type='radio']:checked + label::before,
input[type='radio']:not(:checked) + label::before {
    content:' ';
    display:inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 4px;
    border: solid 1px rgb(180,180,180);
    background: rgb(246,246,246);
    margin-right: 8px;
    box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.1);
}
input[type=radio]:checked + label::before,
input[type=radio]:not(:checked) + label::before {
  border-radius: 30px;
}
input[type='checkbox']:hover  + label::before,
input[type='radio']:hover  + label::before {
  background: rgb(220,220,220);
  box-shadow: inset 0 0 0 2px rgb(246,246,246);
}
input[type='checkbox']:checked  + label::before,
input[type='radio']:checked  + label::before {
  background: rgb(90,90,90);
  box-shadow: inset 0 0 0 2px rgb(246,246,246);
}
label {
	margin-right: 14px;
}
#main {
    position: relative;
	width: 100%;
}
.main-blur {
    filter: blur(6px);
    -webkit-filter: blur(6px);
}
.button-save {
    border: none;
    background-color: rgb(96,125,153) !important;
    text-shadow: 1px 1px 0px rgb(90,90,90) !important;
    padding: 14px 36px;
    color: #FFF !important;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'alto_probold' !important;
    cursor: pointer;
    display: inline-block;
    border-bottom: solid 2px rgb(64,93,124) !important;
}
.button-standard {
    text-shadow: none;
    border: solid 1px rgb(253,95,0);
    background-color: rgba(246,246,246,0);
    color: rgb(253,95,0);
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'alto_pronormal';
    cursor: pointer;
    display: inline-block;
    margin: 0px;
    transition: all 200ms ease;
}
.button-standard:hover {
    background-color: rgb(253,95,0);
    color: rgb(246,246,246);
	border-color: rgb(253,95,0);
}
.button-rev {
    text-shadow: none;
    border: solid 1px rgb(64,93,124);
	background-color: rgb(64,93,124);
	border-color: rgb(64,93,124) !important;
    color: rgb(246,246,246);
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'alto_pronormal';
    cursor: pointer;
    display: inline-block;
    margin: 0px;
    transition: all 200ms ease;
}
.button-rev:hover {
    background-color: rgba(246,246,246,0);
    color: rgb(64,93,124);
}
.button-slim {
    padding: 8px 24px !important;
}
.button-standard.big {
    padding: 12px 16px;
    font-size: 24px;
    margin-top: 36px;
}
.popups-wrap {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    display: -webkit-box;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flexbox;
    display: flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
    align-items: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
    justify-content: center;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
    flex-direction: column;
    opacity: 0;
}
.popups-box {
    position: relative;
    background-color: rgb(255,255,255);
    box-shadow: 0px 0px 10px rgba(30,30,30,0.2);
    overflow: auto;
    z-index: 1001;
    margin: 8px;
}
.popups-close {
    background-color: rgba(246,246,246,0.8);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
}
.text-highlight {
    font-style: normal;
    border-radius: 100px 0 52px 0;
    background-image: linear-gradient(180deg, rgba(253,95,0,0), rgba(253,95,0,0.0) 60%, rgba(253,95,0,0.6) 60%, rgba(253,95,0,0.6) 84%, rgba(253,95,0,0) 84%, rgba(253,95,0,0) );
}