@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300italic,300,400italic,600,600italic,700,700italic);

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* DEFAULT CSS */

html {
    overflow-x: hidden;
    overflow-y: auto;
}

.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 1em;
    font-family: sans-serif;
    outline: none;
    padding: 12px 8px;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
}

.categories {
    font-family: sans-serif;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.border-shadow {
    border: 1px solid #ebebeb;
    padding: 10px;
    box-shadow: 0 0 5px #d9d9d9;
}

.border-shadow img {
    height: 40px;
    width: 40px;
}

.fullwidth {
    width: 100%;
}

.relative {
    position: relative;
}

.inputvaluetext {
    text-indent: 35px;
}

.iconininput {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px !important;
    padding: 0px !important;
    margin: 0px;
    color: #0fb2fe;
    z-index: 99;
}

.loader {
    background-image: url(/img/loader.gif);
    background-size: cover;
    z-index: 9999999999;
    position: fixed;
    top: 150px;
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    margin: auto;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
    height: 40px;
    padding: 5px;
    border: 1px solid #73737359;
    border-radius: 2px;
    width: 100%;
}

textarea {
    padding: 5px;
    border: 1px solid #73737359;
    border-radius: 2px;
}

.button {
    -webkit-appearance: none;
    background: #00aeff;
    color: #fff;
    margin: 5px 0px;
    border: none;
    padding: 7px 20px;
    border-radius: 4px;
    cursor: pointer;
    height: 40px;
}

[disabled] {
    background: #ccc;
    cursor: not-allowed;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
    display: flex;
}

.justify-flex-end {
    justify-content: flex-end;
    display: flex;
}

.flip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.alert {
    position: fixed;
    top: 100px;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #00aeff;
    color: #FFF;
    padding: 10px;
    border: 1px solid #0000008c;
    border-radius: 3px;
    box-shadow: 0 5px 10px 3px rgb(0 0 0 / 25%);
    z-index: 999999999999999999999;
}

.justify-around {
    justify-content: space-around;
    display: flex;
}

.g-1 {
    gap: 1em;
}

.pb-05 {
    padding-bottom: 0.5em !important;
}

.pt-05 {
    padding-top: 0.5em !important;
}

.pb-1 {
    padding-bottom: 1em !important;
}

.pb-2 {
    padding-bottom: 2em !important;
}

.pb-3 {
    padding-bottom: 3em !important;
}

.pt-1 {
    padding-top: 1em !important;
}

.pt-15 {
    padding-top: 1.5em !important;
}

.pl-1 {
    padding-left: 1em !important;
}

.pr-1 {
    padding-right: 1em !important;
}

.w-45 {
    width: 45% !important;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-75 {
    width: 75% !important;
}

.pb-3 {
    padding-bottom: 3em !important;
}

.pl-0-25 {
    padding: 0 25px;
}

.m-auto {
    margin: auto !important;
}

.vertical-margin-center {
    margin: auto 0 !important;
}

.horizontal-margin-center {
    margin: 0 auto !important;
}

.m-0 {
    margin: 0em !important;
}

.mr-1 {
    margin-right: 1em !important;
}

.ml-1 {
    margin-left: 1em !important;
}

.mb-1 {
    margin-bottom: 1em !important;
}

.mb-2 {
    margin-bottom: 2em !important;
}

.mb-3 {
    margin-bottom: 3em !important;
}

.mt-1 {
    margin-top: 1em !important;
}

.mt-2 {
    margin-top: 2em !important;
}

.mt-3 {
    margin-top: 3em !important;
}

.mt-7 {
    margin-top: 7em !important;
}

.g-03 {
    gap: 0.3em;
}

.g-05 {
    gap: 0.5em;
}

.g-07 {
    gap: 0.7em;
}

.g-1 {
    gap: 1em;
}

.centertext {
    text-align: center;
}

table {
    display: table;
    width: 100%;
    position: static;
    z-index: 100;
    margin: 0em auto 1em;
    border: 1px solid #92929270;
    border-collapse: collapse;
}

table th,
table td {
    padding: 5px;
    text-align: center;
}

table tbody tr:nth-child(odd) {
    background-color: #EEE;
}

/* CUSTOM CSS */

/* HEADER */

header {
    position: absolute;
    top: 0;
    height: 80px;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    box-shadow: 1px 0 2px 2px rgb(42 42 42 / 25%);
}

header img {
    height: 100%;
}

nav {
    width: 40%;
}

nav ul {
    width: 100%;
    margin: auto 0;
    color: black;
}

nav ul li {
    list-style-type: none;
}

nav ul a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

/* BODY */

body {
    height: 100vh;
}

#main-content {
    margin-top: 80px;
    padding: 20px;
}

#searchboxes {
    min-height: 350px;
}

#opdrachtgeversparent div,
#zzpercheckboxsearch div {
    gap: 1em;
    margin: auto;
    margin-left: 44px;
}

#opdrachtgeversparent div input,
#zzpercheckboxsearch div input {
    margin: auto 0;
}

#opdrachtgeversparent div input,
#zzpercheckboxsearch div input,
#opdrachtgeversparent div label {
    cursor: pointer;
}

#searchboxeszoeken {
    width: 95%;
    margin: 1em auto;
}

#searchresults {
    padding: 0px;
}

#searchresultsopties {
    width: 25%;
    overflow: hidden;
    display: inline-block !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-right: 1px solid #00aeff;
}

#searchresultsdata {
    width: 75%;
}

#searchresultsdatapersoon {
    border-right: 1px solid #00aeff;
    width: 75%;
}

#perrsoondatasidepanel {
    padding-right: 0px;
    width: 25%;
}

