:root {
	/* Colors */
	--primary: #939599;
	--primary-bg: #e3f4ff;
	--primary-dark: #626365;
	--primary-light: #bbbfc6;

	--secondary: #e42726;
	--secondary-bg: #e4f1f7;
	--secondary-dark: #941313;
	--secondary-light: #ff5050;

	--tertiary: #231F20;
	--tertiary-bg: #ecedef;
	--tertiary-dark: #0e0d0e;
	--tertiary-light: #544a4c;

	/* Fonts */
	--font-family-heading: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-sans-serif: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--line-height: 1.5;

	/* Borders */
	--button-border: 2px;
	--dropdown-border: 1px;
	--input-border: 2px;
	--panel-border: 1px;

	/* Radii */
	--button-radius: 0.25rem;
	--dropdown-radius: 0.25rem;
	--input-radius: 0.25rem;
	--panel-radius: 0.5rem;

	/* Padding */
	--button-padding: 1rem;
	--dropdown-padding: 1rem;
	--input-padding: 1rem;
	--panel-padding: 1rem;

	--navigation-height: 6rem;
}

/* Responsive breakpoints, mobile first. Graag bij gerelateerde component gebruiken, niet één per style sheet. */
@media only screen and (min-width: 576px) {
	/* Small (sm) */
}
@media only screen and (min-width: 768px) {
	/* Medium (md) */
}
@media only screen and (min-width: 992px) {
	/* Large (lg) */
}
@media only screen and (min-width: 1200px) {
	/* Extra large (xl) */
}

/* Scroll smooth naar anchors op de pagina. */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
	html {
		scroll-behavior: unset;
	}
}

/* Zorg dat er niet buiten de pagina gescrolt kan worden. */
body {
	overscroll-behavior-y: none;
}

hr {
	background-color: currentColor;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin-bottom: 1.25rem;
	font-weight: 700;
}

b,
strong,
.strong {
}

p,
.p,
li {
	line-height: 27px;
}

p,
.p,
label,
.label,
legend,
.legend {
}

input {
	accent-color: var(--primary-dark);
}

small,
.small {
}

.content-template-default img:not(.carousel-item img) {
	border-radius: 0.5rem;
}

/* Navigatie balk mee laten scrollen. */
.nav-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: white;
}
@media screen and (min-width: 992px) {
	#adminbar + * .nav-header {
		top: 3.5rem;
	}
}

/* Navigatie toggler met open en sluit animatie. */
.navbar-toggler {
	border: none;
}
.navbar-toggler-icon {
	position: relative;
	background-image: none !important;
}
.navbar-toggler-icon i {
	display: block;
	position: absolute;
	height: 0.1em;
	width: 100%;
	left: 0;

	background-color: white;
	transition-property: left, top, transform, width;
	transition-duration: 250ms;
}
.navbar-toggler-icon i:nth-child(1) {
	top: calc(20% - 0.05em);
}
.navbar-toggler-icon i:nth-child(2) {
	top: calc(50% - 0.05em);
}
.navbar-toggler-icon i:nth-child(3) {
	top: calc(80% - 0.05em);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(1) {
	top: calc(50% - 0.1em);
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(2) {
	width: 0;
	left: 50%;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(3) {
	top: calc(50% - 0.1em);
	transform: rotate(-45deg);
}

/* NAVBAR */

header .navbar {
	background-color: var(--tertiary);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.15);
    box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.15);
}

header .navbar span,
header .navbar a,
header .navbar a:after {
	color: white;
	transition: 0.3s ease-out;
}

header .navbar .nav-link:hover span,
header .navbar .nav-link:focus span,
header .navbar .nav-link:hover::after,
header .navbar .nav-link:focus::after {
	color: var(--secondary-light);
}

header .navbar .navbar-contact a:last-child {
	padding-right: 0;
}

header .navbar .btn-link:hover span,
header .navbar .btn-link:focus span,
header .navbar .btn-link:hover,
header .navbar .btn-link:focus{
	color: var(--secondary-light);
}

header .navbar a.active span {
	color: var(--secondary-light);
}

header .navbar a.active:hover span,
header .navbar a.active:focus span {
	color: white;
}

header .dropdown-menu a span{
	color: black;
	transition: 0.3s ease-out;
}

header .dropdown-menu a:hover,
header .dropdown-menu a:focus {
	background-color: var(--tertiary);
}

header .dropdown-menu a:hover span,
header .dropdown-menu a:focus span {
	color: white;
}

header .dropdown-menu a.active{
	background-color: var(--tertiary);
}

header .dropdown-menu a.active span{
	color: white;
}

header .dropdown {
	justify-items: center;
}

header .navbar .nav-link.active::after {
	color: var(--secondary-light);
}

header .navbar .nav-link.active:hover::after,
header .navbar .nav-link.active:focus::after {
	color: white;
}

header .dropdown-menu a.active:hover,
header .dropdown-menu a.active:focus {
	background-color: white;
}

header .dropdown-menu a.active:hover span,
header .dropdown-menu a.active:focus span {
	color: black;
}

/* Buttons */

.btn {
	border-radius: 9999px !important;
	transition: 0.3s ease-out;
}

.btn-link {
	color: black;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: white;
	color: var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: white;
	color: var(--secondary);
}

.btn-tertiary:hover,
.btn-tertiary:focus {
	background-color: white;
	color: var(--tertiary);
}

.btn-link:hover,
.btn-link:focus {
	color: var(--secondary) !important;
}

.btn-success:not(.btn-admin):hover,
.btn-success:not(.btn-admin):focus {
	background-color: white;
	color: var(--success);
}

/* HEADER CAROUSEL */

.header .carousel-caption {
	padding-bottom: 0;
}

.header .carousel-inner:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.3);
}

