/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*********************

	DEFAULT

*********************/
* {
	margin: 0;
}
html, body {
	color:var(--main-color);
	height: 100%;
	font-size:14px;
	line-height: 1.8;
	letter-spacing: 0.6px;
	font-family: roboto;
}
@font-face {
    font-family: roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: robotoBold;
    src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
    font-family: robotoLight;
    src: url(../fonts/Roboto-Light.ttf);
}
h1{
	color:var(--header);
	font-size: 2em;
	margin-bottom:1.5em;
	font-weight: bold;
}
h2{
	color:var(--header);
	font-size: 1.5em;
	margin-bottom:1em;
	font-weight: bold;
}
h3{
	color:var(--header);
	font-size: 1.3em;
	margin-bottom:0.6em;
	font-weight: bold;
}
p{
	margin-bottom: 0.5em;
}
b{
	font-weight: bold;
}
a{
	color:var(--main-red-color);
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
:root {
  --header: #010101;
  --main-color: #7f7f7f;
  --main-bg-color: #f37b7b;
  --main-red-color: #f75555;
  --main-blue-color: #7f98f5;  
  --main-yellow-color: #b7c113;
  --main-white-color: #f5f5f5;
  --main-green-color: #42d847;
  --main-gray-color: #a5a5a5;
  --main-lightgray-color: #e5e5e5;
  --main-dark-color: #727272;
  --main-bronze-color: #c64c05;
  --main-silver-color: #b7b7a2;
  --main-gold-color: #d9dc1a;
}
.flex-right{
	display: flex;
    flex-direction: row-reverse;
}
.flex-between{
	display: flex;
    justify-content: space-between;
}
.grid-half{
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.loader{
	width:20px;
	height:20px;
	border:3px solid var(--main-bg-color);
	border-top:3px solid #fff;
	animation: spin 1s linear infinite;
	border-radius: 50%;
	display: inline-block;
}
.btn .loader{
	position: absolute;
	top:50%;
	left:50%;
	margin-left: -13px;
	margin-top: -13px;
}
.hide{
	display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.shadow{
	box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0,0,0,.12);
}
.icon{
	display: inline-block;
}
.gray{
	color:var(--main-gray-color);
}
.red{
	color:var(--main-red-color);
}
.blue{
	color:var(--main-blue-color);
}
.yellow{
	color:var(--main-yellow-color);
}
.green{
	color:var(--main-green-color);
}
.bronze{
	color:var(--main-bronze-color);
}
.silver{
	color:var(--main-silver-color);
}
.gold{
	color:var(--main-gold-color);
}

.wrapper{
	max-width: 1100px;
	margin:auto;
	padding:60px 20px;
}
.halfGrid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	align-items: center;
}

.btn{
	display: inline-block;
	padding:8px 0px;
	text-align: center;
	border-radius: 20px;
    box-shadow: 1px 2px 4px rgb(38 38 38 / 42%);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.btn.fat{
	padding:20px;
	border-radius: 50px;
}
.btn.big{
	width: 100%;
}
.cta{
	background: var(--main-red-color);
	color:#f5f5f5;
	font-size: 1.2em;
}
.cta:hover{
	background: rgb(247 85 85 / 90%);
	color:#fff;
}

#startChecklist{
	margin-bottom: 0.8em;
}

#loginWrapper,#newAccountWrapper{
	max-width: 500px;
	margin:auto;
}
#newAccountWrapper{
	text-align: center;
	max-width: 320px;
}
#envelope{
	font-size: 3em;
}
#closeFS{
	margin-top: 1.5em;
}

#createUserAccount,#loginButton{
	margin-top:1.5em;
}

.loader{
	width:20px;
	height:20px;
	border:3px solid var(--main-bg-color);
	border-top:3px solid #fff;
	animation: spin 1s linear infinite;
	border-radius: 50%;
	display: inline-block;
}
.btn .loader{
	position: absolute;
	top:50%;
	left:50%;
	margin-left: -13px;
	margin-top: -13px;
}
.hide{
	display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/*****************

	MENU

*****************/

#logo{
	height:30px;
	vertical-align: middle;
}

#menu{
	max-width: 1100px;
	margin:auto;
	line-height: 60px;
	padding-left:20px;
	height:60px;
	display:grid;
	grid-template-columns: 180px 1fr;
}
#mainNav{
	text-align:right;
}
#mainNav .item{
	height:100%;
	display: inline-block;
	padding:0px 30px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
#mainNav .item:hover{
	background: var(--main-red-color);
	color:var(--main-white-color);
}

/*****************

	Intros

*****************/
.intro{
	background-size: cover;
}
#ontargo{
	background-image: radial-gradient( ellipse 100% 100% at 100% 100%, rgb(251, 84, 43,0.9) 0%, rgb(169, 27, 120,0.9) 46%, rgb(57, 45, 209, 0.9) 100% ),url(../images/ontargo-intro-bg.jpg);
	padding:50px 0px;
	text-align: center;
}
#ontargo h1{
	color:var(--main-white-color);
}
#phonesWrapper{
	text-align: center;
}
#phones{
	height: 210px;
}

