:root {
    --stempels-blauw: rgba(0, 60, 76, 1);
    --stempels-grijs: #9c9e9f;
	--stempels-licht-blauw: rgba(0, 60, 76, 0.15);
	--stempels-blauw2: #174F82;
	--stempels-blauw3: #23527c;
	--stempels-blauw4: #337ab7;
	--stempels-background: #e3edf3;
	--radius-normal: 20px;
	--radius-small: 10px;
	--lettertype: 'DMSans';
}
body
{
	/* background-color: var(--stempels-background); */
}	
ol.breadcrumb
{
	background-color: var(--stempels-background);
	border-radius: 0 0 var(--radius-normal) var(--radius-normal);
	font-family: var(--lettertype);
}
ol.breadcrumb a
{
	color: var(--stempels-blauw2);
}
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #aaa;
    content: ">>\00a0";
}
div.modular-header
{
	background-color: white;
}
.page-header
{
	margin: 0;
	border-bottom: 0;
}
.btn-group
{
	font-family: var(--lettertype);
}
#storeLogo.logo-home-page.remove-bg {
    background-color: transparent !important; /* Verwijder blauwe achtergrondkleur */
}
#storeLogo.logo-home-page {
    /* Beginpositie en start zonder achtergrondkleur */
    background-color: transparent;
    transform: translateX(100%); /* Begin buiten het scherm rechts */
    /* Stel de animatie in */
    animation: slideAndFade 4s ease-in-out forwards;
}

@keyframes slideAndFade {
    0% {
        background-color: transparent;
        transform: translateX(100%); /* Start buiten beeld, rechts */
    }
    20% {
        background-color: var(--stempels-blauw);
        transform: translateX(0); /* Volledig zichtbaar op zijn plaats */
    }
    80% {
        background-color: var(--stempels-blauw); /* Houdt kleur en positie vast */
        transform: translateX(0);
    }
    100% {
        background-color: transparent;
		transform: translateX(0);
    }
}

#bovenbalk
{
	background-color: white;
	color: var(--stempels-blauw);
	min-height: 40px;

}
#bovenbalk.bovenbalk-small
{
	min-height: 20px;
}
.breadcrumb-small
{
	margin-bottom: 10px;
}
#stempels-siteheader {
    background: white; /* Altijd witte achtergrond */
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    transition: all 0.6s ease-in-out;
	border-bottom: solid 1px #ccc;
}
body.sticky-active {
    padding-top: 100px; /* Zorg ervoor dat de header-hoogte wordt gereserveerd */
}
.sticky-header img.shrink-logo {
    width: 150px; /* Nieuwe breedte van het logo */
    transition: all 0.5s ease-in-out;
    margin-left: 100px; /* Laat het logo naar links schuiven */
	margin-top: 20px;
	background-color: white;
}


/* -------------------------------- Content -------------------------------- */

div.body-sans-header
{
	background-color: var(--stempels-background);
	padding-top: 20px;
}

#bodyContent
{
	background-color: white;
	border-radius: var(--radius-normal);
	min-height: 600px;
}
#bodyContent.home-page
{
	background-color: var(--stempels-background);
}
#bodyContent p, #bodyContent .page-header
{
	font-family: var(--lettertype);
	font-size: 16px;
}

.panel
{
	border-radius: var(--radius-small);
	//border: none;
}
.panel.panel-primary {
    border: 1px solid var(--stempels-blauw4) !important;
}
.panel-default>div.panel-heading
{
	background-color: var(--stempels-licht-blauw);
	color: var(--stempels-blauw);
	border-color: var(--stempels-grijs);
	font-family: var(--lettertype);
	font-weight: 700;
	font-size: 16px;
}
.panel-heading
{
	border-top-left-radius: var(--radius-small);
	border-top-right-radius: var(--radius-small);
}
.panel-heading a
{
	color: var(--stempels-blauw);
}
.panel-body
{
	font-family: var(--lettertype);
}
.panel-body-cat
{
	padding: 10px;
	font-family: var(--lettertype);
}
.panel-body a
{
	font-family: var(--lettertype);
}
.panel-footer
{
	border-bottom-left-radius: var(--radius-small);
	border-bottom-right-radius: var(--radius-small);
}

