.InputWrapper1.hidden1 {
	display: none;
}

INPUT:disabled {
	background-color: var(--lightgrey);
}
	

/*****************************************
	Shiptimize alternat dropdown list.
	This dropdown enables us to have a default clickable action on any dropdown
*/

.menubotton {
    margin-left: 22px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border-radius: 4px;
}


.altdropdown {
  font-weight: normal;
  font-size: 12px;
  -webkit-tap-highlight-color: transparent;
  background-color: inherit;
  border-radius: 4px;
  border: solid 1px var(--lightgray);
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  height: 34px;
  line-height: 33px;
  outline: none;
  padding-left: 10px;
  padding-right: 28px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 250px; 
}

.altdropdown-search {
  border: none;
}

.search-hidden {
  display: none; /** this is how we filter results, please don't touch this **/ 
}

.altdropdown.altdropdown-search .current {
  display: none;
}
.altdropdown.open.altdropdown-search {
  padding: 0;
}

.altdropdown.open.altdropdown-search input {
  width: 91% !important;
}



.altdropdown .current { 
  width: 100%;
  font-weight: normal;
  font-size: inherit;
  background: inherit;
  color: var(--black);
  display: inline-block;
}

.altdropdown:hover,
.altdropdown:active, 
.altdropdown.open, 
.altdropdown:focus
{
  border-color: var(--azure); 
}

.altdropdown.bulkaction:hover {
  border-color: var(--azure2); 
}

.altdropdown:after {
  border-bottom: 1px solid var(--arrow);
  border-right: 1px solid var(--arrow);
  content: '';
  display: block;
  height: 7px;
  width: 7px; 
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  
}

.altdropdown.bulkaction:after {
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  content: '';
  display: block;
  height: 7px;
  width: 7px; 
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  
}

.altdropdown .list LI {
	background: white; /** if you're thinking of using !important here, please think again remember focus statuses */
}

.altdropdown.open:after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}


.altdropdown.open .list {
  opacity: 1;
  pointer-events: auto;
  overflow: auto;
  min-width: 100%;
  -webkit-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0); 
}

.altdropdown.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none; 
}

.altdropdown.disabled:after {
  border-color: #cccccc; 
}

.altdropdown.wide {
  width: 100%; 
}

.altdropdown.wide .list {
  left: 0 !important;
  right: 0 !important; 
}

.altdropdown.right {
  float: right; 
}
  
.altdropdown.right .list {
  left: auto;
  right: 0; 
}

.altdropdown.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px; 
}

.altdropdown.small:after {
  height: 4px;
  width: 4px; 
}

.altdropdown.small .option {
  line-height: 34px;
  min-height: 34px; 
}

.altdropdown .list,
.ui-autocomplete
 {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  max-height: 210px;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
      -ms-transform: scale(0.75) translateY(-21px);
          transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 900; 
}

/* alterations for autocomplete on the previous */
.ui-autocomplete {
  opacity: 1;
  pointer-events: initial;
  overflow: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.altdropdown .list:hover .option:not(:hover) {
  background-color: transparent; 
}

.altdropdown .option,
.ui-autocomplete .ui-menu-item
 {
  cursor: pointer;
  font-weight: 400;
  line-height: 30px;
  list-style: none;
  min-height: 30px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; 
}

.ui-autocomplete .ui-menu-item
 {
	min-width: 100%;
	padding: 0;
}

.ui-autocomplete .ui-menu-item-wrapper {
	padding-left: 18px;
	padding-right: 29px;
}

/* defeat the standard jquery ui stuff */
.ui-menu .ui-state-active
 {
	background-color: var(--lightgrey);
	border: none;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

.altdropdown .option:checked { 
  background-color: var(--azure); 
  color: var(--mango); ;
}

.altdropdown .option.focus {
  color: var(--pumpkin); 
}

.altdropdown .option.selected.focus {
  background-color: var(--mango);
  color: var(--azure);
}

.altdropdown .option.selected {
  font-weight: bold;
  background-color: var(--azure);
  color: var(--mango);
}

.altdropdown .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default; 
  display: none;
}

.altdropdown.stddropdown .option:hover { 
  background-color: var(--lightgrey) !important; 
  color: var(--black) !important;
}

.altdropdown.stddropdown .option.focus {
  background-color: var(--lightgrey) !important;
  color: var(--black) !important;
}

.altdropdown.stddropdown .option.selected.focus {
    background-color: var(--azure) !important;
    color: var(--white) !important;
}

.altdropdown.bulkaction {
  background-color: var(--azure);
  color: var(--black);
  border: 1px solid var(--azure2);
  width: 220px !important;
  padding-left: 0;
}

.altdropdown.bulkaction.open {
  border-radius: 4px 4px 0 4px;
}

.altdropdown.bulkaction .current {
  color: var(--white) !important;
  display: inline-block;
  padding-left: 10px;
  background-color: var(--app-error-blue);
  height: 32px;
  border-radius: 4px 0px 0px 4px;
  border-right: 1px solid var(--azure2);
}
.altdropdown.bulkaction .current:hover {
background-color: var(--azure2)
}

.altdropdown.bulkaction .list {
  margin-left: 190px;
  margin-top: 0;
}

.altdropdown.bulkaction.open .list {
  border-radius: 0 4px 4px 4px;
}


.altdropdown.bulkaction .option.focus {
  background-color: var(--azure2);
  color: var(--azure);
}

.altdropdown.bulkaction .option.selected.focus {
  background-color: var(--azure);
  color: var(--white);
}

.altdropdown.bulkaction .option:hover {
    background-color: var(--lightgrey);
    color: var(--black);
} 


.no-csspointerevents .altdropdown .list {
  display: none; 
}

.no-csspointerevents .altdropdown.open .list {
  display: block; 
}


.disable-scrollbar {
  position: fixed; 
  overflow-y: scroll;
  width: 100%;
}

div#aldropdiv.altdropdown.bulkaction.open.li.option:hover{
  background-color: var(--azure);
    color: var(--mango);
} 

