
:root {
	--tone: #a8c051;
    --tone-dark: #4c5c14;
	
	--white: #FFF;
	--dark: #020202;
	--dark-grey: #6C6C6C;
	--success: #7EB76B;
	--error: #DC4646;
	
	--border-grey: #EAEAEA;
	--light-grey: #f8f8f8;
	--border-radius: 5px;
	--container-width: 1040px;
	--divider-color: #81b9d5;
}
  
*,
*::before,
*::after {
box-sizing: border-box;
}
html, body{
    scroll-behavior: smooth;
    margin: 0;
    font-family: 'Roboto Flex', sans-serif !important;

}
body.lock-scroll {
    overflow: hidden;
}
[v-cloak]{display: none;}

/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
.tone{color: var(--tone-color);}
.tone-light{color: var(--tone-highlight);}
.tone-dark{color: var(--tone-dark);}
.secondary{color: var(--tone-secondary);}
.tone-red{color: var(--tone-red);}
.white{color: white !important;}
.dark{color: var(--dark);}
.dark-grey{color: var(--dark-grey);}
.light-grey{color: var(--text-light);}
.success{color: var(--success);}
.error{color: var(--error);}

.bg-tone{ background-color: var(--tone-color);}
.bg-secondary{ background-color: var(--tone-secondary);}

.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;}

a{color: var(--tone) !important;}
a:hover{color: var(--tone-dark) !important;}

.page-section{
    padding: 80px 0
}
.page-section.xl{
    padding: 120px 0
}

.row.large-gutter{
	--bs-gutter-x: 5.5rem !important; 
}

.btn{
    padding: 10px 30px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 15px;
    font-family: 'Roboto Flex', sans-serif !important;
}
.btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
.btn.btn-white{
    border: solid 1px white !important;
    background-color: white !important;
}
.btn.btn-white:hover{
    border: solid 1px whitesmoke;
    background-color: whitesmoke;
}
.btn.btn-tone{
    color: white;
    border: solid 1px var(--tone-dark);
    background-color: var(--tone-dark);
}
.btn.btn-tone:hover{
    border: solid 1px var(--tone);
    background-color: var(--tone);
}
.btn.btn-default{
    color: var(--tone-dark);
    border: solid 1px #c4c4c4;
    background-color: #c4c4c4;
}
.btn.btn-default:hover{
    border: solid 1px #c4c4c4;
    background-color: #c4c4c4;
}

.btn.btn-dark{
    background: var(--tone-dark);
     border: solid 1px var(--tone-dark);
     color: white;
}
.btn.btn-dark:hover{
    background: var(--tone-blue);
     border: solid 1px var(--tone-blue);
     color: white;
}

.btn.btn-sm{
	padding: 8px 15px !important;
}


.section-subtitle{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--tone-red);
    margin-bottom: 0 !important;
    letter-spacing: 0.2em;
}
.section-title{
    margin-top: 0 !important;
    color: #353839;
    font-weight: 600;
    font-size: 40px;
}
@media (max-width:992px){
    .section-subtitle{
        font-size: 16px;
    }
}


/**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 .form-label{
	margin-bottom: 5px;
}




/*BUEFY EDITS */
.button.is-primary {
    background-color: var(--tone-dark) !important;
    border-color: transparent;
    color: #fff;
}
.button.is-primary[disabled], fieldset[disabled] .button.is-primary {
    background-color: var(--tone-dark) !important;
    border-color: transparent;
    box-shadow: none;
}

.form-label{
	font-weight: 600;
	font-size: 14px;
}
.switch .control-label{
	margin-top: 6px !important;
}

.switch input[type=checkbox]:checked+.check.is-success{
	background: #125170 !important;
}
.b-radio.radio input[type=radio]:checked+.check{
	border-color: #125170 !important;
}
.b-radio.radio input[type=radio]+.check:before{
	background-color: #125170 !important;
}

.divider{
	border-bottom: solid 1px var(--divider-color);
}
.tabs a {
    color: #04141c !important;
}
.tabs li.is-active a{
	border-bottom-color: var(--tone) !important;
}
.pagination .pagination-next, .pagination .pagination-previous{
	color: black !important;
}
.pagination-link.is-current{
	color: white !important;
	    background-color: var(--tone-dark) !important;
    border-color: var(--tone-dark) !important;
}

.dropdown-content .dropdown-item{
	color: var(--dark-grey) !important;
}

.switch input[type=checkbox]:checked+.check{
	background: var(--tone-dark) !important;
}