/*****************

	FOOTER

*****************/
#footer{
	background: #383940;
	color:var(--main-white-color);
}
#footer .wrapper{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#footer h3{
	color:var(--main-white-color);
}
#footer ul li,#footer a{
	color:var(--main-gray-color);
}

/*********************

	FULLSCREEN

*********************/
#fullScreen{
	width:calc(100% - 60px);
	height:100%;
	position: fixed;
	top:0;
	left:0;
	z-index: 100;
	background: #fff;
	padding:30px;
	animation: fadein 0.3s;
}
#appendedFullScreen{
	background: #fff;
	animation: fadein 0.3s;
}
#goBackFS{
	opacity: 0;
	border: 5px solid #d0d0d0;
    color: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}
#fullScreen .top{
	margin-bottom: 30px;
}
#fullScreen .smallCentered{
	max-width: 600px;
	margin:auto;
}
#fullScreen .onput.marginBottom{
	margin-bottom: 7px;	
}
#closeFullScreen{
	border: 5px solid #d0d0d0;
	color:#d0d0d0;
	border-radius: 50%;
	display:inline-block;
	height:32px;
	width:32px;
	line-height: 32px;
	text-align: center;	
	cursor: pointer;
}
#fsModal{
	width:50%;
	height: calc(100% - 60px);
	top:0;
	left:-100%;
	position:absolute;
	z-index: 101;
	transition: all 0.3s ease-in-out;
	background: white;
	box-shadow: 0px 3px 3px gray;
	overflow: scroll;
}
#fsModal.show{
	left:0%;
}

/*********************

	INPUTS

*********************/
.onput{	
	position: relative;
	width: 100%;
}
.mobilephoneGrid{
	display:grid;
	grid-template-columns: 120px 1fr;
	grid-gap: 13px;
}
.onput .helper{
	min-height: 13px;
}
.onput .errorMsg{
	padding-top: 3px;
    padding-left: 8px;
    font-size: 10px;
    color: var(--main-red-color);
}
.onput label{
	display: grid;
	grid-template-columns: 1fr 40px;
	background: #eaeaea;
}
.onput.noLabelGrid label{
	display: block;
}
.onput .icon{
	display: grid;
    justify-content: center;
    align-items: center;
}
.onput .icon .tempIcon{
	color: var(--main-red-color);
}
.onput.upload label{
	cursor:pointer;
}
.label{
	position: absolute;
	top:0;
	left:8px;
	transform: translateY(10px);
	transition: all 0.1s ease-in-out;
}
input,textarea,select{	
	border:none;
	outline:none;
	background: #eaeaea;
	padding-top:20px;
	padding-bottom:4px;
	padding-left: 8px;
	padding-right: 8px;
	width: calc(100% - 16px);
}
input:read-only,.onput.readonly .icon{
	background: #fff;
}
.inputLike{
	border:none;
	outline:none;
	background: #eaeaea;
	padding-left: 8px;
	padding-right: 8px;
	width: calc(100% - 16px);
	height:40px;
}
input:focus,
textarea:focus,
select:focus{
	background: #dedede;
}
.onput.presetLabel .label,
input:read-only ~ .label,
input:focus ~ .label,
input:valid ~ .label,
textarea:focus ~ .label,
textarea:valid ~ .label,
select:focus ~ .label,
select:valid ~ .label,
input.readonly ~ .label{
	font-size: 10px;
	transform: translateY(6px);
	color:#949494;
}
input.readonly{
	background: #fff;
}

.onOff {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 21px;
}

.onoffGrid{
	display:grid;
	grid-template-columns: 1fr 60px;
	padding: 8px 28px 8px 8px;
	line-height: 21px;
}

/* Hide default HTML checkbox */
.onOff input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.onOff-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.onOff-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .onOff-slider {
  background-color: #2196F3;
}

input:focus + .onOff-slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .onOff-slider:before {
  -webkit-transform: translateX(35px);
  -ms-transform: translateX(35px);
  transform: translateX(35px);
}

/* Rounded sliders */
.onOff-slider.round {
  border-radius: 34px;
}

.onOff-slider.round:before {
  border-radius: 50%;
}

/***************

	Snackbar

***************/

.paper-snackbar {
  transition-property: opacity, bottom, left, right, width, margin, border-radius;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  font-size: 14px;
  min-height: 14px;
  background-color: #323232;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  line-height: 22px;
  padding: 18px 24px;
  bottom: 0px;
  left:0px;
  opacity: 0;
  z-index: 10001;

}

@media (min-width: 640px) {
  .paper-snackbar {
    min-width: 288px;
    max-width: 568px;
    display: inline-flex;
    border-radius: 2px;
    margin: 24px;
    bottom: -100px;
    
  }
}

@media (max-width: 640px) {
  .paper-snackbar {
    left: 0px;
    right: 0px;
  }
}

.paper-snackbar .action {
  background: inherit;
  display: inline-block;
  border: none;
  font-size: inherit;
  text-transform: uppercase;
  color: #ffeb3b;
  margin: 0px 0px 0px 24px;
  padding: 0px;
  min-width: min-content;
}



@media (max-width: 640px) {
  .halfGrid{
    grid-template-columns: 1fr;
  }
}