.stddropdown {
  width: 298px;
}

div#aldropdiv.altdropdown.sortoptions.stddropdown {
  width: 135px;
  margin-right: -10px;
}

.stdropdown .list {
  overflow: auto !important;
  max-height: 480px !important;
}

/*****************************************
	the modal popup screen.
*/


#popup-overlay {
  opacity: 0;
  height: 0px;
  overflow: hidden;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
  z-index: 200;
}

#popup-overlay.show-popup {
  opacity: 1;
  position: fixed;
  height: auto;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.simple-popup {
    position: relative;
    display: inline-block;
    margin-top: 200px;
    max-width: 300px;
    min-width: 300px;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    border: solid 1px var(--lightgray);
}

.popup-icon {
    background-image: url(/assets/v3/images/info_icon.svg);
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    margin: 17% 0% 0% -17%;
    position: absolute;
}

#popup-overlay.show-popup .popup-icon {
	z-index: 999;
}

#popup-overlay .prompt-box .popup-icon {
  font-size: 80px;
  line-height: 108px;
}

.popup-message {
    font-weight: normal;
    font-size: 13px;
    position: relative;
    width: 100%;
    padding: 170px 0px 20px 0px;
    color: var(--battleship-grey);
    text-align: center;
}

.popup-input {
    position: relative;
    background: none;
    margin: 0 30px 20px 30px;
}

#popupselectdrop {
    width: 250px !Important;
}

.popup-input INPUT,
.popup-input SELECT {
	background-color: white;
}

.popup-buttons {
  width: 100%;
  margin-bottom: 20px;
  margin-left: -5px;
}

.popup-buttons button {
    font-weight: normal;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    margin-left: 10px;
    color: white;
		width: 120px;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    background-color: var(--azure);
    border: 1px solid var(--azure);
    border-radius: 4px;
}

.popup-buttons button:hover, button:focus {
  background-color: var(--azure2);
  border-color: var(--azure2);
  color: var(--white);
}

button.btn-cancel{
  background-color: var(--white);
  border-color: var(--lightgray);
  color: var(--battleship-grey);
}

/*
#popupUploadOverlay input {
    background: white;
    outline: 2px dashed var(--azure);
    outline-offset: 0px;
    padding: 50px 0px 100px 20px;
    text-align: center !important;
    width: 250px !important;
}
 
#popupUploadOverlay input:hover {
    background: #ddd;
}
 
#popupUploadOverlay:before {
    position: absolute;
    bottom: 70px;
    left: 50px;
    color: #3f8188;
    font-weight: 900;
}

*/

#popup-overlay #templatedownload {
	display: block;
	margin: 10px 0px;
}


#popupDownloadWrapper {
	border: 2px dashed var(--azure);
	border-radius: 5px;
	margin: 20px 0 10px 0;
}

#popupDownloadWrapper I {
	font-size: 50px;
	color: var(--azure);
	margin-top: 30px;
}

#popupDownloadWrapper .dropfiletekst {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 30px;
}

#popupDownloadWrapper .filenamedisplay {
	display: block;
	margin-top: -20px;
	font-weight: bold;
}

