
:root {
	--tone-color: #ebc553;
    --tone-dark: #a59053;
    --bg-grey: #232323;
	
	--white: #FFF;
	--dark: #000;
	--border-grey: #474747;
	--dark-border-grey: #1a1a1a;
}


body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}



/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.tone{color: var(--tone-color);}
.tone-dark{color: var(--tone-dark);}
.white{color: white !important;}
.dark{color: var(--dark);}

.bg-tone{ background-color: var(--tone-color);}
.bg-grey{ background-color: var(--bg-grey);}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: 600;}
.medium{font-weight: 500;}
.light{font-weight: 300;}

.text-center{text-align: center;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs12{font-size:12px !important;}
.fs20{font-size:20px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs36{font-size:36px !important;}
.fs48{font-size:48px !important;}
.fs64{font-size:64px !important;}
.fs100{font-size:100px !important;}


@media (max-width:768px){
    .center-mobile{
    	text-align: center;
    }
    .center-mobile .d-flex{
    	justify-content: center;
    	align-items: center;
    }
    .center-mobile img{
    	margin: auto;
    }
}

/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black;
	color: white;
	max-width: 90%;
	margin: auto;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
	
}




.form-group{
	margin-bottom: 15px;
}

.form-group label{
	font-weight: bold;
	display: inline-block;
	font-size: 20px;
	margin-bottom: 5px;
}
.form-group input{
	height: 55px;
	line-height: 55px;
}
.form-group input, textarea{
	color: white;
	    font-family: 'Clash Display', sans-serif;

	border: none;
    border-bottom: 1px solid #d1d0d0;
    font-size: var(--fs05);
    padding: 5px 0;
    background-color: transparent;
    width: 100%;
    margin-bottom: 0;
    transition: margin-bottom .25s ease-in-out;
    -moz-transition: margin-bottom .25s ease-in-out;
    -o-transition: margin-bottom .25s ease-in-out;
    -webkit-transition: margin-bottom .25s ease-in-out;
}

.form-group input:focus, textarea:focus{
	outline: none;
	border-bottom: 1px solid var(--tone-color);
}
.form-group input:focus, textarea:focus{
	outline: none;
	border-bottom: 1px solid var(--tone-color);
}