.header .carousel-caption h1 {
	text-shadow: 2px 2px 2px black;
	font-size: 1rem;
}
@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.header .carousel-caption h1 {
		text-shadow: 2px 2px 2px black;
		font-size: 1.5rem;
	}
}
@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.header .carousel-caption h1 {
		text-shadow: 2px 2px 2px black;
		font-size: 2.5rem;
	}
	.header .carousel-caption {
		padding-bottom: 5rem;
	}
}

/* MAIN */

.content-subtemplate-home section:nth-child(1n + 2) {
	padding: 2rem 0;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.content-subtemplate-home section:nth-child(1n + 2) {
		padding: 4rem 0;
	}
}

.content-subtemplate-home section:nth-child(2n + 3) {
	background-color: var(--tertiary);
	color: white;
}

/* SECTION INTRO */

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.main [data-partial="image"] {
		min-height: 400px;
	}

	.main .text-main {
		align-content: center;
	}
}

/* DIENSTEN SLIDER */

section.lunch-slider .flex-slider {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

section.lunch-slider .flex-slider::-webkit-scrollbar {
	display: none;
}

section.lunch-slider .lunch-item .title {
	font-family: var(--font-family-heading);
	font-size: 1.75rem;
}

section.lunch-slider .lunch-item {
	position: relative;
	min-width: 260px;
	max-width: 300px;
	aspect-ratio: 1/1;
	margin-right: 1.5rem;
	padding-bottom: 2rem;
}

section.lunch-slider .lunch-item .content p {
	margin-bottom: 0;
}

section.lunch-slider .lunch-item img {
	margin-bottom: 2rem;
}

section.lunch-slider div.flex-row {
	justify-content: center;
	gap: 1rem;
}

section.lunch-slider div.flex-row button {
	transform: scale(2);
	color: white;
}

section.lunch-slider h2 {
	padding-bottom: 2rem;
}

section.lunch-slider .lunch-item .btn-link {
	text-decoration: underline !important;
	padding-left: 0;
	color: white;
}

section.lunch-slider [data-partial="image"] a img {
	transition: 0.3s ease-out;
}

section.lunch-slider [data-partial="image"] a:hover img,
section.lunch-slider [data-partial="image"] a:focus img {
	opacity: 0.5;
}

/* USP BAR */

.selling-points-bar {
	position: relative;
}

.selling-points-bar .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: var(--panel-padding);
}

.selling-points-bar .items .item {
	flex-grow: 1;
	max-width: 14rem;
}

.selling-points-bar .items .icon {
	font-size: 3rem;
	text-align: center;
	color: var(--secondary);
}

.selling-points-bar .items .text {
	margin-top: 1rem;
	text-align: center;
	max-width: 215.6px;
	font-weight: 400;
}

/* OVER ONS */

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.over-ons [data-partial="image"] {
		min-height: 400px;
	}

	.over-ons [data-partial="text"] {
		align-content: center;
	}
}

/* BLOG */

.blog-overview .text-blog a {
	color: black;
}

.blog-overview .text-blog a span {
	transition: margin-left 0.3s ease-out;
}