#searchresultsdatabody,
#searchresultsdataheader,
#perrsoondatasidepanel {
    padding: 0px 10px;
}

.persoon {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    border-bottom: 1px solid #00aeff;
}

.persoon:hover {
    color: white;
    background-color: #00aeff;
    font-weight: 500;
    cursor: pointer;
}

.selectedpersoon {
    color: white;
    background-color: #57caff;
    font-weight: 500;
    cursor: pointer;
}

.persoonnaam {
    overflow: hidden;
    display: inline-block !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#persoonfunctiesFunctie {
    width: 30%;
    text-align: center;
    border-right: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
}

#persoonfunctiesWerkgever,
#persoonfunctiesPeriode {
    width: 25%;
    text-align: center;
    border-right: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
}

#persoonfunctiesUren {
    width: 10%;
    text-align: center;
    border-bottom: 1px solid #cfcfcf;
}

.persoonfuncties table td {
    text-align: center;
}

.container {
    border: 1px solid #92929270;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
}

.containerheader,
#perrsoondatasidepanel h1 {
    text-align: center;
    font-weight: bold;
    color: white;
    background-color: #00aeff;
    background-image: linear-gradient(165deg, #9ed6f5, #00aeff);
    padding: 4px;
}

#aantalgevonden {
    border-bottom: 3px solid #00aeff;
}

.persoondatavoornaam,
.persoondataachternam,
.persoondataadres,
.persoondatawtelefoonnummer,
.persoondatawemailadres {
    overflow: hidden;
    display: inline-block !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*word-break: break-all; */
}

#aantalgevonden span {
    padding: 0 10px;
    font-size: 18px;
    color: #00aeff;
    font-weight: bold;
}

.bewerkenoverzicht {
    padding: 0 1em;
    gap: 0.8em;
}

.g-1{
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.formulieropties {
    margin-bottom: 0.5em;
}

#perrsoondatasidepanelzzper {
    margin: auto 0;
}

#adddatumtijd:hover,
#adddatum:hover {
    cursor: pointer;
    color: #00aeff;
}

#importeeralscontactnaarzzp,
#importeeralsgegevensnaarzzp,
#importeeralsgegevensnaarizez,
#importeeralsgegevensnaarhe {
    font-size: 12px;
}

/* PAGINATION */

#pagination {
    width: fit-content;
    margin: auto;
    font-size: 30px;
    display: flex;
    flex-direction: row;
}

.paginationbutton {
    font-size: 16px;
    padding: 3px 8px;
    outline: 1px solid #1490d2;
    background-color: white;
    border-radius: 0px;
    color: #1490d2;
    min-width: 50px;
    cursor: pointer;
    margin: 3px;
    min-width: 36px;
    height: 36px;
    border: 1px solid #e5e5e5;
    font-weight: 600;
}

.paginationdots {
    display: flex;
    align-items: flex-end;
    font-size: 20px;
    color: #1490d2;
    padding: 0 20px;
}

#pagination .active,
.paginationbutton:hover {
    background-color: #1490d2;
    color: white;
}

/* FOOTER */

footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 20px;
    width: 100%;
    left: 0;
}

/* POPUP CSS  */

.popup-content {
    background-color: rgb(255, 255, 255);
    position: relative;
    pointer-events: auto;
    padding: 20px !important;
}

.popup {
    position: relative;
    max-width: 100%;
    width: 600px;
    background-color: rgb(255, 255, 255);
    color: rgb(68, 68, 68);
    pointer-events: none;
    font-family: "Open Sans", sans-serif;
    margin: 0px auto !important;
}

.popup-container {
    top: 40px;
    position: absolute;
    z-index: 314748362;
    left: 0px;
    right: 0px;
    pointer-events: none;
    padding: 20px !important;
}

.popup-bg {
    position: fixed;
    z-index: 314748361;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.498039);
}

.popup-close {
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 20px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 10px !important;
    background: rgb(68, 68, 68) !important;
}

.competentiegroup {
    margin-bottom: 0.5em;
}

.competentiegroupheader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #1995d8;
    color: #FFF;
    padding: 8px 5px;
    box-shadow: 0px 3px 6px 0px rgb(227 227 227);
    cursor: pointer;
    font-size: 9px;
    font-family: 'Work Sans', sans-serif;
}

.dropdowntext {
    padding: 6px;
    border: 1px solid rgba(203, 203, 203, 0.48);
}

.rowitem {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cvzichtbaarheidcompetentiedatarow,
.cvzichtbaarheidfunctiedatarow,
.cvzichtbaarheidopleidingdatarow {
    background-color: #d7effc;
}

.rowitemheader {
    color: #FFF;
    background-color: #9dd6f5;
    padding: 2px 5px;
    border-radius: 5px;
}

.rowitemheader2 {
    font-family: system-ui;
    background-color: #00a5ff;
    padding: 8px 10px;
    color: #FFF;
    border-radius: 5px;
    margin-bottom: 1.5em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
}

.uitlegparent {
    position: relative;
}

.uitlegicon {
    cursor: pointer;
    position: absolute;
    z-index: 999;
    left: 0px;
    top: 0px;
}

.uitlegtext {
    display: none;
    cursor: default;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #FFF;
    box-shadow: 0 0 4px 0 black;
    padding: 10px;
    z-index: 1000;
    color: #000000;
    font-family: system-ui;
    width: 600px;
}

.copylink{
    height: fit-content;
    width: 10%;
    text-align: center;
    font-size: 24px;
    color: #09b1ff;
    border: 1px solid #00a5ff;
    padding: 8px 10px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
    margin-bottom: 1em;
}

.plusminbuttons {
	height: 40px;
	width: 40px;
	cursor: pointer;
}