html,body{
	/* position: relative !important; */
	height: inherit;
	min-height:inherit;
	max-height:inherit;
	color:#3c3c3c;
	
	--lineColor: #e7e7e7;
	
    --binkGrey: rgb(0 8 21);
	--binkGreyColor: 0 8 21;
    
	--binkButGrey: rgb(112, 111, 111);
	--binkButGreyColor: 112 111 111;
    
	--binkPink: rgb(230 0 126);
    --binkPinkColor: 230 0 126;
    
	--binkBlue: rgb(0, 161, 177);
    --binkBlueColor: 0 161 177;
}

body h1 {
    font-size: 28px !important;
    margin-top: 9px !important;
}
h1,h2,h3,h4 {
	font-family: 'Open Sans', sans-serif;
}
a{
	color: #c41e74;
}

/* -- gives ios smooth scrolling -- */
* {	
	-webkit-overflow-scrolling: touch;
}


.bottomLine{
	position:Absolute;
	left:15px;
	right:15px;
	float:left;
	height:2px;
	bottom:0;
	background-color:white;
}

h1.pageTitle{
    position: fixed;
    top: 9px;    
    left: 51px;
    right: 107px;
    display: block;
    z-index: 1499;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    font-size: 19px !important;
    color:white;
}

.ultra_light_grey{
	background-color:#fbfafa !important;
}

a.button, button.button {
    display: inline-block;
    padding: 2px 28px;
    line-height: 35px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 21px;
    background-color: transparent;
    border: 1px solid rgb(var(--binkPinkColor));
    color: var(--binkPink);
}
a.button.red:hover, button.button.red:hover {
	color:white;
	background-color: var(--binkPink) !important;
	border-color: var(--binkPink) !important;
}

a.button.dark_grey, button.button.dark_grey {
    border: 1px solid var(--binkGrey);
    color: var(--binkGrey);
}

a.button.dark_grey:hover, button.button.dark_grey:hover {
	color:white;
	background-color: var(--binkGrey) !important;
	border-color: var(--binkGrey) !important;
}

a.button.but_grey, button.button.but_grey {
    border: 1px solid var(--binkButGrey);
    color: var(--binkButGrey);
}

a.button.but_grey:hover, button.button.but_grey:hover {
	color:white;
	background-color: var(--binkButGrey) !important;
	border-color: var(--binkButGrey) !important;
}

a.button.blue, button.button.blue {
    border: 1px solid rgba(var(--binkBlueColor) / 30%);
    background-color: rgba(var(--binkBlueColor) / 60%);
    color: var(--binkBlue);
}

a.button.blue:hover, button.button.blue:hover {
	color:white;
	background-color: var(--binkBlue) !important;
	border-color: var(--binkBlue) !important;
}

a.button.micro,
button.button.micro{
	border-radius:50%;
	padding: 7px 5px 6px 6px;
}

label{
    font-size: 14px;
    line-height: 29px;
}
input,	
select{
	background-color: #fff;
	height: 43px;
}
select{	
	background-repeat: no-repeat;
    background-image: url(../../images/icons/select.svg);
    background-position: calc(100% - 10px) center;
    background-size: 12px;
}

input[readonly]:focus, textarea[readonly]:focus, select[readonly]:focus{
	outline: none;
}


a.verzend{
	width:100%;
}
table.gegevensEdit{
	width: 100% !important;
}

div.jumbotron.appContent{
	height: 100vh;
    padding-top: 65px !important;
	transition: transform .2s ease-in-out;
}

.mobileSideMenu.shown ~ .appContent {
    transform: translateX(100vw);
}
@media (min-width: 768px){
	.container:not(.menuScroller) {
		min-width:100%;
	}
}
div.workspace{	
	max-width:100%;
	height:100%;
	overflow-x:hidden;
}
body input, body textarea, body select {
    box-shadow: none !important;
    padding: 10px 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #c3c3c3;
    background-color: #fff;
}
.jumbotron:last-of-type:not(:first-of-type) {
    margin-bottom: 0px;
}
div.messageBox {
    padding: 5px 15px 5px;
	float: left;
	width: 100%;
}
div.messageBox div.message{
	float:none !important;
}
div.message.good{
	background-color:#d9f1d9 !important;
}

input:focus,
select:focus,
textarea:focus{
	outline: none;
}

