/* Colour definition. Start... */
:root {
  --hue-site-base: 120; /* Victilia green */
  --hue-site-feature: 60; /* Victilia yellow */
  --colour-base: hsl(var(--hue-site-base), 100%, 25%);
  --colour-dark-base: hsl(var(--hue-site-base), 100%, 13%);
  --colour-light-base: hsl(var(--hue-site-base), 100%, 50%);
  --colour-very-light-base: hsl(var(--hue-site-base), 50%, 92%);
  --colour-feature: hsl(var(--hue-site-feature), 100%, 50%)
}
:root {
  --cassiopeia-color-primary: var(--colour-base);
  --cassiopeia-color-link: var(--colour-base, hsl(120, 100%, 50%));
  --cassiopeia-color-hover: var(--colour-dark-base, hsl(120, 100%, 13%));
}
/* ...end. Colour definition. */

/* Colour adjustment. Start... */

/*    Header adjustment. Start... */
.container-header .navbar-brand a {
  color: var(--colour-feature);
}
.container-header .site-description {
  font-size: 1rem;
  color: var(--colour-feature);
  white-space: normal;
}
/*    ...end. Header adjustment. */

/*    Form adjustment. Start... */
.fabrikGroup {
  background-color: var(--colour-very-light-base);
}
/*    ...end. Form adjustment. */

/*    List adjustment. Start... */
..fabrikDataContainer {
  background-color: var(--colour-very-light-base);
}
/*    ...end. List adjustment. */

/* ...end. Colour adjustment. */

/* Vertical spacing control. Start... */

/*    Reduction of row spacing in all lists. */
.fabrikDataContainer .table > :not(caption) > * > * {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/*    Reduction of row spacing in all lists. */
.fabrikDataContainer .btn-group a {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/*    Reduction of vertical spacing around text info. lines in groups in all forms. Start... */
.col-form-label { /* Form & Details Label text */
	padding-top: 1px;
	padding-bottom: 1px;
}
.form-control { /* Form Field text */
	padding-top: 0;
	padding-bottom: 0;
}
.form-select { /* Form Dropdown text */
	padding-top: 0;
	padding-bottom: 0;
}
.fabrikElementContainer .fabrikElementReadOnly { /* Details Field text */
	margin-top: 1px;
}
/*    ...end. For reduction of vertical spacing around text info. lines in groups in all forms. */

/*    Setting width of CDDs in dropdown mode to same as that for ordinary dropdowns */
.plg-cascadingdropdown.mode-dropdown .fabrikElement.col-sm-7 {
	width: 41.66666667%;
}

/*    Reduction of vertical spacing in Home form. Start... */
#group72 {
	margin-bottom: 0px;
}
#group73 {
	margin-bottom: 0px;
}
.fb_el____DspMember {
	margin-bottom: 0px !important;
}
label[for=___DspMember] {
	line-height: 1px;
}
#group74 {
	margin-bottom: 0px;
}
.fb_el____DspNewUser {
	margin-bottom: 0px !important;
}
label[for=___DspNewUser] {
	line-height: 1px;
}
#group75 {
	margin-top: 0px;
}
/*    ...end. Reduction of vertical spacing in Home form. */

/* ...end. Vertical spacing control. */

/* Horizontal spacing control. Start... */

/*    Pad sides of groups to give spacing to elements. */
.fabrikGroup {
  padding-left: 1em;
  padding-right: 1em;
}

/* ...end. Horizontal spacing control. */

/* List adjustment. */

.fabrikFilterContainer .listfilter {
	text-align: left;
}

/* Sub-class for non-underlined links in text. used for list GoBack buttons */
a.nounderline {
  text-decoration: none; }

/* Class for list ReferenceName box. Adds spacing above and below label and field in containing
	box <div> which has fabrikGroup class. */
.listReferenceName {
  padding-top: 1px; /* Minimum amount, which activates padding of contained row mt-3 box that
  						itself contains label and field. */
  padding-bottom: 1rem; /* matches spacing of fabrikGroup boxes elsewhere. */
}

/* Class for list GoBack button box. Keeps <div> containing the button off the bottom of the page.
  	Value as per class btn-group of <div> containing Fabrik buttons at bottom of a form page. */
.listGoBackButtonGroup {
  margin-bottom: 16px;
}

/* Class for list GoBack button. Adds spacing above and below in containing box <div> which
	has fabrikGroup class. */
.listGoBackButton {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*    . */
#ajax_links.fabrikWindow.modal .form-label.col-sm-2.col-form-label { /* Form & Details Label text */
	width: 25% !important;
}

#ajax_links.fabrikWindow.modal .fabrikElement.col-sm-5 { /* Form & Details Label text */
	width: 70%;
}

#list_48_com_fabrik_48 .modal {
	display: block;
	position: fixed;
	top: 5%;
	left: 50%;
	z-index: 1050;
	width: 80%;
/*	width: auto; */
    height: auto;
	margin-left: -40%;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.3);
	*border: 1px solid #999;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	outline: none;
}
#list_48_com_fabrik_48 .modal.fade {
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out;
	top: -25%;
}
#list_48_com_fabrik_48 .modal.fade.in {
	top: 5%;
}