@charset "utf-8";
/* 
	layout.less

	Project: Canadian Forage and Grassland Association (New Brunswick)
*/
/*------ imports ------*/
/* 
	global.less
	
*/
/*------ imports ------*/
/*
	core.less

*/
/*------ responsive ------*/
/*------ imports ------*/
/* 
	mixins.less

*/
/*------ typography ------*/
/*------ forms ------*/
/*------ clearfix ------*/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .clearfix,
html .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/*------ display ------*/
.full {
  width: 100%;
}
.auto {
  width: auto;
}
.f_right {
  float: right;
  display: block;
}
.f_left {
  float: left;
  display: block;
}
.clear {
  display: block;
  clear: both;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.noborder {
  border: 0 !important;
}
.nobg {
  background: none !important;
}
.hidden {
  display: none !important;
}
.show-tablet-p,
.show-tablet-l,
.show-notebook,
.show-desktop {
  display: none;
}
@media all and (min-width: 481px) {
  .show-tablet-p {
    display: block;
  }
}
@media all and (min-width: 769px) {
  .show-tablet-l {
    display: block;
  }
}
@media all and (min-width: 1025px) {
  .show-notebook {
    display: block;
  }
}
@media all and (min-width: 1367px) {
  .show-desktop {
    display: block;
  }
}
/*------ flexbox ------*/
/*------ filters ------*/
/*------ transformations ------*/
/*------ animations ------*/
/*
	animations.less

*/
/*---- fades ----*/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fade-right {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*---- slides ----*/
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*---- daneden.github.io - animate.css ----*/
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@-webkit-keyframes rubber-band {
  0% {
    background-clip: padding-box;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubber-band {
  0% {
    background-clip: padding-box;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/*---- leadin animations ----*/
.leadin-popup.open.type-corner,
.leadin-popup.open.type-bar.position-bottom {
  -webkit-animation: fade-up 0.4s ease-out 0s 1 normal;
  animation: fade-up 0.4s ease-out 0s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.bounce {
  -webkit-animation: bounce 0.8s ease-out 0.8s 1 normal;
  animation: bounce 0.8s ease-out 0.8s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.rubber-band {
  -webkit-animation: rubber-band 1s ease-out 0.8s 1 normal;
  animation: rubber-band 1s ease-out 0.8s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.swing {
  -webkit-animation: swing 0.6s ease-out 0.8s 1 normal;
  animation: swing 0.6s ease-out 0.8s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.leadin-popup.open .button.tada {
  -webkit-animation: tada 1s ease-out 0.8s 1 normal;
  animation: tada 1s ease-out 0.8s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*---- landing page animations ----*/
body.landing-page .landing-form-wrapper {
  opacity: 0;
}
body.landing-page .landing-form-wrapper.animated {
  -webkit-animation: fade-in 0.4s ease-out 0.5s 1 normal;
  animation: fade-in 0.4s ease-out 0.5s 1 normal;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
/*------ reset ------*/
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
}
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/*------ typography ------*/
body,
th,
td {
  line-height: 1.4;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  padding: 0 0 20px;
  margin: 0;
}
ul,
ol {
  padding: 0 0 20px;
  margin: 0 0 0 40px;
}
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.025em;
}
h1 {
  margin: 0;
}
h2 {
  margin: 0 0 30px;
}
h3 {
  margin: 0 0 25px;
}
h4 {
  margin: 0 0 20px;
}
h5 {
  margin: 0 0 15px;
  line-height: 1.2;
}
h6 {
  margin: 0 0 10px;
  line-height: 1.2;
}
p + h2,
ul + h2,
ol + h2,
table + h2,
blockquote + h2 {
  margin-top: 20px;
}
p + h3,
ul + h3,
ol + h3,
table + h3,
blockquote + h3 {
  margin-top: 15px;
}
p + h4,
ul + h4,
ol + h4,
table + h4,
blockquote + h4 {
  margin-top: 10px;
}
p + h5,
ul + h5,
ol + h5,
table + h5,
blockquote + h5 {
  margin-top: 5px;
}
small {
  display: inline-block;
  letter-spacing: 0em;
}
blockquote p,
quote p {
  padding: 0;
}
/*------ interface ------*/
body,
html {
  width: 100%;
  height: 100%;
}
body {
  max-width: 480px;
}
@media all and (min-width: 481px) {
  body {
    max-width: 768px;
  }
}
@media all and (min-width: 769px) {
  body {
    max-width: 1024px;
  }
}
@media all and (min-width: 1025px) {
  body {
    max-width: 1366px;
  }
}
@media all and (min-width: 1367px) {
  body {
    max-width: 1920px;
  }
}
@media all and (min-width: 1921px) {
  body {
    max-width: none;
  }
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  max-width: 100%;
}
iframe {
  max-width: 100%;
}
hr {
  border: 0;
  border-top: 1px solid #ccc;
  height: 0px;
  padding: 0;
  margin: 0 0 20px 0;
}
table {
  border-collapse: collapse;
  margin: 10px 0 30px;
}
table.responsive label {
  display: none;
  margin: 0;
}
@media all and (max-width: 768px) {
  table {
    width: 100% !important;
    border: 1px solid #ccc;
  }
  table.responsive tr.header-row,
  table.responsive th {
    display: none;
  }
  table.responsive td {
    display: block;
    width: auto !important;
    text-align: left;
  }
  table.responsive label {
    display: block;
    font-weight: 700;
  }
}
/*------ forms ------*/
label {
  display: block;
}
.input,
.select,
.textarea,
.button {
  border: 1px solid #ccc;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  margin: 0 0 10px;
  height: 60px;
  max-width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.input::-webkit-input-placeholder,
.select::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder,
.button::-webkit-input-placeholder {
  color: inherit;
}
.input:-ms-input-placeholder,
.select:-ms-input-placeholder,
.textarea:-ms-input-placeholder,
.button:-ms-input-placeholder {
  color: inherit;
}
.input::-moz-placeholder,
.select::-moz-placeholder,
.textarea::-moz-placeholder,
.button::-moz-placeholder {
  color: inherit;
}
.input::-webkit-input-placeholder, .select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .button::-webkit-input-placeholder {
  color: inherit;
}
.input::-moz-placeholder, .select::-moz-placeholder, .textarea::-moz-placeholder, .button::-moz-placeholder {
  color: inherit;
}
.input:-ms-input-placeholder, .select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .button:-ms-input-placeholder {
  color: inherit;
}
.input::-ms-input-placeholder, .select::-ms-input-placeholder, .textarea::-ms-input-placeholder, .button::-ms-input-placeholder {
  color: inherit;
}
.input::placeholder,
.select::placeholder,
.textarea::placeholder,
.button::placeholder {
  color: inherit;
}
.select {
  background-image: url("../../images/ui/select-arrow.png");
  background-position: calc(100% - 10px) calc(50% + 2px);
  background-repeat: no-repeat;
}
select::-ms-expand {
  display: none;
}
:root .select {
  padding: 10px 0px 10px 20px;
}
.textarea {
  height: 130px;
  resize: none;
  overflow: auto;
}
.button,
a.button {
  cursor: pointer;
  width: auto;
  display: inline-block;
  padding: 0 20px;
  margin: 0;
  line-height: 60px;
}
.button .fas,
a.button .fas {
  margin-right: 8px;
}
.checkbox,
.radio {
  display: none;
}
.checkbox + label,
.radio + label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 1px 26px;
  cursor: pointer;
  line-height: 20px !important;
  width: auto !important;
  margin-bottom: 5px;
}
.checkbox + label:before,
.radio + label:before {
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  line-height: 18px;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  text-align: center;
  color: inherit;
  background: #fff;
}
.radio + label:before {
  border-radius: 50%;
  font-size: 10px;
  text-indent: 1px;
}
.checkbox + label:before,
.radio + label:before {
  content: " ";
}
.checkbox:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.radio:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f111";
}
.checkbox:disabled + label:before,
.radio:disabled + label:before {
  background-color: #eee;
}
#recaptcha-modal {
  overflow: hidden;
}
.recaptcha-wrapper {
  display: block;
}
.g-recaptcha {
  transform: scale(0.9);
  -webkit-transform: scale(0.9) rotate(0.02deg);
  -moz-transform: scale(0.9) rotate(0.02deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.g-recaptcha div {
  margin: 0 auto;
}
/*---- dialog ----*/
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  zoom: 1;
}
.ui-widget-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.ui-dialog {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
  max-width: calc(100% - 40px);
  outline: none !important;
  background: #fff;
  text-shadow: none;
  border: 1px solid #fff;
  font-size: 18px;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 15px;
  position: relative;
  background: #333;
  color: #fff;
  font-weight: bold;
}
.ui-dialog .ui-dialog-title {
  margin: 0 25px 0 0;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 0 0 0 1px;
  height: 20px;
  background: none;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  outline: none !important;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  background: none;
  color: #fff;
}
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 15px;
  background: none;
  overflow: auto;
  zoom: 1;
  min-height: inherit;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 10px 0 0 0;
  padding: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 10px 10px 10px 0;
  cursor: pointer;
  outline: none;
  border: 0;
  padding: 10px 15px;
  background: #333;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ui-dialog .ui-dialog-buttonpane button:hover {
  background: #999;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
/* 
	definitions.less
	
*/
@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCA.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v17/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf) format('truetype');
}
/*------ typography ------*/
html {
  font-size: 16px;
}
body,
th,
td {
  font-size: 16px;
  font-family: 'Titillium Web', Helvetica, sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.33333333;
  letter-spacing: -0.015em;
}
a {
  color: #a27616;
}
a:hover,
a:active {
  color: #a27616;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 20px;
}
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
}
h1,
h2,
h3,
h4 {
  line-height: 1;
  letter-spacing: 0em;
}
h1 {
  font-size: 28px;
  font-size: 1.75rem;
  color: #a27616;
}
h2 {
  font-size: 24px;
  font-size: 1.5rem;
}
h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}
h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
h5 {
  font-size: 16px;
  font-size: 1rem;
}
h6 {
  margin: 0 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
p {
  margin-bottom: 20px;
  padding: 0;
}
p:last-child {
  margin-bottom: 0;
}
small {
  font-size: 14px;
  font-size: 0.875rem;
  color: #999999;
}
.gradient-text {
  color: #a27616;
  background-color: #a27616;
  background-image: -webkit-gradient(linear, left top, right top, from(#a27616), color-stop(50%, #a27616), to(#a27616));
  background-image: linear-gradient(to right, #a27616 0%, #a27616 50%, #a27616 100%);
  background-clip: text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gradient-text {
    /* IE10+ CSS styles go here */
    background: transparent;
  }
}
h2.gradient-text,
h3.gradient-text,
h4.gradient-text {
  padding-bottom: 5px;
}
::-moz-selection {
  background: #a27616;
  color: #ffffff;
}
::selection {
  background: #a27616;
  color: #ffffff;
}
::-moz-selection {
  background: #a27616;
  color: #ffffff;
}
@media all and (min-width: 1025px) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  h2 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h4 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media all and (min-width: 1367px) {
  body,
  th,
  td {
    font-size: 18px;
    font-size: 1.125rem;
  }
  h1 {
    margin: 0 0 40px;
    font-size: 48px;
    font-size: 3rem;
  }
  h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*------ interface ------*/
.button,
a.button {
  height: auto;
  padding: 9.5px 20px;
  border: 1px solid currentColor;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.33333333;
  color: #a27616;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
}
.button .fas,
a.button .fas,
.button .fab,
a.button .fab {
  margin-right: 0;
  margin-left: 10px;
}
.button:hover,
a.button:hover {
  background-color: #eeeeee;
}
.button.theme-theme1,
a.button.theme-theme1 {
  border-color: #a27616;
  background-color: #a27616;
  color: #ffffff;
}
.button.theme-theme1:hover,
a.button.theme-theme1:hover {
  border-color: #755510;
  background-color: #755510;
}
.button.previous-button,
a.button.previous-button,
.button.next-button,
a.button.next-button {
  min-width: 160px;
}
.button.previous-button:before,
a.button.previous-button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f359";
  margin-right: 10px;
}
.button.next-button:after,
a.button.next-button:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35a";
  margin-left: 10px;
}
.button.simple,
a.button.simple {
  padding: 9.5px 20px;
}
.button[disabled],
a.button[disabled],
.button[disabled]:hover,
a.button[disabled]:hover {
  border-color: #cccccc;
  background-color: #cccccc;
  color: #ffffff;
}
hr {
  margin: 20px 0;
  border-color: #dddddd;
}
table {
  margin: 30px 0;
  border: none;
  border-radius: 8px;
  background-color: #eeeeee;
  overflow: hidden;
}
table tr {
  display: block;
}
table tr + tr {
  border-top: 1px solid #ffffff;
}
table th,
table td {
  padding: 10px 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
table th {
  background-color: #666666;
  font-weight: 700;
  color: #ffffff;
  vertical-align: middle;
}
table td {
  background-color: #eeeeee;
  vertical-align: top;
}
table label {
  color: #a27616;
}
table:last-child {
  margin-bottom: 0;
}
table.column {
  width: calc(100% + 20px) !important;
  margin: 0;
  padding: 0;
  table-layout: fixed;
}
table.column,
table.column td,
table.column th {
  background-color: transparent !important;
  height: auto !important;
}
table.column:not(.mce-item-table) td,
table.column:not(.mce-item-table) th,
table.column {
  border: none !important;
}
table.column td {
  padding: 0;
  vertical-align: top;
}
@media all and (min-width: 769px) {
  table thead tr:first-child th {
    border-top: none;
  }
  table thead tr:last-child th {
    border-bottom: none;
  }
  table thead tr:last-child th:first-child {
    border-radius: 0 0 0 5px;
  }
  table thead tr:last-child th:last-child {
    border-radius: 0 0 5px 0;
  }
  table tbody tr:first-child td {
    border-top: none;
  }
  table tbody tr:last-child td {
    border-bottom: none;
  }
  table tr {
    display: table-row;
  }
  table tr + tr {
    border-top: none;
  }
  table th,
  table td {
    border: 1px solid #ffffff;
    padding: 15px 20px;
  }
  table.column:not(.mce-item-table) {
    margin: 0 -10px;
  }
  table.column td {
    padding: 0 10px;
  }
}
@media all and (max-width: 768px) {
  table.column ul:only-child,
  table.column ol:only-child {
    padding-bottom: 0px;
  }
  table.column td:last-child ul:only-child,
  table.column td:last-child ol:only-child {
    padding-bottom: 20px;
  }
}
@media all and (min-width: 1367px) {
  hr {
    margin: 30px 0;
  }
  .button,
  a.button {
    padding: 18.5px 30px;
    font-size: 16px;
    font-size: 1rem;
  }
  .button.previous-button,
  a.button.previous-button {
    text-align: right;
  }
  .button.previous-button:before,
  a.button.previous-button:before {
    float: left;
  }
  .button.next-button,
  a.button.next-button {
    text-align: left;
  }
  .button.next-button:after,
  a.button.next-button:after {
    float: right;
  }
  table th,
  table td {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*------ email template ------*/
body.email-template {
  max-width: none;
  background-color: #eeeeee;
  padding: 20px;
}
body.email-template #email-wrapper {
  margin: 0 auto;
  border-radius: 0;
}
body.email-template #email-wrapper tr {
  display: table-row;
}
body.email-template #email-wrapper td {
  display: table-cell;
}
body.email-template #email-wrapper #email-header {
  padding: 20px;
  background-color: #333333;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
body.email-template #email-wrapper #email-header .logo-subtitle {
  font-size: 12px;
  font-size: 0.75rem;
  color: #a27616;
}
body.email-template #email-wrapper #email-header .logo-name {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #ffffff;
}
body.email-template #email-wrapper #email-content {
  padding: 20px;
  background-color: #ffffff;
}
body.email-template #email-wrapper #email-footer {
  padding: 20px;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
}
body.email-template #email-wrapper #email-footer small {
  color: inherit;
}
body.email-template #email-wrapper #email-footer small a {
  color: #ffffff;
}
/* 
	animations.less
	
*/
@-webkit-keyframes gradient-pulse {
  0% {
    background-position: 0% 100%;
    opacity: 0.3;
    filter: alpha(opacity=30);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  }
  100% {
    background-position: -200% 100%;
    opacity: 0.4;
    filter: alpha(opacity=40);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  }
}
@keyframes gradient-pulse {
  0% {
    background-position: 0% 100%;
    opacity: 0.3;
    filter: alpha(opacity=30);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  }
  100% {
    background-position: -200% 100%;
    opacity: 0.4;
    filter: alpha(opacity=40);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@keyframes mouse-scroll {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  50% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  100% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
}
@media all and (min-width: 481px) {
  .loading-bar-progress .overlay-gradient {
    -webkit-animation: gradient-pulse 3s ease-out 0s infinite alternate;
    animation: gradient-pulse 3s ease-out 0s infinite alternate;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .panel {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  }
  .panel.animated {
    -webkit-animation: fade-in 300ms ease-out 0s 1 normal;
    animation: fade-in 300ms ease-out 0s 1 normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .form-scroll-more .mouse-icon:before {
    -webkit-animation: mouse-scroll 1s ease-out 0s infinite normal;
    animation: mouse-scroll 1s ease-out 0s infinite normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}
/*------ general styles ------*/
.container-lg {
  max-width: 1400px;
}
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
/*------ navigation ------*/
:root {
  --logo-height: 105px;
}
#page-navigation {
  position: relative;
  overflow: visible;
}
#page-navigation .ps__thumb-y {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
#page-navigation .ps__thumb-y:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
}
#page-navigation .page-navigation-scroll {
  position: relative;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}
#page-navigation-contents {
  position: fixed;
  max-width: 350px;
  max-height: calc(100% - var(--logo-height));
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -350px;
  background-color: #333333;
  color: #ffffff;
  z-index: 1000;
  -webkit-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
}
#page-navigation-contents.active {
  left: 0px;
}
#menu-toggle {
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  height: 30px;
  width: 30px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1001;
}
#menu-toggle span {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 1px;
  margin-left: -7.5px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;
}
#menu-toggle span:nth-child(1) {
  top: 8.5px;
}
#menu-toggle span:nth-child(2) {
  top: 13.5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
