/*
Theme Name: VitalHuman
Author: Online Klik
Author URI: https://onlineklik.nl
Version: 1.2
*/

/* || Intialize fonts */
/* Rosie */
@font-face {
    font-family: "RosieBold";
    src: url(assets/fonts/Rosie/Rosie-Bold.otf);
    font-weight: normal;
    font-style: normal;
}

/* Valky */
@font-face {
    font-family: "ValkyRegular";
    src: url(assets/fonts/Valky/Valky.otf);
    font-weight: normal;
    font-style: normal;
}

/* The Seasons */
@font-face {
    font-family: "TheSeasonsBold";
    src: url(assets/fonts/TheSeasons/TheSeasons-Bd.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "TheSeasonsRegular";
    src: url(assets/fonts/TheSeasons/TheSeasons-Reg.otf);
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

/* Rosie */
.rosie-bold {
    font-family: RosieBold !important;
}

/* Valky */
.valky-bold {
    font-family: ValkyRegular !important;
}

/* The Seasons */
.the-seasons-bold {
    font-family: TheSeasonsBold !important;
}
.the-seasons-regular {
    font-family: TheSeasonsRegular !important;
}

/* Degular */
.degular-bold {
    font-family: degular, sans-serif !important;
    font-style: normal;
    font-weight: 700;
}
.degular-medium {
    font-family: degular, sans-serif !important;
    font-style: normal;
    font-weight: 500;
}
.degular-regular {
    font-family: degular, sans-serif !important;
    font-style: normal;
    font-weight: 400;
}
.degular-thin {
    font-family: degular, sans-serif !important;
    font-style: normal;
    font-weight: 300;
}

/* Fonts */
h1,
h2, 
h3, 
h4, 
h5, 
h6,
span,
a,
th,
td,
li,
label,
strong,
p {
    margin-block-start: 0;
    margin-block-end: 0;
}

span,
a,
th,
td,
li,
label,
strong,
p,
input,
input::placeholder,
textarea,
textarea::placeholder  {
    font-family: degular, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #A1AB96;
}

h1,
h2, 
h3, 
h4, 
h5, 
h6 {
    font-family: TheSeasonsBold;
    color: #A1AB96;
    font-weight: 700;
    font-style: normal;
}

/* Standard page styles */
html {
	scroll-behavior: smooth;
}
html,
body {
    padding: 0 !important;
    margin: 0 !important;
    overflow-y: overlay;
    min-height: 100vh;
    background-color: white;
    font-family: degular, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #A1AB96;
    max-width: 100vw;
    overflow-x: hidden;
}
body.login {
	flex-direction: column;
}

/* default container and wrapper */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1180px;
}

ul:not(.ab-top-menu) {
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

ul:not(.ab-top-menu) > li {
    display: inline-flex;
    align-items: center;
    color: #A1AB96;
    gap: 8px;
    width: 100%;
}

/*Afstandshouders transition */
.afstandhouder {
    transition: all .25s ease-out;
    overflow: hidden;
}

/* Contact form 7 spinner */
.wpcf7-response-output {
    margin: 3.5em 0 0!important;
    border-color: #A1AB96 !important;
    font-family: degular, sans-serif;
    font-style: normal;
    font-weight: 400;
}

.wpcf7-spinner {
    display: none !important;
    margin: 0 auto !important;
}

a {
    cursor: pointer;
}

/* Remove default style of link */
a:link,
a:link > * { 
    text-decoration: none; 
}
a:visited,
a:visited > * { 
    text-decoration: none; 
}
a:hover,
a:hover > * { 
    text-decoration: underline; 
}
a:active,
a:active > * { 
    text-decoration: none; 
}

/* Butttons */
.button {
    background-color: #ffffff;
    color: #A1AB96;
    border: 2px solid #A1AB96;
    border-radius: 20px;
    padding: 15px 63px;
    font-size: 20px;
    line-height: 26px;
    font-family: degular, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}
.button:hover {
    text-decoration: none;
    background: #FFF6F2;
}