.blog-overview .text-blog a:hover,
.blog-overview .text-blog a:focus {
	color: var(--secondary);
}

.blog-overview .text-blog a:hover span,
.blog-overview .text-blog a:focus span {
	margin-left: 0.5rem;
}

.blog-overview h2 {
	padding-bottom: 2rem;
	font-size: 2.5rem;
}

.blog-overview .blog-item-preview-image {
	position: relative;
	overflow: hidden;
}

.blog-overview .blog-item-link img {
	transition: 0.3s ease-out;
}

.blog-overview .blog-item-link:hover img,
.blog-overview .blog-item-link:focus img {
	transform: scale(1.1);
}

.blog-overview .blog-item-preview img {
	height: 400px;
	object-fit: cover;
}

.blog-item-preview {
	position: relative;
	z-index: 0;
	margin-bottom: 2rem;
}

.blog-item-preview::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
	z-index: 0;
	border-radius: var(--panel-radius);
	pointer-events: none;
}

.blog-item-preview .content .intro {
	display: none;
}

.blog-item-preview .content {
	position: absolute;
	bottom: 0;
	left: 2%;
	z-index: 1;
}

.blog-item-preview,
.blog-item-link,
.blog-item-link * {
	border-radius: var(--panel-radius);
}

.blog-item-preview .content .title,
.blog-item-preview .content {
	color: #fff;
	text-shadow: 2px 2px 10px rgb(0 0 0);
}

.blog-item-preview .content .title {
		font-size: 20px;
	}

	.blog-item-preview .fields ul li {
		font-size: 1.1rem;
		font-weight: 400;
	}

@media only screen and (min-width: 992px) {
	.blog-item-preview .content .title {
		font-size: 35px;
	}

	.blog-item-preview .fields ul li {
		line-height: 1.35;
		font-size: 25px;
	}
}

.blog-item-preview .fields ul li .location br{
	display: none;
}

.blog-item-preview .fields ul li::before {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font);
	color: var(--secondary);
	width: 1.25em;
	font-size: 1.25rem;
	text-align: center;
}

.blog-item-preview .fields ul li.blog-field-locatie::before {
	content: "\f3c5";
}

.blog-item-preview .fields ul li.blog-field-categorie::before {
	content: "\f015";
}

/* BLOG PAGINA*/

.blog-template-inter .clamp-left-unclamp-right img {
	border-top-left-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
}

.blog-template-inter .blog-collection-content p {
	margin-right: 3rem;
}

.blog-template-inter .blog-item-preview {
	position: relative;
	z-index: 0;
	margin-bottom: 2rem;
}

.blog-template-inter .blog-item-preview::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			rgba(0, 0, 0, 0.5) 0%,
			rgba(255, 255, 255, 0.1) 100%);
	z-index: 0;
	border-radius: var(--panel-radius);
	pointer-events: none;
}

.blog-template-inter .blog-item-preview .image {
	overflow: hidden;
}

.blog-template-inter .blog-item-preview .image img {
	transition: 0.3s ease-out;
	height: 400px;
	object-fit: cover;
}

.blog-template-inter .blog-item-preview:hover .image img,
.blog-template-inter .blog-item-preview:focus .image img {
	transform: scale(1.1);
}

.blog-template-inter .blog-item-preview .content {
	position: absolute;
	bottom: 0;
	left: 2%;
	z-index: 1;
}

.blog-template-inter .blog-item-preview .content .intro {
	display: none;
}

.blog-template-inter .blog-item-preview * {
	border-radius: var(--panel-radius);
}

.blog-template-inter .blog-item-preview .content .title,
.blog-template-inter .blog-item-preview .content {
	color: #fff;
	text-shadow: 2px 2px 10px rgb(0 0 0);
}

.blog-template-inter .blog-item-preview .content .title {
	font-size: 1.875rem;
}

.blog-template-inter .blog-item-preview .fields ul li {
	font-size: 1.1rem;
	font-weight: 400;
}

@media only screen and (min-width: 992px) {
	.blog-template-inter.blog-item-preview .content .title {
		font-size: 2rem;
	}

	.blog-item-preview .fields ul li {
		line-height: 1.35;
		font-size: 1.5rem;
	}
}

.blog-template-inter .blog-item-preview .fields ul li::before,
.blog-template-inter.blog-item .fields ul li::before {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font);
	color: var(--secondary);
	width: 1.25em;
	font-size: 1.25rem;
	text-align: center;
}

