@charset "UTF-8";
/**
 *  Folha de estilos para componentes de formulário
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
/**
 *  Variáveis, mixins e configurções
 *
 *  @author     Bruno Lima <brunothelima@gmail.com>
 *  @link       assets/scss/configurations.scss
 */
/*  NTH da mais escura -> para a mais clara */
/* 				 nth(1)   nth(2)   nth(3)   nth(4)   nth(5)   nth(6)   nth(7) */
/* 				nth(1)  nth(2)    nth(3)   nth(4)   nth(5) */
/* 					  nth(1)   nth(2)    nth(3)   nth(4)   nth(5) */
/* 					     nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			   nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			 nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/* 			      nth(1)   nth(2)   nth(3)   nth(4)   nth(5) */
/**
 *  Folha de estilos para configurações de texto
 *  @author Bruno Lima <brunothelima@gmail.com>
 */
h1 {
  font-size: 30px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 21px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 19px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 17px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  h4 {
    font-size: 15px;
  }
}

p {
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  p {
    margin-bottom: 11px;
  }
}

.text {
  font-size: 15px;
  line-height: 200%;
}
@media screen and (max-width: 1200px) {
  .text {
    font-size: 14px;
  }
}

.z-depth-0 {
  box-shadow: none !important;
}

.z-depth-1, .dropdown-content, .btn-floating {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.z-depth-1-half, .btn-floating:hover {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4 {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

.dropdown-content {
  background-color: #FFFFFF;
  margin: 0;
  display: none;
  min-width: 100px;
  max-height: 650px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  z-index: 999;
  will-change: width, height;
}
.dropdown-content li {
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
  text-transform: none;
}
.dropdown-content li:hover, .dropdown-content li.active, .dropdown-content li.selected {
  background-color: #eee;
}
.dropdown-content li.active.selected {
  background-color: #e1e1e1;
}
.dropdown-content li.divider {
  min-height: 0;
  height: 1px;
}
.dropdown-content li > a, .dropdown-content li > span {
  font-size: 13px;
  color: #2B373F;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
}
.dropdown-content li > span > label {
  top: 1px;
  left: 3px;
  height: 18px;
}
.dropdown-content li > a > i {
  height: inherit;
  line-height: inherit;
}

form:after {
  clear: both;
  content: '';
  display: block;
}
form .field {
  margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  form .field {
    margin-bottom: 11px;
  }
}
form .field input[type="text"],
form .field input[type="email"],
form .field input[type="password"],
form .field input[type="tel"],
form .field textarea {
  padding: 0 15px;
  height: 40px;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid transparent;
  border-radius: 0;
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #92989C;
  font-size: 13px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  form .field input[type="text"],
  form .field input[type="email"],
  form .field input[type="password"],
  form .field input[type="tel"],
  form .field textarea {
    font-size: 12px;
  }
}
form .field textarea {
  height: 100px;
  padding: 15px;
}
form .field .select2 {
  width: 100% !important;
  height: 40px;
  border: 1px solid transparent;
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
form .field .select2 .select2-selection__arrow {
  top: 7px;
}
form .field .select2 .select2-selection__arrow b {
  border-top-color: #7C8184 !important;
}
form .field .select2 .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #7C8184 !important;
}
form .field .select2 .select2-selection__rendered {
  font-size: 13px;
  line-height: normal;
  line-height: 40px;
  color: #92989C;
}
@media screen and (max-width: 1200px) {
  form .field .select2 .select2-selection__rendered {
    font-size: 12px;
  }
}
form .field .select2 .select2-selection {
  height: 40px;
  border-radius: 0;
  border: none;
}
form .field.error ::-webkit-input-placeholder {
  color: #E45264;
}
form .field.error :-moz-placeholder {
  color: #E45264;
}
form .field.error ::-moz-placeholder {
  color: #E45264;
}
form .field.error :-ms-input-placeholder {
  color: #E45264;
}
form .field.error input[type="text"],
form .field.error input[type="email"],
form .field.error input[type="password"],
form .field.error input[type="tel"],
form .field.error textarea,
form .field.error .select2 {
  border-color: #E45264;
}
form button[disabled] {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
form .submit:after {
  clear: both;
  content: '';
  display: block;
}
form .submit .g-recaptcha {
  float: left;
}
form .submit button {
  float: right;
}

.select2-dropdown.service-guide-box-custom-select {
  border-radius: 0;
  border: none;
  background-color: #FFF;
}
.select2-dropdown.service-guide-box-custom-select .select2-results__options .select2-results__option {
  padding: 15px;
  background-color: #FFFFFF;
  font-size: 13px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .select2-dropdown.service-guide-box-custom-select .select2-results__options .select2-results__option {
    font-size: 12px;
  }
}
.select2-dropdown.service-guide-box-custom-select .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: #EEE;
  color: #92989C;
}

.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}

/**
 * When the picker is opened, the input element is "activated".
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}

/**
 * The holder is the only "scrollable" top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what's here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
}

/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  -webkit-transition: background 0.15s ease-out, top 0s 0.15s;
  -moz-transition: background 0.15s ease-out, top 0s 0.15s;
  transition: background 0.15s ease-out, top 0s 0.15s;
  -webkit-backface-visibility: hidden;
}

/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  width: 300px;
  max-height: 350px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

@media (min-height: 28.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}

@media (min-height: 28.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle;
}

@media (min-height: 28.875em) {
  .picker__box {
    display: block;
    border: 1px solid #777777;
    border-top-color: #898989;
    border-bottom-width: 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  top: 0;
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: background 0.15s ease-out;
  -moz-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}

.picker--opened .picker__frame {
  top: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

@media (min-height: 35.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: 20% auto;
  }
}
/**
 * For `large` screens, transform into an inline picker.
 */
/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__input.picker__input--active {
  border-color: color("blue", "lighten-5");
}

.picker__frame {
  margin: 0 auto;
  max-width: 325px;
}

@media (min-height: 38.875em) {
  .picker--opened .picker__frame {
    top: 10%;
    bottom: auto;
  }
}
/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
}

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  height: 2em;
  padding: 0;
  margin-left: .25em;
  margin-right: .25em;
}