.panelartikelzoom
{
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}
.panelartikelzoom:hover
{
    transform: scale(1.02) translateY(-5px); 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
form[name="quick_find"] .input-group-btn {
    border: solid 1px #ccc; 
}
form[name="quick_find"] .btn
{
	border: 0; 
	padding: 6px 9px;
}
h1
{
	margin: 0;
	font-family: var(--lettertype);
	font-weight: 700;
	font-size: 44px;
	color: var(--stempels-blauw);
	padding-left: 0.1em;
	padding-top: 0.3em;
}
h1::before {
    content: url('/favicon-32x32.png');
    display: inline-block;
	width: 32px; /* Breedte van het icoon */
    margin-right: 8px; /* Optioneel: ruimte tussen icoon en tekst */
    vertical-align: middle; /* Zorgt ervoor dat het icoon uitgelijnd is met de tekst */
	 position: relative;
    top: -2px; /* Zet het icoon 2px omhoog */
}
h1 a
{
	font-size: 32px;
}
.page-header h1
{
	margin-bottom: 12px;
}
h2, h3
{
	font-family: var(--lettertype);
    color: var(--stempels-blauw2);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 22px;	
}

div.categorieHolder, div.productHolder, #kochtenook div.thumbnail {
    border-radius: var(--radius-normal);
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: solid 2px #eee;
    background-color: white;
	overflow: hidden;
}

div.categorieHolder:hover {
    transform: scale(1.02) translateY(-5px); 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
div.categorieHolder
{
	/*min-height: 259px;*/
}
.categorieHolder img {
    height: auto; /* Zorgt ervoor dat de afbeelding proportioneel blijft */
    /*width: auto; /* Houdt de breedte in verhouding */
}
@media (min-width: 768px) {
    .categorieHolder img {
        min-height: 200px;
    }
}

div.productHolder:hover {
	/* box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); */
}
div.productHolder img.thumbnail, #kochtenook div.thumbnail img {
	border: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

div.productHolder img.thumbnail:hover, #kochtenook div.thumbnail img:hover {
    transform: scale(1.05) translateY(5px);
}

div.productHolder {
    padding-bottom: 12px;
    border: solid 1px #eee;
	/* min-height: 425px; */
}
div.productHolder a:hover
{
	text-decoration: none;
}
#kochtenook div.thumbnail
{
	
}
summary, a.showLink, a.hideLink
{
	margin-top: 10px;
	text-decoration: underline;
	cursor: pointer;
	font-weight: 700;
    padding-left: 0;
    display: block;
}
summary:hover
{
	color: var(--stempels-blauw2);
}
summary::after, a.showLink::after {
    content: " >"; 
}
a.showLink:hover, a.hideLink:hover
{
	color: var(--stempels-blauw2);
	border-bottom: 0;
}
div.contentText
{
	font-family: var(--lettertype);
	font-size: 18px;
    line-height: 1.4em;
	padding-bottom: 20px;
}

.well 
{
border: none;
box-shadow: none;
font-family: var(--lettertype);
border-radius: var(--radius-normal);
padding: 16px;
font-size: 16px;
}
#wrap
{
	font-family: var(--lettertype);
	font-size: 16px;
	margin-top: 12px;
}

a[href="#helpSearch"] u {
    text-decoration: none;
}