#popupDownloadWrapper input[type=file] {
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	height: 170px;
	width: 235px !important;
	opacity: 0;
	padding: 0;
}	



/*****************************************************
	the stuff for the nice dynamic labels and placeholders..
	see also customio.js for the default behaviour on this!
*/
.setlabel {
	display: block;
	position: relative;
/*	top: -50px;*/
	left: 0px;
	margin: 0;
}




.dynamiclabels input:focus+label{
  color: var(--azure);
}

input, .dynamiclabels{
  font-weight: normal;
  font-size:inherit;
  margin:0;
  padding:0;
  width: 300px;
  height: 15px;
}


/*****************************************
	toggle checkbox
*/

.togglerclass .setlabel {
	float: left;
	position: unset;
	margin-right: 10px;
}

.togglerclass .keytoggle {
	float: right;
	margin-top: 0;
}

.togglerclass input {
	display: none !important;
}

/*****************************************
	dynamic labels.
	If you put a label with an input, it will show inside the input first.
	Once it is edited, it will be moved outside above the input.
*/

.dynamiclabels {
  position:relative;
}

.dynamiclabels input{
	display:block;
	position:relative;
  font-size:inherit;
  outline:none;
  top:0;
  left:0;
  background:transparent;
  z-index:2;
  border:1px solid var(--lightgray);
  text-indent:10px;
}

.dynamiclabels label {
  display:block;
  position:relative;
  top:-25px;  /* this is: ( fontsize in px + (the input height / 2)) - 4 */
  left: 10px; /* same as text-indent in input! */
  margin: 0;
  font-size:inherit;
  font-weight: 600;
  z-index:1;
  
  -moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-moz-transition: -moz-transform 160ms, color 200ms;
	-o-transition: -o-transform 160ms, color 200ms;
	-webkit-transition: -webkit-transform 160ms, color 200ms;
	transition: transform 160ms, color 200ms; /* this is te color in input:focus+label ! */
	-moz-transform: scale(1, 1) rotateY(0);
	-ms-transform: scale(1, 1) rotateY(0);
	-webkit-transform: scale(1, 1) rotateY(0);
	transform: scale(1, 1) rotateY(0);
  color: var(--battleship-grey);
}

.dynamiclabels.float label{
	-moz-transform: scale(1,1) rotateY(0) translate(-10px,-30px);
	-ms-transform: scale(1,1) rotateY(0) translate(-10px,-30px);
	-webkit-transform: scale(1,1) rotateY(0) translate(-10px,-30px);
	transform: scale(1,1) rotateY(0) translate(-10px,-30px);
}

/*****************************************************
	pretty checkboxes.
	create these with this html (with myswitch changed to whatever the input has to be called):
	
	<div class="fancyswitch">
  	<input type="checkbox" name="myswitch" id="myswitch">
    <label for="myswitch">
    	<span></span>
    </label>
  </div>
*****************************************************/
.fancyswitch {                                                                                  
    position: relative; 
    width: 40px;                                                            
    -webkit-user-select:none; 
    -moz-user-select:none; 
    -ms-user-select: none;
}                                                                                               

.fancyswitch INPUT {                                                                         
    display: none;                                                                              
}                                                                                               

.fancyswitch LABEL {                                                                            
    display: block; 
    overflow: hidden; 
    cursor: pointer;                                          
    border: var(--switchlabelborderwidth) solid var(--darkergrey); 
    border-radius: calc((var(--switchlabelheight) / 2) + var(--switchlabelborderwidth)); 
    height: var(--switchlabelheight);
    transition: all 0.3s ease-in 0s;
}                                                                                               

/*right: calc(var(--switchwidth) - (var(--switchbuttonheight) / 2)); calc somehow destroys transition*/
.fancyswitch LABEL SPAN {                                                                           
    display: block; 
    width: var(--switchbuttonwidth); 
    /* calculate: width of this span - height of LABEL / 2 and make that a negative. */
    margin: calc(0px - ((var(--switchbuttonwidth) - var(--switchlabelheight)) / 2));
    background: var(--darkergrey);                                                              
    position: absolute; 
    top: 0; 
    bottom: 0;                                                      
    right: 21px;                                                                                
    border: var(--switchswitchborderwidth) solid var(--battleship-grey); 
    border-radius: calc((var(--switchbuttonwidth) / 2) + var(--switchswitchborderwidth));
    transition: all 0.3s ease-in 0s;
}                                                                                               

.fancyswitch INPUT:checked + LABEL SPAN {                        
    right: 0px;                                                                                 
    background-color: var(--azure);                                                                  
}

.fancyswitch INPUT:checked + LABEL {
  background-color: var(--azure);	
}