.picker__select--month.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 40%;
}

.picker__select--year.browser-default {
  display: inline;
  background-color: #FFFFFF;
  width: 25%;
}

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: rgba(0, 0, 0, 0.05);
}

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 1rem;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}

.picker__table th, .picker__table td {
  text-align: center;
}

.picker__table td {
  margin: 0;
  padding: 0;
}

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
}

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day--today {
  position: relative;
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent;
}

.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}

.picker__day--infocus:hover {
  cursor: pointer;
  color: #000;
  font-weight: 500;
}

.picker__day--outfocus {
  display: none;
  padding: .75rem 0;
  color: #fff;
}

.picker__day--outfocus:hover {
  cursor: pointer;
  color: #dddddd;
  font-weight: 500;
}

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
}

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 50%;
  transform: scale(0.75);
  background: #0089ec;
  color: #ffffff;
}

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: rgba(0, 0, 0, 0.05);
  outline: none;
}

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200;
}

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777;
}

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}

/* ==========================================================================
   CUSTOM MATERIALIZE STYLES
   ========================================================================== */
.picker__box {
  border-radius: 2px;
  overflow: hidden;
}

.picker__date-display {
  text-align: center;
  background-color: #57486F;
  color: #fffFFF;
  padding-bottom: 15px;
  font-weight: 300;
}

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b4b0b9;
}

.picker__weekday-display {
  background-color: #463a59;
  padding: 10px;
  color: #FFFFFF;
  font-weight: 200;
  letter-spacing: .5;
  font-size: 1rem;
  margin-bottom: 15px;
}

.picker__month-display {
  text-transform: uppercase;
  font-size: 2rem;
  color: #fffFFF;
}
.picker__month-display > * {
  color: #FFFFFF;
}

.picker__day-display {
  font-size: 4.5rem;
  font-weight: 400;
  color: #fffFFF;
}
.picker__day-display > * {
  color: #FFFFFF;
}

.picker__year-display {
  font-size: 1.8rem;
  color: #ffffff;
}
.picker__year-display > * {
  color: #FFFFFF;
}

.picker__box {
  padding: 0;
}

.picker__calendar-container {
  padding: 0 1rem;
}
.picker__calendar-container thead {
  border: none;
}

.picker__table {
  margin-top: 0;
  margin-bottom: .5em;
}

.picker__day--infocus {
  color: #595959;
  letter-spacing: -.3;
  padding: .75rem 0;
  font-weight: 400;
  border: 1px solid transparent;
}

.picker__day.picker__day--today {
  color: #57486F;
}

.picker__day.picker__day--today.picker__day--selected {
  color: #fff;
}

.picker__weekday {
  font-size: .9rem;
}

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  border-radius: 50%;
  transform: scale(0.9);
  background-color: #57486F;
  color: #ffffff;
}
.picker__day--selected.picker__day--outfocus,
.picker__day--selected:hover.picker__day--outfocus,
.picker--focused .picker__day--selected.picker__day--outfocus {
  background-color: #b4b0b9;
}