span.notifier{
	position: absolute;
	top: -5px;
	left: -9px;
	padding: 0 6px;
	border-radius: 10px;
	min-width: 20px;
	height: 20px;
	font-size: 11px;
	line-height: 21px;
	color: #000;
	text-align: center;
	background-color: #ddd;
	transition: width .1s ease-in-out;
}
span.notifier.good{
	background-color: #78e564;
}
span.notifier.wrong{
	background-color: #9d0512;
	color: white;
}
span.notifier.shake,
span.notifier.wrong{
	animation: rotateChange .8s infinite;
	-webkit-animation: rotateChange .8s infinite;	
}
@-webkit-keyframes rotateChange
{
  0%   		{-webkit-transform: rotateZ(0deg);}
  12.5%   	{-webkit-transform: rotateZ(-16deg);}
  25%   	{-webkit-transform: rotateZ(0deg);}
  37.5%   	{-webkit-transform: rotateZ(16deg);}
  50%, 100% {-webkit-transform: rotateZ(0deg);}
}

@keyframes rotateChange
{
  0%  	    {transform: rotateZ(0deg);}
  12.5%   	{transform: rotateZ(-16deg);}
  25%   	{transform: rotateZ(0deg);}
  37.5%   	{transform: rotateZ(16deg);}
  50%, 100% {transform: rotateZ(0deg);}
}

div.imageHolder{
	height:50px;
	width:50px;
	border-radius:50%;
	display:inline-block;
	margin:auto;
	background-size: cover;	
	background-position:center;	
	background-repeat: no-repeat;
}
.imageHolder.square {
    border-radius: 3px;
    background-size: contain;
}
#editFieldForm{
	width:100%;
}

div.navigateView:not(.main){
	display:block !important;
	left:100%;	
	top:0;
	transition:left .3s ease-in-out;
	position:absolute;
	height:100%;
	background-color:#f7f4f6;
}
div.navigateView.shown{
	left: 0%;
}

div.scrollingContent{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	overflow-y:auto;
    background-color: white;
}
.buttonHolder{
	padding: 00px 0;
}

.buttonHolder.full .button{
	border-radius: 0;
	padding: 10px 5px;
	width:100%;
}

#filterBlock{
	background-color: #c41e74;
    border-top: 1px solid #fff;	
}
#filterBlock input,
#filterBlock select{
	background-color: transparent;
    color: #fff;
    padding-left: 40px;
    border: none;
}
#filterBlock input{
    background-image: url(../../images/search.svg);
    background-position: 5px center;
    background-size: 20px;
    background-repeat: no-repeat;	
}
#filterBlock select{
	background-image: url(../../images/icons/select_white.svg);
    background-position: calc(100% - 10px) center;
    background-size: 12px;	
    padding-right: 30px;
	padding-left: 10px;		
    text-align-last: center;
}
#filterBlock select option{
	color:#000;
}


#filterBlock input:placeholder{
	color: rgba(255,255,255,0.8);
}
#filterBlock input::-webkit-input-placeholder{
	color: rgba(255,255,255,0.8);
}
#filterBlock input::-moz-placeholder{
	color: rgba(255,255,255,0.8);
}
#filterBlock input:-ms-input-placeholder {
	color: rgba(255,255,255,0.8);
	opacity: 1;
}
.messageBox:empty{
	display:none;
}

.leftAlign{
	text-align:left !important;
}


@media screen and (max-width: 1024px){
	.tablet_nopadding{
		padding:0;
	}
}
@media screen and (max-width: 767px){
	.mobile_nopadding{
		padding:0;
	}
}
@media screen and (max-width: 411px){
	.phone_nopadding{
		padding:0;
	}
}
	
body .floatingSwitch {
    position: fixed;
    display: flex;
    bottom: 38px;
    right: 20px;
    width: max-content;
    height: 31px;
    padding: 0 14px;
    background-color: rgb(255 255 255);
    border-radius: 15px;
    z-index: 1;
    color: #2e2e2e;
    line-height: 1.1em;
    font-size: 13px;
    box-shadow: 0 0 4px rgb(0 0 0 / 1%);
    flex-direction: row;
    align-content: center;
    align-items: center;
}
body .floatingSwitch input{
	height:auto;
	margin-left: 6px;
	box-shadow: none !important;
	border-color: #ddd;
}

/* -- app/webapp updates -- */
.web_contentBox {
    margin-bottom: 15px;
    background-color: #f7f7f7;
}
@media screen and (max-width:769px){
	.web_only{
		display:none;
	}
}