/*****************************************
	any search box layout. 
*/

.searchTerm {
	border-radius: 5px 0 0 5px;
	border-right: none;
}

.searchButton {
	width: 40px;
	height: 33px; /* check default.css, input properties */
	border: 1px solid black;
	text-align: center;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
}

.etabs { 
	margin: 0; 
	padding: 0; 
}

.tab { 
	display: inline-block; 
	zoom:1; 
	*display:inline; 
	background: #E7E6E9; 
	-moz-border-radius: 0px 0px 0px 0px; 
	-webkit-border-radius: 0px 0px 0px 0px; 
}

.tab a { 
	color: #000;
/*	font-size: 14px; */
	line-height: 1.5em; 
	display: block; 
	padding: 3px 20px; 
	outline: none; 
	text-decoration: none;
}

.tab a:hover {
	color: var(--azure);
}
.tab.active { 
	background: var(--azure); 
	padding-top: 2px; 
	position: relative; 
	border-color: var(--pumpkin); 
	color: var(--white);
}

.tab a.active { 
  color: var(--white);
  font-weight: bold; 
  padding-top: 3px;
}

.tab_container > div {
	border: none;
	-moz-border-radius: 0px 0px 0px 0px;
	-webkit-border-radius: 0px 0px 0px 0px;
	border-radius: 0px 0px 0px 0px; 
	margin-bottom: 10px;
	padding: 0 10px;
}

.tab_container textarea {
	width: 100%;
	margin: 5px 10px 5px 0px;
}

/*.tab_container .input_block {
	width: 100%;
}*/

.tab_container .panel-container { 
	background: #fff; 
	border: solid #666 1px; 
	padding: 10px; 
	-moz-border-radius: 0 4px 4px 4px; 
	-webkit-border-radius: 0 4px 4px 4px; 
}

/*****************************************
  Divider. 
*/

hr {  
  border: 1px solid #fff;
}

#rateimgnorate {
	width: 300px;
	margin-top: 150px;
	margin-left: 75px;
}

#rateimgnorate IMG {
	width: 100%;
}
#ratenoratetekst {
  margin-top: 40px;
  margin-left: 10px;
  text-align: center;
  font-size: 14px !important;
}
span.highlight {
 font-size: 14px !important;
 font-weight: 600;
 color: var(--pumpkin);
}

/*****************************************
  nice looking toggle
******************************************/
.statusswitch {
	display: inline-block;
	width: 40px;
	height: 19px;
	font-size: 1em;
	font-weight: 800;
	color: white;
	border-radius: 1em;
}

.statusswitch.statusactive {
	background-color: var(--toggleon) !important;
	text-align: right;
	padding: 0px 2px 1px 3px;
}

.statusswitch.statusactive:after {
	content: '';
	display: inline-block;
	width: 3px;
	height: 13px;
	border-radius: 11px;
	background-color: white;
	margin-top: 3px;
	margin-right: 5px;
}

.statusswitch.statusinactive {
	background-color: var(--toggleoff) !important;
	text-align: left;
	padding: 0px 2px 1px 3px;
}

.statusswitch.statusinactive:after {
	content: '';
	display: inline-block;
	width: 11px;
	height: 11px;
	border: 2px solid white;
	border-radius: 11px;
	background-color: var(--toggleoff);
	margin-top: 2px;
}


/************************************************
  the carrier panels in /carriers/overview
*************************************************/

.carrierpanel {
    float: left;
    width: 226px;
    height: 300px;
    /* min-height: 250px; */
    text-align: center;
    border: 1px solid var(--lightgray);
    margin: 0 10px 10px 0;
    /* padding: 26px 10px; */
    margin-left: 0px;
    border-radius: 5px;
}

div.carrierpanel.statusinactive:hover {
	border: 1px solid var(--azure);
}
div.carrierpanel.statusactive:hover {
	border: 1px solid var(--azure);
}

.carrierpanel.statusinactive .statusswitch {
	cursor: pointer;
}

.carrierpanel.statusactive .carriername {
	color: #60f93e;
}

.carrierpanel.statusinactive .carriername {
	color: #d10c0c;
}

.carrierpanel .imgspan {
	display: block;
	min-height: 180px;
}

.carrierpanel span IMG {
	width: 80%;
}

.carrierpanel .keytoggle {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
}


.carriername {
    margin-top: 10px;
    font-weight: 800;
    margin-bottom: 10px;
}


/************************************************
  the boxes for standalone extra options
*************************************************/