/* Voeg meerdere childs met icoon toe bij meerdere blog velden: */

.blog-template-inter .blog-item-preview .fields ul li:nth-child(1)::before,
.blog-template-inter.blog-item .fields ul li:nth-child(1)::before {
	content: "\f3c5";
}

.blog-template-inter .blog-item-preview .fields ul li:nth-child(2)::before,
.blog-template-inter.blog-item .fields ul li:nth-child(2)::before {
	content: "\f015";
}

.blog-template-inter .blog-header {
	position: relative;
	border-radius: var(--panel-radius);
	margin: 2.5rem 0;
}

.blog-template-inter .blog-header img {
	border-radius: var(--panel-radius);
}

.blog-template-inter.blog-item .btn-link {
	display: none;
}

.blog-template-inter .breadcrumb {
	background-color: transparent;
	align-items: center;
	padding: 0;
}

.blog-template-inter .breadcrumb .breadcrumb-item.active {
	color: var(--secondary);
}

.blog-template-inter .breadcrumb li.breadcrumb-item:not(:nth-child(1)):before {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font: var(--fa-font);
	color: var(--primary);
	content: "\f178";
	vertical-align: middle;
	float: none;
}

.blog-template-inter .blog-content .content,
.blog-template-inter .blog-related p{
	font-size: 1.3rem;
	line-height: 1.2;
}

@media only screen and (min-width: 992px) {

	.blog-template-inter .blog-content .content,
	.blog-template-inter .blog-related-text {
		font-size: 1.875rem;
		line-height: 1.2;
		font-weight: 300;
	}
}

.blog-template-inter.blog-item .blog-content img {
	border-radius: var(--panel-radius);
}

.blog-template-inter.blog-item .fields ul li {
	margin-bottom: 0.5rem;
}

.blog-template-inter.blog-item .fields ul li .location br{
	display: none;
}

.blog-template-inter.blog-item .image-album-item img {
	aspect-ratio: 3.5/2;
	object-fit: cover;
	border-radius: var(--panel-radius);
}

.blog-template-inter.blog-item .flex-auto-responsive>* {
	min-width: 277.5px;
}

@media only screen and (min-width: 992px) {
	.blog-template-inter.blog-item .flex-auto-responsive>* {
		min-width: 350px;
	}

	.blog-template-inter.blog-item .blog-related h2 {
		font-size: 4rem;
	}

}

.blog-template-inter.blog-item .image-album-slider-animated .flex-slider {
	animation-duration: 35s;
}

.blog-template-inter.blog-item .image-album-slider-animated a {
	margin: 0 1rem 0 0;
}

.blog-template-inter.blog-item .blog-interview-extra-content h2 {
	font-size: 1.875rem;
}

.blog-template-inter input.blog-filter-input[checked="checked"]+.blog-filter-label {
	background-color: white;
	color: var(--secondary);
	border-color: var(--secondary);
}

.blog-template-inter input.blog-filter-input[checked="checked"]+.blog-filter-label:hover,
.blog-template-inter input.blog-filter-input[checked="checked"]+.blog-filter-label:focus {
	background-color: var(--secondary);
	color: white;
	border-color: var(--secondary);
}

/* DIENSTEN PAGINAS */