#menu-toggle span:nth-child(3) {
  top: 18.5px;
}
#menu-toggle:hover span {
  background-color: #a27616;
}
#menu-toggle.close span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-toggle.close span:nth-child(2) {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
#menu-toggle.close span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#page-logo {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  height: var(--logo-height);
  padding: 11px 50px;
  background-color: #333333;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  z-index: 1000;
}
#page-logo a {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
#page-logo .logo-subtitle {
  font-size: 12px;
  font-size: 0.75rem;
  color: #F4C600;
}
#page-logo .logo-name {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #ffffff;
}
#page-hero-image .page-hero-thumbnail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #dddddd;
  background-size: cover;
  z-index: 10;
}
#page-hero-image .overlay {
  z-index: 20;
}
#page-hero-image .overlay.overlay-black {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
}
#page-hero-image:not(.overlay) {
  position: relative;
  height: 180px;
  z-index: 1;
}
#page-hero-image.noimage:not(.overlay) {
  height: 110px;
}
#page-hero-image.overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
#account-info {
  position: relative;
  margin: -85px 20px 20px;
  text-align: center;
  z-index: 10;
}
#account-info .account-thumbnail {
  height: 105px;
  width: 105px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #ffffff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 105px;
  color: #cccccc;
}
#account-info .account-name {
  padding: 0 0 20px;
  border-bottom: 1px solid #666666;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