p.inputRequirement.text-right
{
	display: none;
}
div.hts_bookmarks
{
	height: 30px;
}
.create-account-link .panel-body p:nth-of-type(2) {
    height: 97px;
}
.create-account-link .panel-body #btn2
{
	border: 0;
}
a#btn5
{
	/*padding: 7px 12px;*/
}
/* -------------------------------- Stempelcreator -------------------------------- */
p.info-text-3steps {
    position: relative;
    padding-left: 30px; /* Ruimte voor het cirkelpictogram */
	color: var(--stempels-blauw);
}
p.info-text-3steps.info-text-1
{
	margin-top: 20px;
	position: relative;
	padding-top: 20px;
}
p.info-text-3steps.info-text-1::before, p.info-text-3steps.info-text-2a::before, p.info-text-3steps.info-text-2b::before, p.info-text-3steps.info-text-3::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 20px;
    text-align: left;
    border: 2px solid var(--stempels-blauw);
    border-radius: 50%;
    font-weight: bold;
	color: var(--stempels-blauw);
    background-color: var(--stempels-background); 
}
p.info-text-3steps.info-text-1::before {
    content: "1";
    top: 20px;
	padding-left: 7px;
}
p.info-text-3steps.info-text-2a::before, p.info-text-3steps.info-text-2b::before {
    content: "2";
	padding-left: 5px;
}
p.info-text-3steps.info-text-3::before {
    content: "3";
	padding-left: 5px;
}
/* Stippellijn alleen over de eerste 50px */
p.info-text-3steps.info-text-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Om ruimte te maken voor het pictogram */
    width: 100px; /* Lengte van de stippellijn */
    height: 1px;
    border-top: dashed 1px #ccc;
}
label:has(#checkTypeset), #fileuploadspan, #svgtypesetting, div.buttonSet.row:has(#SubmitButton) {
    border: 1px solid #ccc;
	border-radius: var(--radius-small);
	padding: 10px;
	margin-top: 10px;
}
label:has(#checkTypeset)
{
	margin-left: -15px;
	margin-top: 0;
}
#fileuploadspan
{
	margin-top: 20px;
}
#svgtypesetting
{
	padding: 0;
}
#svgtypesetting div.alert
{
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}
#svgtypesetting div.alert.alert-info
{
	border-top-left-radius: var(--radius-small);
    border-top-right-radius: var(--radius-small);
}
div.buttonSet.row:has(#SubmitButton)
{
	margin-left: 0;
	margin-right: 0;
}
#svgid svg {
    transform: scale(2);
    transform-origin: 0 0; /* Zorg ervoor dat het schaalpunt de linkerbovenhoek is */
}
#extramarg
{
	margin-top: 10px;
}
#extramarg::before
{
	content: "Hierboven ziet u hoe de stempel eruit ziet op 200%. In de winkelwagen ziet u het werkelijke formaat";
	display: block;
	padding-left: 10px;
	margin-bottom: 16px;
	color: #ccc;
	font-style: italic;
}
#extramarg > span:nth-child(1) button
{
	width: 40px;
	overflow: hidden;
	margin-right: 8px;
	margin-left: 0;
}
#extramarg > span:nth-child(1) button:hover
{
margin-right: 8;	
margin-left: 0;
}

.col-xs-3.col-sm-3.col-md-3.btn-group:has(.glyphicon-zoom-in) button,
.col-xs-3.col-sm-3.col-md-3.btn-group:has(.glyphicon-zoom-in) #enlValLabel {
    display: none;
}

#extramarg > #selnametext {
    margin-top: 0; /* Standaard waarde */
    position: relative; /* Zorg dat negatieve marges of posities effect hebben */
}

#sliderdiv
{
	margin-left: 10px;
}
input[type=range] {
	width: 170px;
}
/* -------------------------------- Footer -------------------------------- */

footer
{
	padding-top: 40px;
	padding: 20px;
	background-color: var(--stempels-background);
	font-weight: normal;
}
div.footer
{
	padding-bottom: 20px;
	padding-top: 10px;
	border-top: 0;
	
}
.footer
{
	background-color: white;
	border-radius: var(--radius-normal);
}
div.contact
{
	border-left: 0;
}
div.footerbox
{
	font-family: var(--lettertype);
	font-size: 16px;
}
div.footerbox h2
{
	font-family: var(--lettertype);
	font-weight: bold;
}
.footer h2
{
	color: var(--stempels-blauw);
}
span[itemprop="addressLocality"] {
    padding-left: 12px;
}
ul.footerinformatielinks li
{
	color: #707070;
}
/* -------------------------------- Formulieren, knoppen en labels -------------------------------- */

.form-horizontal .has-feedback .form-control-feedback
{
	right: 80px;
}
.glyphicon-asterisk:before
{
	content: "";
}
.glyphicon
{
	margin-right: 4px;
}
.inputRequirement
{
	display: block;
	font-family: var(--lettertype);
	top: 0;
} 
.inputRequirement:after
{
	content: "\2a";
}
form[name="cfilter"] strong {
    margin-top: 6px;
    display: inline-block;
}
.btn
{
	font-family: var(--lettertype);
	padding: 8px 12px;
}
.btn-xs {
    padding: 2px 5px !important;
}
.alert-danger 
{
	font-family: var(--lettertype);
}
table.tableshipping
{
	border-top-left-radius: var(--radius-small);
	border-top-right-radius: var(--radius-small);
}
table.tableshipping>thead
{
	border-top-left-radius: var(--radius-small);
	border-top-right-radius: var(--radius-small);
	background-color: var(--stempels-blauw4);
	color: white;
	
}
table.tableshipping>thead>tr>th 
{
	border-bottom: 0;
}
table.tableshipping thead th, table.tableshipping tbody td, table.tableshipping tfoot td
{
	padding: 10px 15px;
}
