
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


@font-face {
    font-family: 'DIN';
    src: url('/assets/font/DIN-Condensed-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('/assets/font/DIN-Condensed.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Mordova';
    src: url('/assets/font/Mordova.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

* {
    font-family:var(--font-body);
    -webkit-tap-highlight-color: transparent; 
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.text-gray {
    color:var(--theme-gray-1);
}
.text-dark {
    color:var(--theme-dark);
}



html.is-changing .transition-fade {
  transition: opacity 0.18s;
  opacity: 1;
}
html.is-animating .transition-fade {
  opacity: 0;
}

html.is-changing .transition-slideup {
    transform: translateY(0px);
    opacity: 1;
    transition: all 0.18s ease;
}
html.is-animating .transition-slideup {
    transform: translateY(40px);
    opacity: 0;
}


html.is-changing .transition-slideover {
    transform: translateY(0px);
    opacity: 1;
    transition: all 0.18s ease;
}
html.is-animating .transition-slideover {
    transform: translateX(40px);
    opacity: 0;
}

.installBtn.button {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    border-radius: 0;
}

.button {
    font-weight:400;
	border-radius:100px;
	text-transform:uppercase;
	-webkit-appearance:none;
	border:none;
	border:1px solid var(--button-color-dark);
	background: var(--button-color-dark);
	color:var(--button-color-light);
	text-decoration:none;
	padding:10px 32px;
	font-family:var(--font-button);
	font-size:var(--button-size);
	text-align: center;
	letter-spacing:3px;
	white-space:nowrap;
    cursor:pointer;
}
.button:active, .button:hover {
    filter: brightness(1.2);
}
.button.outline {
	border:1px solid var(--button-color-dark);
	background:transparent;
	color:var(--button-color-dark);
}
.button.outline:active, .button.outline:hover {
    
    background:rgba(0,0,0,0.1);
}
.button.light {
    border:1px solid var(--button-color-light);
	background: var(--button-color-light);
	color:var(--button-color-dark);
}
.button.light:active, .button.light:hover {
    filter: brightness(0.9);
}
.button.outline.light {
    border:1px solid var(--button-color-light);
	background:transparent;
	color:var(--button-color-light);
}
.button.light.outline:active, .button.light.outline:hover {
    background:rgba(255,255,255,0.1);
}
.button.full-width {
    width:100%;
}
h1 {
	text-transform: uppercase;
    letter-spacing:2px;
}
h2 {
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:2px;
}


p {
	font-size:var(--p-size);
	line-height:150%;
}

input {
	-webkit-appearance: none;
	border: 1px solid var(--theme-gray-1);
	border-radius: 2px;
    font-family:var(--font-body);
    font-size:16px;
}
input[disabled]{
    opacity:0.4;
}
input[type="text"], input[type="email"], input[type="tel"]{
    background: transparent;
    display: block;
    width: 100%;
    outline: none;
    padding: 8px;
}
select {
    width: 100%;
    outline: none;
    border-radius: 2px;
    background: transparent;
    padding: 8px;
    border: 1px solid var(--theme-dark);
    color: var(--theme-dark);
}
textarea {
    background: transparent;
    display: block;
    width: 100%;
    outline: none;
    padding: 8px;
    min-height:120px;
    font-size:16px;
}
input[type="date"]{
    background: transparent;
    display: block;
    width: 100%;
    outline: none;
    padding: 8px;
}
input[type="password"]{
    background: transparent;
    display: block;
    width: 100%;
    outline: none;
    padding: 8px;
}

label {
	font-family: var(--font-body);
    font-size: var(--p-size);
    margin-bottom:4px;
    display:block;
}

.dusty-button {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}