#main-navigation {
  margin: 20px 0;
}
#main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-navigation ul li a {
  display: block;
  padding: 10px 20px;
  background-color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  vertical-align: top;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
#main-navigation ul li a .fas {
  width: 12px;
  margin-right: 20px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999999;
  text-align: center;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
#main-navigation ul li.active > a {
  background-color: #222222;
}
#main-navigation ul li:hover > a {
  background-color: #a27616;
}
#main-navigation ul li:hover > a .fas {
  color: #ffffff;
}
.pullout-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 100%;
  color: #ffffff;
  z-index: 900;
  -webkit-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
}
.pullout-menu:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  background: #000000;
  background: -webkit-gradient(left center, right center, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='rgba(0, 0, 0, 0)', GradientType=1);
  opacity: 0.15;
  filter: alpha(opacity=15);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=15);
  z-index: 20;
}
.pullout-menu.active {
  left: 350px;
}
.pullout-menu .pullout-title,
.pullout-menu .pullout-contents {
  position: relative;
  z-index: 10;
}
.pullout-menu .pullout-title,
.pullout-menu .pullout-contents .page-navigation-scroll {
  padding: 20px;
}
.pullout-menu .pullout-title {
  background-color: #545454;
}
.pullout-menu .pullout-title:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: bottom;
}
.pullout-menu .pullout-title h4 {
  display: inline-block;
  margin: 0;
  color: #ffffff;
  vertical-align: bottom;
}
.pullout-menu .pullout-title h4 .fas,
.pullout-menu .pullout-title h4 .far {
  margin-right: 20px;
  color: #999999;
}
.pullout-menu .pullout-contents {
  height: 100%;
  background-color: #666666;
}
.pullout-menu .page-navigation-scroll.ps--active-y {
  padding-right: 30px;
}
.pullout-menu .page-navigation-scroll.ps--active-y .view-all-results {
  margin-bottom: 20px;
}
.pullout-menu .select {
  background-position: calc(100% - 10px) -148px !important;
  background-color: #999999;
  color: #ffffff;
}
.pullout-menu .sar-tool-date {
  color: #cccccc;
}
.pullout-menu .results-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.pullout-menu .results-list li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.pullout-menu .results-list li + li {
  margin-top: 20px;
  border-top: 1px solid #545454;
  padding-top: 20px;
}
.pullout-menu .results-list .result-details {
  width: calc(100% - 60px);
}
.pullout-menu .results-list .result-details .legal-land-description {
  word-break: break-all;
}
.pullout-menu .results-list .result-buttons {
  margin: 0 -5px;
}
.pullout-menu .results-list .result-buttons a,
.pullout-menu .results-list .result-buttons button {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
  border: 0;
  background: 0;
  padding: 0;
  font-size: 18px;
  color: #999999;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.pullout-menu .results-list .result-buttons a:hover,
.pullout-menu .results-list .result-buttons button:hover {
  color: #ffffff;
}
.pullout-menu .view-all-results {
  width: 100%;
}
#page-description {
  margin: 40px 20px 20px;
}
#page-description h6 {
  color: #ffffff;
}
.page-contact {
  margin: 20px;
  border-top: 1px solid #666666;
  padding-top: 20px;
}
.page-contact .company-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
.page-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-contact ul li,
.page-contact ul a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #999999;
}
.page-contact ul a:hover {
  color: #cccccc;
}
.page-contact .page-disclaimer {
  margin-top: 10px;
}
#sitemap {
  list-style: none;
  margin: 0;
}
#sitemap .fas,
#sitemap .far,
#sitemap .fab {
  display: inline-block;
  color: #222222;
  width: 28px;
}
@media all and (min-width: 769px) {
  :root {
    --logo-height: 75px;
  }
}
@media all and (min-width: 1025px) {
  :root {
    --logo-height: 95px;
  }
  #menu-toggle {
    display: none;
  }
  #page-navigation {
    position: fixed;
    width: 350px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .pullout-menu .pullout-contents {
    max-height: calc(100% - var(--logo-height));
  }
  #page-navigation-contents {
    position: relative;
    top: 0;
    left: 0 !important;
  }
  .pullout-menu .pullout-title {
    height: var(--logo-height);
  }
  #page-logo {
    padding: 16.5px 20px;
  }
  #page-logo .logo-subtitle {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #page-logo .logo-name {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .pullout-menu {
    display: block;
  }
}
@media all and (min-width: 1367px) {
  :root {
    --logo-height: 120px;
  }
  #page-logo {
    padding: 26px 20px;
  }
  #page-logo .logo-subtitle {
    font-size: 16px;
    font-size: 1rem;
  }
  #page-hero-image:not(.overlay) {
    height: 230px;
  }
  #account-info {
    margin: -105px 40px 20px;
  }
  #account-info .account-thumbnail {
    height: 125px;
    width: 125px;
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 125px;
  }
  #account-info .account-name {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #main-navigation ul li a {
    padding: 10px 40px;
    font-size: 16px;
    font-size: 1rem;
  }
  #page-description {
    margin: 60px 40px 20px;
  }
  .page-contact {
    margin: 20px 40px 40px;
  }
  .pullout-menu .pullout-title,
  .pullout-menu .pullout-contents .page-navigation-scroll {
    padding: 30px 40px;
  }
  .pullout-menu .pullout-title .fas {
    margin-right: 30px;
  }
  .pullout-menu .pullout-contents .page-navigation-scroll.ps--active-y {
    padding-right: 40px;
  }
  .pullout-menu .results-list {
    margin: 0 0 30px 0;
  }
  .pullout-menu .select {
    background-position: calc(100% - 20px) -138px !important;
  }
}
/*------ body content ------*/
#page-wrapper {
  position: relative;
  min-height: 100%;
  background-color: #eeeeee;
}
body.basic #page-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.basic #page-wrapper #seo-wrapper {
  width: 100%;
}
.responsive-bg {
  background-attachment: fixed;
  background-size: cover;
}
.touch .responsive-bg {
  background-attachment: scroll;
  background-size: cover;
}
.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
}
.overlay.overlay-theme1 {
  background-color: #a27616;
}
.overlay.overlay-theme2 {
  background-color: #a27616;
}
.overlay.overlay-gradient {
  background: #a27616;
  background: -webkit-gradient(left center, right center, color-stop(0%, #a27616), color-stop(50%, #F4C600), color-stop(100%, #a27616));
  background: -webkit-gradient(linear, left top, right top, from(#a27616), color-stop(50%, #F4C600), to(#a27616));
  background: linear-gradient(90deg, #a27616 0%, #F4C600 50%, #a27616 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a27616', endColorstr='#a27616', GradientType=1);
  background-size: 200% 100%;
}
.overlay.overlay-black {
  background: #000000;
  background: -webkit-gradient(center bottom, center top, color-stop(0%, #000000), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='rgba(0, 0, 0, 0)', GradientType=1);
}
.overlay.overlay-transparent {
  background-color: transparent;
}
.overlay.overlay-pattern {
  background-image: url('../../images/ui/bg-pattern.png');
  opacity: 0.25;
  filter: alpha(opacity=25);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  background-position: left center;
  background-repeat: repeat;
}
.overlay.solid {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.icon-box {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #999999;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}
.icon-box .fas {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: inherit;
  vertical-align: top;
}
.priority.high {
  color: #00A45F;
}
.priority.medium {
  color: #0058A4;
}
.priority.low {
  color: #F4C600;
}
.priority-icon {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px 0 0;
  border-radius: 50%;
}
.priority-icon.high,
.priority-icon.medium {
  margin: 0 15px 0 10px;
}
.priority-icon.high:before,
.priority-icon.medium:before,
.priority-icon.high:after,
.priority-icon.medium:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-color: inherit;
  border-radius: 50%;
}
.priority-icon.high:before,
.priority-icon.medium:before {
  left: -11px;
}
.priority-icon.high:after,
.priority-icon.medium:after {
  right: -11px;
}
.priority-icon.high {
  background-color: #00A45F;
}
.priority-icon.medium {
  background-color: #0058A4;
  width: 0px;
}
.priority-icon.medium:after {
  right: -10px;
}
.priority-icon.low {
  background-color: #F4C600;
}
.tooltip .fas,
.tooltip .far {
  font-size: 12px;
  font-size: 0.75rem;
}
#loading-bar {
  position: relative;
  height: 50px;
  padding: 10px 0;
  background-color: #ffffff;
  z-index: 10;
  overflow: hidden;
}
#loading-bar .loading-bar-progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#loading-bar .container-lg {
  padding: 10px 0;
}
#loading-bar h4 {
  position: relative;
  margin: 0;
  z-index: 10;
}
#loading-bar-push {
  display: none;
}
.page-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-header-details {
  margin: 0 0 20px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 15px 20px;
  line-height: 1;
}
.sar-tool-date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #a27616;
  text-transform: uppercase;
}
.legal-land-description {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  text-transform: uppercase;
}
.legal-land-description .separator {
  color: #cccccc;
}
.panel {
  position: relative;
  padding: 20px 0;
  z-index: 10;
}
.panel .panel-content {
  position: relative;
  z-index: 2;
}
@media all and (min-width: 481px) {
  .page-header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-header h1 {
    margin-right: 20px;
  }
}
@media all and (min-width: 1025px) {
  #loading-bar,
  #loading-bar-push {
    height: var(--logo-height);
  }
  #loading-bar {
    position: fixed;
    top: 0;
    right: 0;
    left: 350px;
    padding: 20px 0;
    z-index: 800;
  }
  #loading-bar .container-lg {
    padding: 20px 0;
  }
  #loading-bar-push {
    display: block;
  }
  #page-navigation + #body-content {
    max-width: calc(100% - 350px);
    margin-left: auto;
  }
  .panel {
    padding: 10px 0;
  }
}
@media all and (min-width: 1367px) {
  .icon-box {
    height: 50px;
    width: 50px;
    line-height: 40px;
  }
  .priority-icon {
    margin-right: 10px;
  }
  .tooltip .fas,
  .tooltip .far {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #loading-bar,
  #loading-bar-push {
    height: var(--logo-height);
  }
  #loading-bar .container-lg {
    padding: 37.5px;
  }
  .page-header-details {
    margin: 0 0 40px;
  }
}
/*------ forms ------*/
.alert,
.web-form .form-header {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 5px;
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
.alert .icon-box + h2,
.web-form .form-header .icon-box + h2,
.alert .icon-box + h3,
.web-form .form-header .icon-box + h3,
.alert .icon-box + h4,
.web-form .form-header .icon-box + h4,
.alert .icon-box + h5,
.web-form .form-header .icon-box + h5,
.alert .icon-box + h6,
.web-form .form-header .icon-box + h6,
.alert .icon-box + p,
.web-form .form-header .icon-box + p {
  width: calc(100% - 30px);
  padding-left: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.alert {
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding: 20px;
  background-color: #26861A;
  color: #ffffff;
}
.alert:before {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 50%;
  left: 15px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 18px;
  text-align: center;
  padding: 5px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}
.alert.error:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
}
.alert p {
  padding-left: 35px;
}
.alert strong {
  font-weight: normal;
}
.alert a {
  color: #ffffff;
  text-decoration: underline;
}
.alert a:hover {
  color: #cccccc;
}
.alert.error {
  background-color: #D32927;
}
.form-row {
  margin: 0 0 20px;
}
.form-row .form-row {
  margin-top: 20px;
}
.form-row.nested {
  padding-left: 30px;
}
.form-row.nested .radio-field,
.form-row.nested .checkbox-field {
  margin-bottom: 0;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-columns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 -10px;
}
.form-columns.radio-fields,
.form-columns.checkbox-fields {
  margin: 0 -30px -20px 0;
}
.form-columns .form-field.radio-field,
.form-columns .form-field.checkbox-field {
  width: auto;
  min-width: 0;
  margin: 0 30px 20px 0;
}
.form-columns .form-field.radio-field.full,
.form-columns .form-field.checkbox-field.full {
  margin-right: 0;
}
.form-columns .form-field,
.form-columns .form-field.full {
  width: 100%;
}
.form-columns + .form-columns {
  margin-top: 10px;
}
.form-field {
  margin: 0 0 10px;
}
.form-field.radio-field,
.form-field.checkbox-field {
  margin: 0 0 20px;
}
.input,
.select,
.textarea,
label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
}
.input,
.select,
.textarea {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 5px;
  background-color: #eeeeee;
  font-weight: 700;
}
.input.error,
.select.error,
.textarea.error {
  background-color: #f1b2b2;
}
.input.error::-webkit-input-placeholder,
.select.error::-webkit-input-placeholder,
.textarea.error::-webkit-input-placeholder {
  color: #ffffff;
}
.input.error:-ms-input-placeholder,
.select.error:-ms-input-placeholder,
.textarea.error:-ms-input-placeholder {
  color: #ffffff;
}
.input.error::-moz-placeholder,
.select.error::-moz-placeholder,
.textarea.error::-moz-placeholder {
  color: #ffffff;
}
.input.error::-webkit-input-placeholder, .select.error::-webkit-input-placeholder, .textarea.error::-webkit-input-placeholder {
  color: #ffffff;
}
.input.error::-moz-placeholder, .select.error::-moz-placeholder, .textarea.error::-moz-placeholder {
  color: #ffffff;
}
.input.error:-ms-input-placeholder, .select.error:-ms-input-placeholder, .textarea.error:-ms-input-placeholder {
  color: #ffffff;
}
.input.error::-ms-input-placeholder, .select.error::-ms-input-placeholder, .textarea.error::-ms-input-placeholder {
  color: #ffffff;
}
.input.error::placeholder,
.select.error::placeholder,
.textarea.error::placeholder {
  color: #ffffff;
}
.input,
.textarea {
  padding: 10px;
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #999999;
  font-weight: 400;
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #999999;
  font-weight: 400;
}
.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #999999;
  font-weight: 400;
}
.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
  color: #999999;
  font-weight: 400;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  color: #999999;
  font-weight: 400;
}
.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
  color: #999999;
  font-weight: 400;
}
.input::-ms-input-placeholder, .textarea::-ms-input-placeholder {
  color: #999999;
  font-weight: 400;
}
.input::placeholder,
.textarea::placeholder {
  color: #999999;
  font-weight: 400;
}
.input,
.select {
  height: 40px;
}
.textarea {
  max-width: 700px;
}
.select,
:root .select {
  padding: 10px 30px 10px 10px;
  background-position: calc(100% - 10px) 20px;
}
.radio + label,
.checkbox + label {
  margin: 0;
  padding: 5px 0 5px 40px;
  font-weight: 400;
}
.radio + label:before,
.checkbox + label:before {
  height: 30px;
  width: 30px;
  top: 50%;
  margin-top: -15px;
  border: none;
  border-radius: 5px;
  background-color: #eeeeee;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 30px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.radio:checked + label,
.checkbox:checked + label {
  color: #a27616;
}
.radio:checked + label:before,
.checkbox:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  background-color: #a27616;
  color: #ffffff;
}
.radio.error + label,
.checkbox.error + label {
  color: #D32927;
}
.radio.error + label:before,
.checkbox.error + label:before {
  background-color: #f1b2b2;
}
.input-button-combo {
  position: relative;
  z-index: 10;
}
.input-button-combo .input {
  position: relative;
  padding-right: 70px;
  z-index: 10;
}
.input-button-combo .button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 0 5px 5px 0;
  z-index: 20;
}
.input-button-combo .button .fas {
  margin: 0;
}
label {
  margin: 0 0 10px;
}
.required {
  color: #D32927;
}
.web-form + .web-form {
  margin-top: 40px;
  border-top: 1px solid #dddddd;
  padding-top: 40px;
}
.web-form fieldset {
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 1px;
  background-color: #ffffff;
  overflow: hidden;
}
.web-form fieldset + fieldset {
  margin-top: 20px;
}
.web-form hr {
  max-width: 100px;
}
.web-form .form-header {
  position: relative;
  background-color: #333333;
  z-index: 10;
}
.web-form .form-header:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../../images/ui/bg-pattern.png');
  background-position: left center;
  background-repeat: repeat;
  opacity: 0.08;
  filter: alpha(opacity=8);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=8);
  z-index: -1;
}
.web-form .form-header h2,
.web-form .form-header h3,
.web-form .form-header h4,
.web-form .form-header h5,
.web-form .form-header h6 {
  margin: 0;
  color: #ffffff;
}
.web-form .form-contents {
  padding: 20px;
}
.web-form .form-buttons {
  margin: 20px 0 0;
}
.web-form .form-buttons .button + .button {
  margin-top: 10px;
}
.web-form .form-buttons.sticky {
  margin: 20px -20px -20px;
  padding: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.web-form .form-buttons.sticky .button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.web-form .form-buttons.sticky .button:not(.theme-theme1) {
  color: #999999;
}
.web-form .form-scroll-more,
.web-form .form-buttons-push {
  display: none;
}
@media all and (min-width: 481px) {
  .form-columns {
    margin: 0 -10px -10px 0;
  }
  .form-columns .form-field {
    margin: 0 10px 10px 0;
    min-width: 150px;
  }
  .form-columns .form-field,
  .form-columns .form-field.half {
    width: calc(50% - 10px);
  }
}
@media all and (min-width: 769px) {
  .form-columns .form-field {
    width: calc(33.33% - 10px);
  }
}
@media all and (min-width: 1025px) {
  .web-form .form-buttons.sticky,
  .web-form .form-buttons-push {
    height: 100px;
  }
  .web-form .form-buttons.sticky {
    position: fixed;
    margin: 0;
    padding: 30px;
    right: 0;
    bottom: 0;
    z-index: 100;
  }
  .web-form .form-buttons.sticky .button {
    display: inline-block;
    width: auto;
  }
  .web-form .form-buttons.sticky .button + .button {
    margin: 0 0 0 10px;
  }
  .web-form .form-scroll-more {
    display: inline-block;
    width: 0px;
    height: 60px;
    margin-right: 0px;
    border-radius: 5px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: #999999;
    text-align: center;
    text-transform: uppercase;
    z-index: 10;
    vertical-align: middle;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    overflow: hidden;
    -webkit-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
  }
  .web-form .form-scroll-more .mouse-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 30px;
    margin: 0 0 5px;
    border: 1px solid #999999;
    border-radius: 20px;
    background-color: #ffffff;
    vertical-align: top;
    z-index: 10;
  }
  .web-form .form-scroll-more .mouse-icon:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7.5px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #999999;
    z-index: 10;
  }
  .web-form .form-scroll-more.active {
    width: 40px;
    margin-right: 20px;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  }
  .web-form .form-buttons-push {
    display: block;
  }
}
@media all and (min-width: 1367px) {
  .alert,
  .web-form .form-header {
    font-size: 16px;
    font-size: 1rem;
  }
  .alert .icon-box + h2,
  .web-form .form-header .icon-box + h2,
  .alert .icon-box + h3,
  .web-form .form-header .icon-box + h3,
  .alert .icon-box + h4,
  .web-form .form-header .icon-box + h4,
  .alert .icon-box + h5,
  .web-form .form-header .icon-box + h5,
  .alert .icon-box + h6,
  .web-form .form-header .icon-box + h6,
  .alert .icon-box + p,
  .web-form .form-header .icon-box + p {
    width: calc(100% - 50px);
    padding-left: 20px;
  }
  .alert {
    margin: 0 0 30px;
  }
  .alert:before {
    width: 50px;
    height: 50px;
    line-height: 40px;
    left: 15px;
  }
  .alert p {
    padding: 10px 0 10px 60px;
  }
  .form-columns.radio-fields,
  .form-columns.checkbox-fields {
    margin: 0 -50px -20px 0;
  }
  .form-columns .form-field {
    width: auto;
  }
  .form-columns .form-field.radio-field,
  .form-columns .form-field.checkbox-field {
    margin-right: 40px;
  }
  .input,
  .select,
  .textarea,
  label {
    font-size: 16px;
    font-size: 1rem;
  }
  .input,
  .textarea {
    padding: 15px 20px;
  }
  .input,
  .select {
    height: 60px;
  }
  .select,
  :root .select {
    padding: 15px 40px 15px 20px;
    background-position: calc(100% - 20px) 30px;
  }
  .radio + label,
  .checkbox + label {
    padding: 10px 0 10px 60px;
  }
  .radio + label:before,
  .checkbox + label:before {
    height: 40px;
    width: 40px;
    top: 50%;
    margin-top: -20px;
    line-height: 40px;
  }
  .input-button-combo .input {
    padding-right: 100px;
  }
  label.question-label {
    margin: 0 0 20px;
  }
  .web-form .form-contents {
    padding: 30px 40px;
  }
  .web-form .form-buttons.sticky,
  .web-form .form-buttons-push {
    height: 120px;
  }
  .web-form .form-scroll-more {
    padding: 8px 0;
  }
}
/*------ scrollbars ------*/
.ps.ps--active-x .ps__rail-x,
.ps.ps--active-y .ps__rail-y {
  display: inline-block;
}
.ps .ps__rail-y {
  display: none;
  position: absolute;
  right: 10px;
  margin: 10px 0;
  z-index: 1000;
}
.ps .ps__rail-y .ps__thumb-y {
  position: relative;
  border-radius: 10px;
  width: 7.5px;
  background-color: #dddddd;
  bottom: 0;
  cursor: -webkit-grab;
  cursor: -ms-grab;
  cursor: -o-grab;
  cursor: grab;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
}
.ps .ps__rail-y.ps--clicking .ps__thumb-y {
  cursor: -webkit-grabbing;
  cursor: -ms-grabbing;
  cursor: -o-grabbing;
  cursor: grabbing;
}
/*------ tooltip ------*/
.ui-tooltip {
  position: absolute;
  width: 300px;
  background-color: #333333;
  padding: 20px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.ui-helper-hidden-accessible {
  display: none;
}
/*------ dialog boxes ------*/
.ui-dialog {
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
}
.ui-dialog.dialog-error .ui-dialog-titlebar {
  background-color: #D32927;
}
.ui-dialog .ui-dialog-buttonpane button {
  border-radius: 5px;
}
.ui-widget-overlay {
  z-index: 9999;
}
.ui-widget-overlay.ui-loading i {
  position: absolute;
  -webkit-transform: translate(-50% -50%);
  transform: translate(-50% -50%);
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 24px;
}
@media all and (min-width: 1367px) {
  .ui-dialog {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/*------ login/registration page ------*/
.login-panel {
  padding: 50px 0;
}
.login-panel h1 {
  margin: 0 0 20px;
  text-transform: uppercase;
}
.login-panel .panel-content-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 1px;
  background-color: #ffffff;
  z-index: 10;
}
.login-panel .panel-header {
  border-radius: 5px;
  background-color: #333333;
  color: #ffffff;
  overflow: hidden;
}
.login-panel #page-logo {
  display: block;
  height: auto;
  margin: 20px;
  padding: 0;
  background-color: transparent;
  z-index: 10;
}
.login-panel #page-description,
.login-panel .page-contact {
  display: none;
}
.login-panel .page-contact-links {
  margin-top: 20px;
}
.login-panel .page-contact-links a {
  font-weight: 700;
  color: #ffffff;
}
.login-panel .page-contact-links a:hover,
.login-panel .page-contact-links a:active {
  color: #a27616;
}
.login-panel #page-help-toggle {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  line-height: 1;
  color: #ffffff;
  z-index: 10;
}
.login-panel #page-help-toggle:hover {
  color: #cccccc;
}
.login-panel .panel-content {
  padding: 20px;
}
.login-panel .panel-text {
  margin: 0 0 40px;
}
.login-panel .web-form {
  text-align: center;
}
.login-panel .web-form label {
  text-align: left;
}
.login-panel .web-form .form-buttons .login-links small {
  display: block;
}
.login-panel .web-form .form-buttons .login-links small a {
  color: #999999;
}
.login-panel .web-form .form-buttons .login-links small a:hover {
  color: #a27616;
}
.login-panel .web-form .form-buttons .login-links small strong {
  color: #a27616;
}
.login-panel .web-form .form-buttons .login-links small + small {
  margin-top: 5px;
}
.login-panel .web-form .form-buttons .button {
  margin-top: 20px;
}
.login-panel .panel-logos {
  margin: 40px -20px -20px 0;
  text-align: center;
}
.login-panel .panel-logos img {
  max-width: 100px;
  margin: 0 20px 20px 0;
  vertical-align: middle;
}
#page-help .page-contact {
  margin: 20px 0 0 0;
  border-color: #dddddd;
}
#page-help .page-contact .company-name {
  color: #a27616;
}
@media all and (min-width: 1025px) {
  .nav-lang {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .login-panel h1 {
    font-size: 32px;
    font-size: 2rem;
  }
  .login-panel #page-help-toggle {
    display: none;
  }
  .login-panel #page-description,
  .login-panel .page-contact {
    display: block;
  }
  .login-panel #page-logo {
    margin: 40px 20px;
  }
  .login-panel #page-description,
  .login-panel .page-contact {
    margin: 25px 40px;
  }
  .login-panel #page-description:last-child,
  .login-panel .page-contact:last-child {
    margin-bottom: 40px;
  }
  .login-panel #page-description {
    border-top: 1px solid #666666;
    padding-top: 20px;
  }
  .login-panel .panel-content-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: none;
    margin: 0;
  }
  .login-panel .panel-header {
    width: 350px;
  }
  .login-panel .panel-content {
    width: calc(100% - 350px);
    padding: 40px;
  }
  .login-panel .panel-content-columns {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .login-panel .web-form {
    width: 400px;
    text-align: left;
  }
  .login-panel .web-form .form-buttons .login-links {
    float: left;
    max-width: 54%;
    padding-right: 20px;
  }
  .login-panel .web-form .form-buttons .button {
    float: right;
    width: 160px;
    max-width: 46%;
    min-width: 0;
    margin: 0;
  }
  .login-panel .panel-logos {
    width: calc(100% - 400px);
    margin: 0;
    padding-left: 20px;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .login-panel .panel-logos img {
    max-width: 100%;
    margin: 25px 0;
  }
}
@media all and (min-width: 1367px) {
  .login-panel .web-form .form-buttons .login-links {
    padding-top: 10px;
  }
}
/*------ pagination ------*/
#report-pager {
  margin-top: 20px;
  text-align: center;
}
.pager {
  padding-top: 5px;
}
.pager a {
  display: inline-block;
  min-width: 30px;
  padding: 3px 6px;
  margin: 1px;
  color: #a27616;
  background: #ffffff;
  border: 1px solid #a27616;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.pager a:hover {
  background: #eeeeee;
}
.pager a.current {
  background: #a27616;
  color: #ffffff;
  cursor: default;
}
.pager .ellipses {
  margin: 1px;
}
#filters label.all {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#filters .checkbox + label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 42px;
}
/*------ tabs ------*/
.content-tabs .tabs-nav-wrapper ul,
.content-tabs div.tabs-panel {
  display: none;
}
.content-tabs.ui-tabs {
  display: block;
  padding-top: 5px;
}
.content-tabs.ui-tabs .ui-tabs-nav {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #cccccc;
}
.content-tabs.ui-tabs .ui-tabs-nav li {
  display: block;
  position: relative;
}
.content-tabs.ui-tabs .ui-tabs-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid #cccccc;
  border-bottom: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  background-color: #eeeeee;
  font-weight: bold;
  color: #666666;
}
.content-tabs.ui-tabs .ui-tabs-nav li a:hover {
  color: #a27616;
}
.content-tabs.ui-tabs .ui-tabs-nav li a:hover small {
  color: #a27616;
}
.content-tabs.ui-tabs .ui-tabs-nav li br {
  display: none;
}
.content-tabs.ui-tabs .ui-tabs-nav li small {
  display: block;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a,
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a:hover {
  z-index: 2;
  background-color: #ffffff;
  color: #a27616;
}
.content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active small {
  color: #a27616;
}
.content-tabs.ui-tabs .ui-tabs-nav li:first-child a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.content-tabs.ui-tabs .ui-tabs-panel {
  display: block;
  clear: both;
  background: #ffffff;
}
.content-tabs.ui-tabs .ui-tabs-panel.form-contents {
  border: 1px solid #cccccc;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media all and (min-width: 769px) {
  .content-tabs.ui-tabs .ui-tabs-nav {
    display: block;
    padding: 0 0 0 1px;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li {
    display: inline-block;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li a {
    padding: 15px 20px;
    margin: 0 0 -1px -1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li br {
    display: block;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li small {
    display: inline-block;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a,
  .content-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a:hover {
    border-bottom: 1px solid #fff;
  }
  .content-tabs.ui-tabs .ui-tabs-nav li:not(:last-child) {
    margin-right: 5px;
  }
}
#filters .checkbox + label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 42px;
}
#filters .checkbox + label img {
  margin-right: 10px;
}
#filters .checkbox:disabled + label img {
  opacity: 0.25;
}
#filters label.all {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bmp-table td {
  vertical-align: middle;
}
.bmp-table .bmp-mobile {
  display: none;
  padding-top: 10px;
}
.bmp-table .bmp-toggle {
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.bmp-table .bmp-toggle:hover {
  color: #a27616;
}
.bmp-table .bmp-toggle:before {
  display: inline-block;
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f055";
}
.bmp-table .bmp-toggle.open:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f056";
}
.bmp-table .bmp-expandable {
  display: none;
}
.bmp-table .bmp-expandable td,
.bmp-table .bmp-optional td {
  background: #dddddd;
}
.bmp-table .bmp-expandable label:first-child,
.bmp-table .bmp-optional label:first-child {
  display: none;
}
.bmp-table .bmp-expandable label:not(:first-child),
.bmp-table .bmp-optional label:not(:first-child) {
  color: #333333;
}
.bmp-table .bmp-expandable .textarea,
.bmp-table .bmp-optional .textarea,
.bmp-table .bmp-expandable .radio:not(:checked) + label:before,
.bmp-table .bmp-optional .radio:not(:checked) + label:before {
  background-color: #ffffff;
}
.bmp-table img {
  display: inline-block;
  margin: 0px 2px;
}
.radio + label,
.checkbox + label {
  margin: 0;
  padding: 5px 0 5px 40px;
  font-weight: 400;
}
.radio + label:before,
.checkbox + label:before {
  height: 30px;
  width: 30px;
  top: 50%;
  margin-top: -15px;
  border: none;
  border-radius: 5px;
  background-color: #eeeeee;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 30px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.radio.checkbox-sm + label,
.checkbox.checkbox-sm + label {
  padding: 5px 0 5px 30px;
}
.radio.checkbox-sm + label:before,
.checkbox.checkbox-sm + label:before {
  height: 20px;
  width: 20px;
  line-height: 20px;
  margin-top: -10px;
}
.radio:checked + label,
.checkbox:checked + label {
  color: #a27616;
}
.radio:checked + label:before,
.checkbox:checked + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  background-color: #a27616;
  color: #ffffff;
}
.radio:disabled + label,
.checkbox:disabled + label {
  opacity: 0.5;
}
.radio.error + label,
.checkbox.error + label {
  color: #D32927;
}
.radio.error + label:before,
.checkbox.error + label:before {
  background-color: #f1b2b2;
}
/*------ generate report form ------*/
#report-form .form-buttons {
  margin-top: 20px;
}
.accord_heading {
  color: #ffffff;
  padding: 0.7em;
  cursor: pointer;
}
.accord_heading span.ui-accordion-header-icon.ui-icon.fas.fa-arrow-alt-circle-right {
  color: #999999;
}
.accord_heading span.ui-accordion-header-icon.ui-icon.fas.fa-arrow-alt-circle-down {
  color: #999999;
}
.accord_heading:hover {
  background-color: #012169;
}
.accord_heading:hover span.ui-accordion-header-icon.ui-icon.fas.fa-arrow-alt-circle-down {
  color: #ffffff;
}
.accord_heading:hover span.ui-accordion-header-icon.ui-icon.fas.fa-arrow-alt-circle-right {
  color: #ffffff;
}
.accord_heading.ui-accordion-header-active.ui-state-active {
  background-color: #222222;
}
.accord_heading.ui-accordion-header-active.ui-state-active:hover {
  background-color: #012169;
}
.lang_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.nav-lang {
  grid-area: lang;
  align-self: baseline;
}
.lang-picker {
  position: relative;
  border-radius: 3px;
  font-weight: 700;
  color: #999;
  overflow: hidden;
  z-index: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lang-picker::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #eeeeee;
  z-index: -1;
  content: '';
}
.lang-picker a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23px;
  height: 23px;
  border-radius: 3px;
  color: inherit;
  line-height: 1;
}
.lang-picker a.active {
  color: #ffffff;
  background-color: #a27616;
}
.lang-picker a:not(.active):hover {
  color: #222222;
}
.ins_account .lang-picker {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0.7em;
 padding-top: 0.7em;
}
#page-logo {
  padding: 3.7em 20px;
}