.content-subtemplate-diensten section:not(:first-child) {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* CONTACT PAGINA */

.content-subtemplate-contact .contact-tekst-links i {
	color: var(--secondary);
	margin-bottom: 0.5rem;
}

.content-subtemplate-contact .contact-tekst-links p {
	margin-right: 3rem;
}

.content-subtemplate-contact .contact-tekst-links address {
	margin-bottom: 0;
}

.content-subtemplate-contact .contact-tekst-links a {
	color: black;
	transition: 0.3s ease-out;
}

.content-subtemplate-contact .contact-tekst-links a:hover,
.content-subtemplate-contact .contact-tekst-links a:focus {
	color: var(--secondary);
	text-decoration: none;
}

.content-subtemplate-contact .container {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* OVER ONS PAGINA */

.content-subtemplate-over-ons section:not(:first-child) {
	padding: 3rem 0;
}

/* FOOTER */

footer .top {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: var(--tertiary);
	color: white;
}

footer .top a:not(.text-decoration-none) {
	color: inherit;
}

footer .top .footer-contact div:first-child {
	gap: 8px;
}

footer .top .nav-item + .nav-item {
	margin-top: 0.5rem;
}
footer .top .nav-link {
	padding: 0;
	transition: 0.3s ease-out;
}
footer .top .navlist-nav {
	margin-bottom: 0;
}

footer .top .nav-link::after {
	content: "\f061";
	font: var(--fa-font);
	margin-left: 0.5rem;
	font-size: 1em;
	transition: margin-left 0.3s ease-out;
}
footer .top .nav-link:hover::after {
	margin-left: 1.5rem;
	color: var(--secondary);
}

footer .top .nav-link:hover {
	color: var(--secondary);
}

footer .footer-contact {
	margin-top: 1.5rem;
}

footer .footer-contact .btn.btn-link:not(.btn-admin) {
	padding: 0;
	line-height: 1.25;
	text-align: left;
}

footer .footer-socials i {
	color: white;
	transition: 0.3s ease-out;
}

footer .footer-socials i:hover,
footer .footer-socials i:focus {
	color: var(--secondary);
}

footer .footer-contact a {
	transition: 0.3s ease-out;
}

footer .footer-contact a:active,
footer .footer-contact a:focus,
footer .footer-contact a:hover {
	text-decoration: none;
	color: var(--secondary);
}

footer .footer-socials a {
	margin-right: 1rem;
	font-size: 1.5em;
}

footer .bottom {
	background-color: var(--tertiary-bg);
}

footer .bottom a,
footer .bottom .btn {
	color: black;
	transition: 0.3s ease-out;
}

footer .bottom a:hover,
footer .bottom a:focus,
footer .bottom .btn:hover,
footer .bottom .btn:focus {
	color: var(--secondary);
}

/* MOBILE STATIC BAR */

/* Place on the bottom of the screen. */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--tertiary);
	color: white;

	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);

	--static-bar-width: 50%;
	--static-bar-spacing: 0.2rem;
}

.navbar-static-bar:has(.navlist-nav .nav-item:nth-child(3)) {
	--static-bar-width: 33%;
}

.navbar-static-bar:has(.navlist-nav .nav-item:nth-child(4)) {
	--static-bar-width: 25%;
}

/* Make it a horizontally scrollable list. */
.navbar-static-bar .navlist-nav {
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

/* Hide scrollbar. */
.navbar-static-bar .navlist-nav::-webkit-scrollbar {
	display: none;
}

.navbar-static-bar .nav-item {
	position: relative;
	display: inline-block;
	width: calc(var(--static-bar-width) - calc(3 * var(--static-bar-spacing)));
	margin-left: var(--static-bar-spacing);
	margin-right: var(--static-bar-spacing);
	vertical-align: middle;
}

/* Place a line in between each item. */
.navbar-static-bar .nav-item:after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	top: 20%;
	bottom: 20%;
	left: calc(100% + var(--static-bar-spacing) + 1px);

	background-color: var(--tertiary-light);
}

.navbar-static-bar .nav-item:last-child:after {
	display: none;
}

/* Place icon and text vertical. */
.navbar-static-bar .nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	color: inherit;
}

.navbar-static-bar .nav-icon {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.navbar-static-bar .nav-indentation {
	display: none;
}

.navbar-static-bar .nav-title {
	font-size: 0.75rem;
	line-height: 0.75rem;
	font-weight: 300;
	text-align: center;
}

/* Highlight when selected. */
.navbar-static-bar .nav-link:active,
.navbar-static-bar .nav-link:hover,
.navbar-static-bar .nav-link:focus {
	text-decoration: none;
	color: inherit;
	background-color: var(--tertiary-light);
}

/* Move asside for the admin bar. */
@media screen and (max-width: 991px) {
	[data-logged="true"] .navbar-static-bar {
		margin-bottom: 3.125rem;
	}
}

/* Offset height below the footer for the navigation bar. */
.navbar-static-bar-offset {
	height: 4.625rem;
}

/* Format the toggler if displayed inside the static bar. */
.navbar-static-bar button.navbar-toggler {
	color: inherit;
	text-align: center;
	width: 100%;
}

/* Style Whappie link. */
.navbar-static-bar .nav-link[href="$whappie_open"] .nav-icon {
	background-color: var(--whatsapp);
	color: white;
	/* color: var(--whatsapp); */
	border-radius: 999px;
	aspect-ratio: 1/1;
	text-align: center;
}

/* Hide Whappie button. */
/* #whappe-button {
	display: none !important;
} */