/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Inter", serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    font-optical-sizing: auto;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
:root{
    --primary: #0073aa;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.nc_app_wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px auto;
}

div.nc_app_content,
div.nc_app_header {
    background-color: white;
    padding: 0px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

div.nc_app_content>div.nc_app_content_inner,
div.nc_app_header>div.nc_app_header_inner {
    width: 90%;
    max-width: 1920px;
    height: 100%;
}

div.nc_app_content {
    background-color: #fafafa;
    z-index: -1;
    padding-top: 20px;
    overflow: scroll;
}

.nc_app_header {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.nc_app_header_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.nc_app_logo_outer {
    width: 230px;
    padding: 10px;
    padding-left: 0px;
    position:relative;
}
div.nc_app_logo{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;

}


.nc_app_actions {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 10px;
}
.nc_app_profile {
    background-color: var(--primary);
    padding: 5px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    gap: 5px;
}

.nc_profile_name {
    color: white;
    background-color: var(--primary);
    font-size: 16px;
    padding-right: 9px;
}

.nc_profile_avatar {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: white;
    background-size: cover;
    background-position: center;
}
div.nc_app_card{
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
div.nc_card_header{
    padding: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
div.nc_card_header{
    font-size: 15px;
    font-weight: 500;
    text-align:left;
    border-bottom: 1px solid #ececec;
}
.nc_card_content{
    padding: 10px;
    overflow: hidden;
}

.nc_card_title {
    font-weight: 500;
    font-size: 16px;
    color: #3c3c3c;
}

.nc_card_actions {
    width: 100px;
    height: 30px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
}

.nc_card_action {
    background-color: white;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #f5f5f5;
    cursor: pointer;
}
.nc_card_action > svg{
    transform: scale(0.8);
}
.nc_card_wrapper{
    padding: 15px;
}
.nc_app_cols{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto 260px;
}

.nc_card_list_item {
    /* background-color: #fafafa; */
    display: grid;
    grid-template-columns: 320px 1fr;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 2px solid #e1e1e1;
    padding-bottom: 20px;
    gap: -2px;
}

.nc_card_list_item_visual {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    
}

.nc_carD_list_item_specs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    padding: 10px;
}

.nc_carD_list_item_spec {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
}

.nc_card_list_item_title {
    font-size: 14px;
    font-weight: 300;
}

.nc_card_list_item_description {
    background-color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 17px;
}

.nc_card_list_item_spec {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    gap: 11px;
}

.nc_card_list_item_specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nc_scherm {
    /* border-bottom: 2px solid grey; */
    padding: 0px;
    overflow: hidden;
    display: flex;
    gap: 10px;
    padding-bottom: 9px;
    cursor: pointer;
}

.nc_scherm_icon {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2052.3%20(67297)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3Ejollycons-%5Bcategory%5D%2Ficons%2Fsvg%2Ficon-ui-1-full-screen%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22icons%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icons---export%22%20transform%3D%22translate(-252.000000%2C%20-218.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22row-3%22%20transform%3D%22translate(60.000000%2C%20218.000000)%22%20fill%3D%22%23000000%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icon---14%22%20transform%3D%22translate(192.000000%2C%200.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23999999%22%20d%3D%22M22%2C8%20C22%2C8.55228475%2021.5522847%2C9%2021%2C9%20C20.4477153%2C9%2020%2C8.55228475%2020%2C8%20L20%2C4%20L16%2C4%20C15.4477153%2C4%2015%2C3.55228475%2015%2C3%20C15%2C2.44771525%2015.4477153%2C2%2016%2C2%20L20%2C2%20C21.1045695%2C2%2022%2C2.8954305%2022%2C4%20L22%2C8%20Z%20M8%2C2%20C8.55228475%2C2%209%2C2.44771525%209%2C3%20C9%2C3.55228475%208.55228475%2C4%208%2C4%20L4%2C4%20L4%2C8%20C4%2C8.55228475%203.55228475%2C9%203%2C9%20C2.44771525%2C9%202%2C8.55228475%202%2C8%20L2%2C4%20C2%2C2.8954305%202.8954305%2C2%204%2C2%20L8%2C2%20Z%20M20%2C16%20C20%2C15.4477153%2020.4477153%2C15%2021%2C15%20C21.5522847%2C15%2022%2C15.4477153%2022%2C16%20L22%2C20%20C22%2C21.1045695%2021.1045695%2C22%2020%2C22%20L16%2C22%20C15.4477153%2C22%2015%2C21.5522847%2015%2C21%20C15%2C20.4477153%2015.4477153%2C20%2016%2C20%20L20%2C20%20L20%2C16%20Z%20M8%2C20%20C8.55228475%2C20%209%2C20.4477153%209%2C21%20C9%2C21.5522847%208.55228475%2C22%208%2C22%20L4%2C22%20C2.8954305%2C22%202%2C21.1045695%202%2C20%20L2%2C16%20C2%2C15.4477153%202.44771525%2C15%203%2C15%20C3.55228475%2C15%204%2C15.4477153%204%2C16%20L4%2C20%20L8%2C20%20Z%22%20id%3D%22full-screen%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22slices%22%20transform%3D%22translate(60.000000%2C%2058.000000)%22%3E%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nc_scherm_title {
    font-size: 12px;
}

.nc_card_content.nc_card_list.nc_scherm_list {
    padding: 0px;
}

.nc_card_content.nc_card_list.nc_scherm_list > div.nc_card_list_item {
    padding: 0px;
    display: flex;
    justify-content: flex-start;
}
/* Editor app */

#acfFormApp {
    width: 100%;
    /* max-width: 600px; */
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

/* Formulier stijl */
.acf-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

label {
    font-weight: bold;
    color: #333;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Scherm Toestemmingen */
.repeater-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.repeater-row input {
    flex: 1;
    min-width: 100px;
}

.nc_field_info_only {
    background-color: #f1f1f1;
    border: none;
    color: #555;
}

.repeater-row button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: red;
}

.repeater-row button:hover {
    color: darkred;
}

/* Knoppen */
button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
div.acf-form-submit > button,
button[type="button"] {
    background-color: var(--primary);
    color: white;
}
div.acf-form-submit > button,
button[type="button"]:hover {
    background-color: #0056b3;
}
div.acf-form-submit > button,
button[type="submit"] {
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    border: 0px solid red;
    padding: 10px 25px;
}
div.acf-form-submit > button,
button[type="submit"]:hover {
    background-color: #218838;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Meldingen */
.message {
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}
.nc_app_breadcrumb {
    font-size: 14px;
    color: #333;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.nc_app_breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.nc_app_breadcrumb a:hover {
    text-decoration: underline;
}
/* editor voor de content */

/* Algemene stijlen voor het formulier */
.acf-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
/* Algemene styling voor formuliervelden */
.acf-field {
    /* background-color: #f9f9f9; */
    /* border: 1px solid #ddd; */
    padding: 15px;
    /* border-radius: 8px; */
    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
}

/* Specifieke breedtes voor velden */
.acf-field[style*="width: 33%"] {
    flex: 1 1 30%;
}

.acf-field[style*="width: 50%"] {
    flex: 1 1 48%;
}

.acf-field[style*="width: 70%"] {
    flex: 1 1 68%;
}

.acf-field[style*="width: 100%"] {
    flex: 1 1 100%;
}

/* Labels */
.acf-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.acf-label label {
    font-size: 16px;
    color: #333;
}

/* Invoervelden */
.acf-input input, 
.acf-input select, 
.acf-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Required fields */
.is-required label::after {
    content: " *";
    color: red;
}

/* Select dropdowns */
select {
    appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><polygon points="0,0 20,0 10,10" fill="#333"/></svg>') no-repeat right 10px center;
    background-size: 12px;
}

/* Speciale stijlen voor Select2 velden */
.select2-container {
    width: 100% !important;
}

/* Bestand uploaden */
.acf-file-uploader, .acf-image-uploader {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
}

/* Datum en tijd invoervelden */
.acf-date-time-picker input {
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    .acf-field {
        flex: 1 1 100%;
    }
}

.description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-align:left;
}
.acf-label {
    text-align: left;
}
.acf-selection{
    font-size: 16px!important;
}

.acf-field.acf-field-text.acf-field--post-title.is-required {
    width: 100%;
}
/* make the form prettier
--------------------------------------------- */
.acf-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
div.acf-field-6759c72bd2c59{
    pointer-events: none!important;
}


.nc_adding_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.nc_adding_modal_inner {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

.nc_adding_modal_header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nc_adding_modal_title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.nc_adding_modal_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><line x1="1" y1="19" x2="19" y2="1" stroke="black" stroke-width="2"/><line x1="1" y1="1" x2="19" y2="19" stroke="black" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.nc_adding_modal_field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nc_adding_modal_field label {
    font-weight: bold;
    color: #333;
}

.nc_adding_modal_field input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.nc_adding_modal_field input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

.nc_adding_modal_field button {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--primary);
    color: white;
    transition: background 0.3s;
}

.nc_adding_modal_field button:hover {
    background-color: #0056b3;
}