.extraoptionblock {
	border-width: 1px 0;
	border-style: solid;
	border-color: var(--lightgrey);
	border-radius: 0;
	padding-top: 8px;
	margin: 10px 0 5px 5px;
	padding-left: 0px;
}

.extraoptionblock .blockheader1 {
	position: absolute;
	width: fit-content;
	block-size: fit-content;
	font-size: 12px;
	font-weight: 800;
	margin-top: -17px; /* it is half the fontsize + the inner padding of the parent div + the border width plus the top/bottom padding of this element */
	margin-left: -5px;
	padding: 0 10px 0 5px;
	background: white;
}

.extraoptionblock DIV:nth-of-type(1) {
	margin-left: 0px;
}


/* Usetiful Shiptimize Hack */

.uf-button-main {
    display: none;
    padding: 8px 10px !important;
    background: #FFA300;
    color: #fff;
    position: fixed;
    z-index: 2147483646;
    bottom: 5px !important;
    right: 18px !important;
    font-size: 14px !important;
    border-radius: 24px;
    border: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    animation: fade-out 250ms;
}

.uf-button-main .uf-badge {
    background: #000;
    color: #fff;
    padding: 2px 4px !important;
    border-radius: 20px;
    font-size: 0.6rem !important;
    vertical-align: middle;
    margin-left: 2px;
    font-weight: bold;
    position: absolute;
    top: -2px !important;
}
.uf-bubble {
    position: absolute;
    background: #fff;
    border: 1px solid #f6f6f6 !important;
    border-radius: 6px;
    z-index: 2147483647;
    display: block;
    left: -9000px;
    width: 400px;
    -webkit-box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
    box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
    max-width: 100%;
    line-height: 21px;
}

.uf-bubble .pointer::before {
    display: block;
    visibility: visible;
    background-color: #FFFFFF;
    content: '';
    border: 2px solid #f6f6f6 !important;
    width: 22px;
    height: 22px;
}

.uf-bubble .uf-title {
    font-size: 16px !important;
    font-weight: bold;
    line-height: 20px;
    color: #444 !important;
    padding: 13px 21px;
    margin: 0;
	border-bottom: 1px solid #f6f6f6 !important;
}

.uf-bubble-content {
    padding: 13px 21px 21px 21px;
    font-size: 14px;
    color: #444 !important;
    text-align: left;
}

small {
    font-size: 10px !important;
}

.uf-bubble.left .pointer-up {
    border-left-color: #f6f6f6 !important;
    margin-top: -23px;
}

.uf-bubble.right .pointer-up {
    border-right-color: #f6f6f6 !important;
    margin-top: -23px;
}

.uf-bubble.top .pointer-up {
    border-top-color: #f6f6f6 !important;
    margin-left: -23px;
}

.uf-slideout-inner, .uf-notification-inner {
    position: relative;
    background: #fff;
    text-align: right;
    width: 100%;
    min-width: 300px;
    border: 1px solid #f6f6f6 !important;
    max-width: 400px;
    border-radius: 6px;
    -webkit-box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
    box-shadow: 0 4px 19px -5px rgba(0, 0, 0, 0.43);
}

.uf-close-button {
    z-index: 20;
    color: #444;
    font-size: 20px;
    background: none;
    border: 0;
    position: relative;
    cursor: pointer;
    height: 40px;
    width: 40px;
    opacity: 0.5;
    margin-right: 5px;
}

.uf-slideout .uf-title, .uf-notification .uf-title {
    font-weight: bold;
    text-align: left;
    margin: 0;
    font-size: 16px !important;
    font-weight: 600;
    color: #444 !important;
    padding: 13px 21px;
    max-height: 42px;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #f6f6f6 !important;
}

.uf-button {
    border: 1px solid #f6f6f6 !important;
    background: white;
    color: #000;
    padding: 8px 13px;
    margin-right: 8px;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 13px !important;
    line-height: 21px;
	cursor: pointer;
	
/*
 Multiselect
 */
 
 .multiselector > DIV {
 	display: inline-block;
	float: left;
	height: 200px;
	min-width: 150px;
	border: 1px solid black;
	overflow: hidden;
}

.multiselector .inactive {
	margin-left: 20px;
}

.multiselector .header {
	display: block;
	font-weight: 800;
	padding: 0 5px;
	height: 1.5em;
	border-bottom: 1px solid black;
	background: #EEE;
	margin-bottom: 2px;
}

.multiselector .itemlist {
	display: block;
	width: 150px;
	margin-left: 5px;
	height: 198px;
	overflow: auto;
}

.multiselector .itemlist > span {
	display: block;
	cursor: pointer;
}

.klantsubmit {
	display: block;
	margin-bottom: 10px;
}