.picker__footer {
  text-align: right;
  padding: 5px 10px;
}

.picker__close, .picker__today {
  font-size: 1.1rem;
  padding: 0 1rem;
  color: #57486F;
}

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #676767;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #676767;
}

button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
  background-color: #b4b0b9;
}

.btn-floating {
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  outline: 0;
  padding: 0 2rem;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled {
  background-color: #DFDFDF !important;
  box-shadow: none;
  color: #9F9F9F !important;
  cursor: default;
}
.btn-floating.disabled *, .btn-large.disabled *, .btn:disabled *, .btn-large:disabled *, .btn-large:disabled *, .btn-floating:disabled * {
  pointer-events: none;
}
.btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover {
  background-color: #DFDFDF;
  color: #9F9F9F;
}

.btn-floating i, .btn-large i {
  font-size: 1.3rem;
  line-height: inherit;
}

.btn-floating {
  text-decoration: none;
  color: #fff;
  background-color: #CCC;
  text-align: center;
  letter-spacing: .5px;
  transition: .2s ease-out;
  cursor: pointer;
}
.btn-floating:hover {
  background-color: #d9d9d9;
}

.btn-floating {
  display: inline-block;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 37px;
  height: 37px;
  line-height: 37px;
  padding: 0;
  background-color: #CCC;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  vertical-align: middle;
}
.btn-floating i {
  width: inherit;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 37px;
}
.btn-floating:hover {
  background-color: #CCC;
}
.btn-floating:before {
  border-radius: 0;
}
.btn-floating.btn-large {
  width: 55.5px;
  height: 55.5px;
}
.btn-floating.btn-large i {
  line-height: 55.5px;
}

button.btn-floating {
  border: none;
}

.fixed-action-btn {
  position: fixed;
  right: 23px;
  bottom: 23px;
  padding-top: 15px;
  margin-bottom: 0;
  z-index: 998;
}
.fixed-action-btn.active ul {
  visibility: visible;
}
.fixed-action-btn.horizontal {
  padding: 0 0 0 15px;
}
.fixed-action-btn.horizontal ul {
  text-align: right;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  left: initial;
  width: 500px;
  /*width 100% only goes to width of button container */
}
.fixed-action-btn.horizontal ul li {
  display: inline-block;
  margin: 15px 15px 0 0;
}
.fixed-action-btn ul {
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  bottom: 64px;
  margin: 0;
  visibility: hidden;
}
.fixed-action-btn ul li {
  margin-bottom: 15px;
}
.fixed-action-btn ul a.btn-floating {
  opacity: 0;
}

.btn-large {
  height: 54px;
  line-height: 56px;
}
.btn-large i {
  font-size: 1.6rem;
}

.btn-block {
  display: block;
}

@media screen and (max-width: 980px) {
  .share-component {
    bottom: 60px !important;
  }
}
.share-component > a {
  background-color: #2B373F;
}
.share-component ul li {
  list-style: none;
}
.share-component a {
  text-align: center;
}
.share-component a.facebook {
  background-color: #3b5999;
}
.share-component a.twitter {
  background-color: #55acee;
}
.share-component a.linkedin {
  background-color: #0077B5;
}
.share-component a svg {
  display: inline-block;
  vertical-align: middle;
}

body.notices form .field .select2 .select2-selection__arrow b {
  border-top-color: #007EBC !important;
}
body.notices form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #007EBC !important;
}
body.notices .share-component > a {
  background-color: #007EBC;
}

body.articles form .field .select2 .select2-selection__arrow b {
  border-top-color: #279DAC !important;
}
body.articles form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #279DAC !important;
}
body.articles .share-component > a {
  background-color: #279DAC;
}

body.service-guide form .field .select2 .select2-selection__arrow b {
  border-top-color: #449E85 !important;
}
body.service-guide form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #449E85 !important;
}
body.service-guide .share-component > a {
  background-color: #449E85;
}

body.events form .field .select2 .select2-selection__arrow b {
  border-top-color: #57486F !important;
}
body.events form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #57486F !important;
}
body.events .share-component > a {
  background-color: #57486F;
}

body.jobs form .field .select2 .select2-selection__arrow b {
  border-top-color: #425E8A !important;
}
body.jobs form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #425E8A !important;
}
body.jobs .share-component > a {
  background-color: #425E8A;
}

body.utilities form .field .select2 .select2-selection__arrow b {
  border-top-color: #425E8A !important;
}
body.utilities form .field .select2-container--open .select2-selection__arrow b {
  border-bottom-color: #425E8A !important;
}
body.utilities .share-component > a {
  background-color: #425E8A;
}
