@font-face {
    font-family: 'Ciutadella';
    src: url('fonts/Ciutadella/Ciutadella Rounded Light Regular.otf');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Ciutadella';
    src: url('fonts/Ciutadella/Ciutadella Rounded Medium Regular.otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ciutadella';
    src: url('fonts/Ciutadella/Ciutadella Rounded SemiBold Regular.otf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Italic.ttf');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/Roboto-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 100;
    line-height: 30px;
    color: #343434;
}

#aspnetForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    overflow: hidden;
}

#qs-container {
    margin-bottom: 40px;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

label {
	font-weight: 100;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: 'Ciutadella';
    font-weight: 600;
    color: #00526e;
	-webkit-font-smoothing: antialiased;
}

h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
	line-height: 3.5rem;
}

h2, section.tile h2, body.swing-stories .free-tile.title h2 {
	margin-bottom: 1rem;
	font-size: 2rem;
    line-height: 32px;
}

h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 26px;
}

p, .newslistitem__preview {
    margin: 0;
    margin-bottom: 1rem;
    color: #343434;
    font-size: 1rem;
    letter-spacing: .04px;
    line-height: 1.625rem;
}

ul, ol {
    color: #343434;
    font-size: 1rem;
    letter-spacing: .04px;
    line-height: 1.625rem;
}

a {
    color: #0070b9;
}

.breadcrum_container {
    display: none;
}

.p_rel {
    position: relative;
}

.b_btn, #nextTheme .next-theme-btn, .morelink a {
    display: inline-block;
    max-width: 20.5rem;
    min-width: 5.25rem;
    padding: 0.6875rem 1.5rem;
	border: 1px solid #aa418c;
    border-radius: 0.25rem;
    box-shadow: 0 4px 6px hsla(0,0%,75%,.33), 0 1px 3px hsla(0,0%,75%,.33);
	background-color: #aa418c;
	color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5rem;
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
    transition: all .15s ease;
    cursor: pointer;
}

.b_secondary-btn {
    background: #FFF;
	color: #883370;
}

.b_btn:hover, #nextTheme a:hover {
    border-color: #883370;
    box-shadow: 0 7px 14px hsla(0,0%,75%,.33), 0 3px 6px hsla(0,0%,75%,.33);
    background-color: #883370;
    transform: translateY(-1px);
    text-decoration: none;
}

.b_secondary-btn:hover {
    background: #FFF;
}

.b_btn:disabled, .b_secondary-btn:disabled {
    border-color: #949494;
    background: #949494;
    color: #FFF;
    cursor: not-allowed;
}

.b_btn:disabled:hover, .b_secondary-btn:disabled:hover {
    box-shadow: 0 4px 6px hsla(0,0%,75%,.33), 0 1px 3px hsla(0,0%,75%,.33);
    transform: translateY(0px);
}

.explanation-text, .explanation-mark {
    font-weight: bold;
    font-size: .9rem;
}

.link-btn {
	border: none;
	background: none;
	cursor: pointer;
}

.link-btn:before {
	content: "\f054";
	font-family: "Font Awesome 6 Pro";
	margin-right: .5rem;
}

.b_inputfield, .b_textarea {
	background-color: #fff;
	border: 0.0625rem solid #949494;
	border-radius: 0.25rem;
	color: #343434;
	font-size: 1.125rem;
	height: 4rem;
	padding: 0 2.5rem 0 1.5rem;
	-webkit-transition: -webkit-box-shadow .3s;
	transition: -webkit-box-shadow .3s;
	transition: box-shadow .3s;
	transition: box-shadow .3s,-webkit-box-shadow .3s;
	width: 100%;
}

.b_textarea {
    height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.b_inputfield:focus, .b_textarea:focus {
    border-color: #00526e;
    outline: none;
}

.b_search {
	position: relative;
    margin-bottom: 1rem;
}

.b_search .b_inputfield {
	padding-right: 4rem;
    background:#FFF url("images/search.svg") no-repeat center right 1rem;
    background-size: auto 1.5rem;
}

.search-btn {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 1.5rem;
    cursor: pointer;
}

#content {
    width: 100%;
    max-width: 1024px;
    min-height: 600px;
    margin: 50px auto 100px;
}

.number-cell .explanation-mark {
    line-height: 0;
}

.kvk-box-number .explanation-mark {
    font-size: 2rem;
    line-height: 1;
}

.summary-text {
    margin-bottom: 2rem;
}

.explanation-text {
    width: 100%;
}

@media screen and (max-width: 1080px) {
    #content {
        padding-right: 2.25rem;
        padding-left: 2.25rem;
    }
}

@media screen and (max-width: 720px) {
    #content {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 2rem;
    }
}

@media screen and (min-width: 45em) {
    p, .newslistitem__preview, ul, ol {
        font-size: 1.125rem;
        line-height: 1.875rem;
    }
}