/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
#account-mmenu .mm-navbar {
  text-align: left;
  padding-left: 20px;
}

#account-mmenu #drawer-header span {
  color: #061C33;
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45404;
  line-height: 17px;
}

#account-mmenu #mini-login #mini-login-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 560px) {
  #account-mmenu #mini-login #mini-login-actions {
    flex-direction: column;
  }
  #account-mmenu #mini-login #mini-login-actions > div {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}

#account-mmenu #mini-login #mini-login-actions button {
  background-color: #061C33;
  border-radius: 2px;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  vertical-align: top;
  -webkit-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  -moz-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  -o-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  transition: background-color 0.24s ease-out, color 0.24s ease-out;
  padding: 10px;
  line-height: unset;
}

#account-mmenu #mini-login #mini-login-actions button:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #000000;
}

@media screen and (max-width: 560px) {
  #account-mmenu #mini-login #mini-login-actions button {
    width: 100%;
  }
}

#account-mmenu #mini-login #mini-login-actions a {
  color: #2A61FF;
  text-decoration: underline;
}

#account-mmenu #my-account-actions .list-header {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  line-height: 40px;
  color: #54565A;
}

#account-mmenu #my-account-actions .list-header:hover {
  color: #FB3540;
}

#account-mmenu #my-account-actions #dashboard-links li {
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  color: #54565A;
  line-height: 40px;
  padding-left: 10px;
}

#account-mmenu #my-account-actions #dashboard-links li:hover {
  color: #FB3540;
}

body.debug:before {
  background: #ffc;
  width: 100%;
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  padding: 0px;
  font-size: 9px;
  font-size: .575rem;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 20000;
}

@media screen and (min-width: 1436px) {
  body.debug:before {
    content: "min-width: 1436px (beyond full!)";
    background-color: darkred;
  }
}

@media screen and (min-width: 1128px) {
  body.debug:before {
    content: "min-width: 1128px (full size!)";
  }
}

@media screen and (max-width: 1127px) {
  body.debug:before {
    content: "max-width: 1127px (non standard)";
    background-color: greenyellow;
  }
}

@media screen and (max-width: 1060px) {
  body.debug:before {
    content: "max-width: 1060px";
    background-color: lightblue;
  }
}

@media screen and (max-width: 960px) {
  body.debug:before {
    content: "max-width: 960px";
    background-color: pink;
  }
}

@media screen and (max-width: 900px) {
  body.debug:before {
    content: "max-width: 900px";
    background-color: wheat;
  }
}

@media screen and (max-width: 768px) {
  body.debug:before {
    content: "max-width: 768px";
  }
}

@media screen and (max-width: 730px) {
  body.debug:before {
    content: "max-width: 730px";
  }
}

@media screen and (max-width: 680px) {
  body.debug:before {
    content: "max-width: 680px";
  }
}

@media screen and (max-width: 560px) {
  body.debug:before {
    content: "max-width: 560px";
  }
}

@media screen and (max-width: 480px) {
  body.debug:before {
    content: "max-width: 480px";
  }
}

@media screen and (max-width: 360px) {
  body.debug:before {
    content: "max-width: 360px (non standard)";
    background-color: plum;
  }
}

@media screen and (max-width: 320px) {
  body.debug:before {
    content: "max-width: 320px";
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flex-container.flex-direction-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-container.flex-direction-row {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-container .flex-grow {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.flex-container .flex-shrink {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.flex-container .flex-static {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

div[flex-container] {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

div[flex-direction-column] {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

div[flex-direction-row] {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

div div[flex-grow] {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

div div[flex-shrink] {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

div div[flex-static] {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.md-datepicker-calendar-pane {
  z-index: 9999 !important;
}

@media screen and (max-width: 680px) {
  .md-datepicker-calendar-pane {
    z-index: 9999 !important;
  }
}

md-dialog.md-sg-material-theme.gc-recipent-modal md-toolbar.md-sg-material-theme.md-accent {
  background-color: #fff;
}

md-dialog.md-sg-material-theme.gc-recipent-modal md-toolbar.md-sg-material-theme.md-accent .md-toolbar-tools h1 {
  color: #54565A;
}

.gc-recipent-modal {
  width: 600px;
  min-width: 320px;
}

.gc-recipent-modal .form-container {
  margin-bottom: 0;
}

.gc-recipent-modal .form-container form .recipient-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 680px) {
  .gc-recipent-modal .form-container form .recipient-info {
    flex-direction: column;
  }
}

.gc-recipent-modal .form-container form .recipient-info div:nth-child(1) {
  margin-right: 20px;
}

@media screen and (max-width: 680px) {
  .gc-recipent-modal .form-container form .recipient-info div:nth-child(1) {
    margin-right: 0;
  }
}

.gc-recipent-modal .form-container form .recipient-info > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gc-recipent-modal .form-container form .recipient-info textarea {
  background-color: #F0F0F0;
  padding: 15px 8px 0;
}

.gc-recipent-modal .form-container form input[disabled] {
  opacity: 0.5;
}

.gc-recipent-modal .form-container form #e-gift-card #send-date {
  margin-top: 10px;
}

@media screen and (max-width: 680px) {
  .gc-recipent-modal .form-container form md-datepicker#gc-send-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
  }
}

.gc-recipent-modal .form-container form md-datepicker#gc-send-date > button {
  padding: 0;
}

@media screen and (max-width: 680px) {
  .gc-recipent-modal .form-container form md-datepicker#gc-send-date > button {
    flex-basis: 10%;
  }
}

.gc-recipent-modal md-input-container .md-char-counter {
  display: none;
}

.gc-recipent-modal md-input-container:last-of-type {
  margin-bottom: 0;
}

.gc-recipent-modal md-datepicker._md-datepicker-has-triangle-icon {
  margin-right: 0;
}

.gc-recipent-modal md-datepicker._md-datepicker-has-triangle-icon .md-datepicker-button {
  padding-left: 0;
}

.gc-recipent-modal md-datepicker._md-datepicker-has-triangle-icon .md-datepicker-input-container .md-datepicker-triangle-button.md-button.md-icon-button {
  height: 36px;
  width: 36px;
  position: absolute;
  padding: 8px;
  margin: 0 6px;
  min-width: 0;
  line-height: 24px;
  border-radius: 50%;
}

.gc-recipent-modal md-datepicker._md-datepicker-has-triangle-icon .md-datepicker-input-container .md-datepicker-triangle-button.md-button.md-icon-button .md-datepicker-expand-triangle {
  top: 40%;
}

.gc-recipent-modal md-dialog-actions md-button {
  background-color: #D54400;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.image-banner {
  position: absolute;
  top: 8px;
  left: 0px;
  height: 22px;
  padding: 0 10px;
  font-family: "figtreeBoldCondensed", helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .025em;
  color: #fff;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-banner:after {
  content: " ";
  position: absolute;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform-origin: bottom left;
  -ms-transform: skew(-20deg, 0deg);
  -webkit-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
}

.image-banner.red,
.image-banner.red:after {
  color: #fff;
  background-color: #D50001;
}

.image-banner.orange,
.image-banner.orange:after {
  color: #fff;
  background-color: #D54400;
}

.image-banner.blue,
.image-banner.blue:after {
  color: #fff;
  background-color: #2A61FF;
}

.image-banner.rebateGreen,
.image-banner.rebateGreen:after {
  color: #fff;
  background-color: #02C852;
}

.image-banner.doorbuster,
.image-banner.doorbuster:after {
  color: #fff;
  background-color: #019E60;
}

/*PLP Specific*/
@media screen and (max-width: 480px) {
  #product-listing-container .image-banner {
    position: absolute;
    display: inline-block;
    top: 8px;
    padding-top: 3px;
    margin-bottom: 6px;
  }
}

/*cart specific*/
@media screen and (max-width: 480px) {
  .cart-tile-img-container .image-banner {
    top: 4px;
    height: 15px;
    padding: 0 4px;
    font-size: 11px;
  }
}

@media screen and (max-width: 320px) {
  .cart-tile-img-container .image-banner {
    top: 2px;
    height: 12px;
    padding: 0 2px;
    font-size: 8px;
  }
}

.view-cart-container .cart-tile-img-container .image-banner {
  top: 6px;
  height: 16px;
  padding: 0 6px;
  font-size: 12px;
}

@media screen and (max-width: 1128px) {
  .view-cart-container .cart-tile-img-container .image-banner {
    top: 4px;
    height: 15px;
    padding: 0 4px;
    font-size: 11px;
  }
}

@media screen and (max-width: 730px) {
  .view-cart-container .cart-tile-img-container .image-banner {
    top: 2px;
    height: 12px;
    padding: 0 2px;
    font-size: 10px;
  }
}

@media screen and (max-width: 680px) {
  .view-cart-container .cart-tile-img-container .image-banner {
    top: 4px;
    height: 16px;
    padding: 0 4px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .view-cart-container .cart-tile-img-container .image-banner {
    top: 4px;
    height: 15px;
    padding: 0 4px;
    font-size: 11px;
  }
}

@media screen and (max-width: 320px) {
  .view-cart-container .cart-tile-img-container .image-banner {
    top: 2px;
    height: 12px;
    padding: 0 2px;
    font-size: 8px;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.loyalty-points {
  font-family: 'figtree', helvetica, arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.41473;
  color: #54565A;
  margin-top: 8px;
}

.loyalty-points > img {
  position: relative;
  top: -1px;
}

.loyalty-points > div {
  margin-left: 5px;
}

.loyalty-points .tip-container .tool-tip {
  color: #2A61FF;
  margin-top: -2px;
  text-decoration: underline;
  width: auto;
}

.loyalty-points .tip-container .tool-tip span {
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.41473;
  background: none;
  display: inline;
}

.loyalty-points .tip-container .tip-content {
  background-color: #fff;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.16);
  padding: 20px;
  font-size: 0.75rem;
  line-height: 1.54756;
  background-color: #fff;
  color: #54565A;
  min-width: 320px;
}

@media screen and (max-width: 480px) {
  .loyalty-points .tip-container .tip-content {
    min-width: auto;
  }
}

.loyalty-points .tip-container .tip-content > div:first-of-type {
  font-size: 0.8125rem;
  line-height: 1.45404;
  color: #000;
  margin-bottom: 5px;
}

.loyalty-points .tip-container .tip-content ul {
  border: 1px solid #D9D8D6;
  margin: 5px 0;
}

.loyalty-points .tip-container .tip-content ul > li {
  background-color: #D9D8D6;
  padding: 0 5px;
}

.loyalty-points .tip-container .tip-content ul > li:nth-child(2n) {
  background-color: #fff;
}

.loyalty-points .tip-container .tip-content .hyperlink {
  color: #2A61FF;
}

.loyalty-points .tip-container .triangle-down {
  border-top: 10px solid #fff;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.related-searches {
  border-top: 1px solid #999999;
  margin-top: 30px;
  padding-top: 25px;
}

.related-searches:before,
.related-searches:after {
  content: " ";
  display: table;
}

.related-searches:after {
  clear: both;
}

.related-searches h3 {
  margin-bottom: 20px !important;
}

.related-searches .sg-header {
  width: 100%;
  font-family: 'figtreeBoldCondensed', helvetica, arial, sans-serif;
  color: #D54400;
  margin: 10px 0 20px;
  line-height: 0.1em;
}

.related-searches ul:before,
.related-searches ul:after {
  content: " ";
  display: table;
}

.related-searches ul:after {
  clear: both;
}

.related-searches ul li {
  float: left;
  font-size: 14px;
  line-height: 24px;
  margin-right: 25px;
  font-family: 'figtreeBoldCondensed', helvetica, arial, sans-serif;
}

.related-searches ul li:hover,
.related-searches ul li a:hover {
  text-decoration: underline;
}

.related-searches ul li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 960px) {
  .related-searches ul li {
    margin-left: 40px;
  }
}

@media screen and (max-width: 900px) {
  .related-searches ul li {
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .related-searches ul li {
    float: none;
    margin-left: 0;
    line-height: 1em;
  }
  .related-searches ul li a {
    display: block;
    padding: 9px 0;
  }
}

/*--------------------------------------------------------------
			Resets
--------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  line-height: normal;
}

body {
  margin: 0;
  padding: 0;
  line-height: normal;
  overflow-x: hidden;
  *font-size: small;
}

select,
input,
textarea,
button {
  font: 100% sans-serif;
}

a:hover,
a:active {
  outline: none;
}

ul,
ol {
  margin-left: 0;
  list-style: none;
}

sub,
sup {
  font-size: 70%;
  line-height: 0;
  position: relative;
  top: -0.3em;
}

input[type="button"],
input[type="submit"],
input[type="image"],
button {
  cursor: pointer;
}

button,
input,
select,
textarea {
  margin: 0;
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

button {
  width: auto;
  overflow: visible;
}

*:focus {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
footer {
  background-color: #061C33;
  font-family: "figtree", helvetica, arial, sans-serif;
  color: #fff;
  margin-top: 2px;
}

#footer.footer {
  background-color: #061C33;
  margin: 0 auto;
}

.footer .quick-links {
  padding-top: 20px;
  margin-bottom: 36px;
  color: #fff;
  background-color: #061C33;
}

@media only screen and (min-width: 960px) {
  .footer .quick-links {
    display: flex;
    justify-content: center;
  }
}

.footer .quick-links > .col > h2 > a,
.footer .quick-links > .col > div > ul > li > a {
  color: #fff;
}

.footer .quick-links .fallback-categories > li > a {
  color: #fff;
}

.footer .quick-links a:hover {
  text-decoration: underline;
}

.footer .quick-links:before,
.footer .quick-links:after {
  content: " ";
  display: table;
}

.footer .quick-links:after {
  clear: both;
}

.footer .col {
  float: left;
  width: 15%;
  margin-left: 1.8867924528301887%;
}

.footer .col:first-child {
  margin-left: 0;
}

.footer h2,
.bcwp .footer h2 {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer li {
  line-height: 20px;
}

.footer a {
  font-size: 13px;
}

.footer-supplemental {
  padding: 18px 0;
}

.footer-supplemental:before,
.footer-supplemental:after {
  content: " ";
  display: table;
}

.footer-supplemental:after {
  clear: both;
}

.footer-supplemental .copyright,
.footer-supplemental .copyright a {
  font-size: 11px;
  line-height: 30px;
  color: #2b2b2b;
}

.footer-supplemental .copyright {
  float: left;
  margin-bottom: 0;
}

.footer-badge {
  float: left;
  margin-right: 30px;
}

.footer-badges {
  padding-bottom: 10px;
  text-align: center;
}

.general-footer-si {
  float: left;
}

.general-footer-tpi {
  float: right;
}

.footer-copyright {
  margin-top: 30px;
}

.club-accept-modal .moby-close {
  background: none;
}

club-accept-modal {
  position: relative;
}

.gradient-gray {
  background: #d4d2d2;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#d4d2d2, #ebebeb);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#d4d2d2, #ebebeb);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#d4d2d2, #ebebeb);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#d4d2d2, #ebebeb);
  padding: 10px;
}

.club-accept-modal .buttons-set {
  margin: 10px;
}

.club-accept-modal .buttons-set button,
.club-accept-modal .buttons-set a {
  padding: 10px;
  width: 48%;
  font-size: 18px;
}

.club-accept-modal p:not(.jqv-error) {
  font-family: 'figtree', helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: none;
}

.club-accept-modal p span {
  font-family: 'figtreeBoldCondensed', helvetica, arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 20px !important;
}

.club-lightbox-background {
  background: url("/images/club/bc2025-footer-background.jpeg");
  background-repeat: repeat;
}

.footer.container.mm-fixed-bottom .blue-footer-links {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 10px;
  background-color: #061C33;
}

.footer.container.mm-fixed-bottom .blue-footer-links > .left-links-container {
  padding-left: 25px;
  align-self: center;
}

.footer.container.mm-fixed-bottom .blue-footer-links > .left-links-container > div > a {
  color: #fff;
  font-size: 10px;
}

.footer.container.mm-fixed-bottom .blue-footer-links > .right-socials-container {
  padding-right: 25px;
}

footer.softball-style,
#footer.softball-style,
#footer.mm-fixed-bottom.softball-style .blue-footer-links,
#footer.softball-style .quick-links {
  background-color: #1a1a1a;
}

@media screen and (min-width: 961px) {
  .club-footer-list-block {
    flex-direction: row;
  }
  .club-footer-headline span {
    display: inline-block;
  }
}

@media screen and (max-width: 960px) {
  footer .membership-spiff {
    margin-bottom: 0;
  }
  footer {
    padding-bottom: 30px;
  }
  .club-footer {
    margin-bottom: 40px;
  }
  .club-footer-headline span {
    display: block;
  }
  .club-footer-list-block {
    align-items: flex-start !important;
    flex-direction: column;
  }
  .club-footer-list-block:first-child {
    align-items: flex-end !important;
    margin-right: 20px;
  }
  footer .footer {
    width: 100%;
    max-width: none;
  }
  footer .footer a {
    font-size: 15px;
    line-height: 30px;
  }
  footer .footer .quick-links .col {
    float: none;
    width: 100% !important;
    margin-left: 0;
    border-bottom: 1px solid #999999;
  }
  footer .footer .quick-links .col h2,
footer .footer .quick-links .col h5 {
    line-height: 55px;
    cursor: pointer;
  }
  footer .footer .quick-links .col h2,
footer .footer .quick-links .col h5,
footer .footer .quick-links .col ul {
    max-width: 94%;
    margin: 0 auto;
  }
  footer .footer .quick-links .col h2 a,
footer .footer .quick-links .col h5 a {
    font-size: 16px;
  }
  footer .footer .quick-links .col ul {
    padding-bottom: 20px;
  }
  footer .footer .footer-supplemental,
footer .footer .footer-badges {
    max-width: 94%;
    margin: 0 auto;
  }
  .general-footer-si {
    float: none;
  }
  .general-footer-tpi {
    float: none;
  }
  .footer-supplemental {
    text-align: center;
  }
  .footer-supplemental .copyright {
    width: 100%;
    margin: 0 auto;
  }
  .footer-copyright {
    margin-top: 20px;
  }
  .general-footer-tpi {
    padding-bottom: 20px;
  }
  .footer-badges-icons {
    margin: 0 auto;
    max-width: 338px;
  }
  .footer.container.mm-fixed-bottom .blue-footer-links {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
  .footer.container.mm-fixed-bottom .blue-footer-links > .right-socials-container {
    align-self: center;
    padding-right: 0;
  }
  .footer.container.mm-fixed-bottom .blue-footer-links > .left-links-container {
    padding-top: 5px;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  .footer .quick-links {
    margin-bottom: 0;
  }
  .footer-supplemental .copyright {
    line-height: 16px;
  }
  .footer-supplemental .copyright a {
    line-height: 16px;
  }
  .footer.container.mm-fixed-bottom .blue-footer-links {
    margin-top: 65px;
  }
}

@media screen and (max-width: 480px) {
  .footer-supplemental .connect {
    float: none;
    text-align: center;
    margin-bottom: 18px;
  }
  .footer-supplemental .copyright {
    float: none;
    width: 100%;
    text-align: center;
  }
  .club-footer-benefits .club-footer-list-block:first-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .footer-badges-icons {
    max-width: 298px;
  }
  .footer-badge {
    margin-right: 10px;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.messages li,
.carousel-nav li.active a,
.toolbar .select-wrap .customStyleSelectBox:before,
.banana-track .banana-handle,
.inline-button .button,
.green-form .button,
.view-all .back-to-top,
.cms-template .main .page-title.lead,
.progress-bar li.active {
  /*background-color: rgb(75, 118, 55);*/
  /* main green (Mallard Head Green), used to be #748f6f */
  /*background-color: rgb(79, 91, 49);*/
  /* main green (Deep Woods Green), used to be #748f6f */
  background-color: #252a2f;
}

.main-nav .drop-down ul.level0 > li.parent {
  color: #333333;
}

.main-nav .drop-down ul.level0 > li.parent.wpsstore {
  color: #E32E10;
  /* ADA warrior poet society red enough */
  line-height: 30px;
}

.main-nav .drop-down ul.level1 > li a.all-deals-link,
.main-nav .drop-down ul.level1 > li a.see-more-link {
  color: #E32E10 !important;
}

.main-nav .drop-down ul.level0 > li.parent.wpsstore a {
  line-height: 26px;
  padding-bottom: 3px;
  /* looks best in chrome :/ */
  padding-top: 2px;
  /* looks best in chrome :/ */
}

.main-nav .drop-down ul.level0 > li.parent.wpsstore a.wpsstore-icon:hover:after {
  background-image: url("/images/wps_shield_white.svg");
}

.wpsstore-icon:after {
  content: '';
  background: transparent url("/images/wps_shield.svg") no-repeat center center;
  background-size: 19px 23px;
  height: 23px;
  margin-left: 5px;
  position: absolute;
  top: 5px;
  width: 19px;
}

.main-nav ul.level0 li.parent:hover {
  background: #333333;
  border-radius: 10px;
}

.main-nav ul.level0 li.parent.wpsstore:hover {
  background-color: #E32E10;
  /* ADA warrior poet society red enough */
}

#mega-tabs-container {
  font-family: "figtree", helvetica, arial, sans-serif;
  height: 40px;
  background-color: #434E5C;
}

#mega-tabs-container > a {
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  display: inline-block;
  padding-top: 10px;
}

#mega-tabs-container > a.active {
  background-color: #061C33;
}

.main-nav li.browse ul.level0 li.parent:hover:after {
  border-top: 14px solid #fff;
  border-right: 14px solid #fff;
  border-bottom: 14px solid #fff;
  border-left: 14px solid transparent;
  content: '';
  display: block;
  float: right;
  margin-top: -28px;
  right: 0;
}

.main-nav li.browse ul.level0 li.parent.wpsstore:hover:after {
  border: none;
  border-width: 0;
  margin: 0;
}

#mm-nav.main-nav .level-top-link.wpsstore a {
  color: #E32E10;
}

#mm-nav.main-nav .level-top-link.wpsstore a.wpsstore-icon:after {
  margin-left: 3px;
  top: 19px;
}

.input-text,
textarea,
.customStyleSelectBox,
.green-form,
.rounded-box,
.quickorder .intro img,
.shopping-cart .intro img {
  border: 1px solid #4f5b31;
  /* Deep Woods Green */
}

.col-left nav li a:hover,
.col-left nav li.active a,
.col-left aside li a:hover,
.col-left aside li.active a {
  color: #000000;
}

.col-left nav li a:hover,
.col-left aside li a:hover {
  text-decoration: underline;
}

.toolbar .select-wrap .customStyleSelectBox,
.inline-button .input-text,
.green-form .input-box .input-text,
.msg-block .messages,
.embroidery .main .option-set .form-list .font-style img {
  border-color: #4f5b31;
  /* Deep Woods Green */
}

.main-nav .shop .fly-out .level1 > li > a,
.fly-out-featured ul li p,
.main-nav .shop .fly-out h2 {
  /*color: rgb(79, 91, 49);*/
  /* main green (Deep Woods Green) */
  color: #333333;
}

/* suggest ahead */
#searchProducts {
  border-color: #4f5b31;
}

.ui-menu {
  color: #4f5b31 !important;
}

.search-cats > ul > li > a,
.search-brands > ul > li > a {
  color: #4f5b31;
}

.search-results-more > a,
.search-results-more > a:hover {
  color: #4f5b31;
}

header .site-search .input-wrapper #k {
  height: 34px;
  padding-top: 4px;
}

/*#endregion*/
.drop-down.sign-in .my-account .input-box label:not(.error), .checkoutlogin-body .login-core .input-box {
  display: inline-block;
  line-height: 30px;
}

.my-account .input-box,
.my-account .form-list li .input-box, .email-preferences-page .input-box
, .email-preferences-page .form-list li .input-box
, .checkoutlogin-body .login-core .input-box, .address-page .input-box, .manage-membership .input-box, .manage-membership .form-list li .input-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

#search-box > div.search-area > div {
  position: relative;
}

.my-account .input-box label:not(.error), .email-preferences-page .input-box label:not(.error)
, .checkoutlogin-body .input-box label:not(.error), .address-page .input-box label:not(.error), .manage-membership .input-box label:not(.error),
#search-box > div.search-area > div > label {
  position: absolute;
  top: -2px;
  left: 8px;
  font-family: 'figtreeBoldCondensed', helvetica, arial, sans-serif;
  font-size: 11px;
  color: #54565A;
  text-transform: uppercase;
  z-index: 2;
  line-height: 30px;
}

.my-account .input-box input,
.my-account .input-box .customStyleSelectBox,
.email-preferences-page .input-box input,
.email-preferences-page .input-box .customStyleSelectBox,
.site-search .input-wrapper #k,
.site-search.mobile-search .input-text,
.checkoutlogin-body .input-box input,
.address-page .input-box input,
.address-page .input-box .customStyleSelectBox,
.manage-membership .input-box input,
.manage-membership .input-box .customStyleSelectBox {
  height: 48px;
  background-color: #F0F0F0;
  color: #142535;
  padding: 15px 0 0 8px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #898A8D;
  font-family: 'figtree', helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
}

.my-account .input-box input:focus,
.my-account .input-box .customStyleSelectBox:focus,
.email-preferences-page .input-box input:focus,
.email-preferences-page .input-box .customStyleSelectBox:focus,
.site-search .input-wrapper #k:focus,
.site-search.mobile-search .input-text:focus,
.checkoutlogin-body .input-box input:focus,
.address-page .input-box input:focus,
.address-page .input-box
.customStyleSelectBox:focus,
.manage-membership .input-box input:focus,
.manage-membership .input-box .customStyleSelectBox:focus {
  border-bottom: 1px solid #061C33;
}

.softball .my-account .input-box input,
.softball .my-account .input-box .customStyleSelectBox,
.softball .email-preferences-page .input-box input,
.softball .email-preferences-page .input-box .customStyleSelectBox,
.softball .site-search .input-wrapper #k,
.softball .site-search.mobile-search .input-text,
.softball .checkoutlogin-body .input-box input,
.softball .address-page .input-box input,
.softball .address-page .input-box .customStyleSelectBox,
.softball .manage-membership .input-box input,
.softball .manage-membership .input-box .customStyleSelectBox {
  background-color: #F0F0F0;
  color: #262626;
}

.softball .my-account .input-box input:focus,
.softball .my-account .input-box .customStyleSelectBox:focus,
.softball .email-preferences-page .input-box input:focus,
.softball .email-preferences-page .input-box .customStyleSelectBox:focus,
.softball .site-search .input-wrapper #k:focus,
.softball .site-search.mobile-search .input-text:focus,
.softball .checkoutlogin-body .input-box input:focus,
.softball .address-page .input-box input:focus,
.softball .address-page .input-box .customStyleSelectBox:focus,
.softball .manage-membership .input-box input:focus,
.softball .manage-membership .input-box .customStyleSelectBox:focus {
  border-bottom: 1px solid #2B4359;
}

.site-search .input-wrapper label.search-label {
  font-family: 'figtree', helvetica, arial, sans-serif;
  color: #54565A;
  font-size: 14px;
  line-height: 34px;
  white-space: nowrap;
}

.search-input {
  background-color: transparent;
}

.search-wrapper {
  background-color: white;
  z-index: 0;
}

.site-header {
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(50, 50, 50, 0.25);
  box-shadow: 0 1px 3px rgba(50, 50, 50, 0.25);
  padding: 0;
  height: 160px;
  max-height: 160px;
  position: fixed;
  width: 100%;
  z-index: 9998;
}

body.ios-kb-fix header.site-header {
  position: relative !important;
}

body.ios-kb-fix #main.main {
  padding-top: 0 !important;
}

.no-promo .site-header {
  height: 100px;
  max-height: 100px;
}

.no-promo #sg-page-wrapper > #main {
  padding-top: 100px;
}

.site-header:before,
.site-header:after {
  content: " ";
  display: table;
}

.site-header:after {
  clear: both;
}

.site-header .nav-container,
.site-promo-container {
  max-width: 2000px;
  margin: 0 auto;
}

.no-promo .site-header .nav-container,
.site-header .nav-container {
  padding: 5px 20px;
}

.site-header .logo {
  display: inline-block;
  padding-top: 12px;
  height: 60px;
  width: 150px;
}

.site-header .site-search {
  margin: 14px 30px 0 30px;
}

.site-header .site-search.mobile-search.open,
.site-header .site-search.mobile-search.closed {
  display: none;
}

.site-header .customer-nav {
  font-family: 'figtree', helvetica, arial, sans-serif;
  line-height: 24px;
  height: 24px;
  margin-top: 20px;
  margin-right: 20px;
  position: relative;
}

.site-header .customer-nav .icon-wrapper a {
  display: inline-block;
}

header .site-search .input-wrapper {
  width: 100%;
}

header .site-search .input-text.search-input {
  height: 34px !important;
  border: 1px solid #d9d9d9;
  border-radius: 1px !important;
}

header .site-search .icon-wrapper {
  position: absolute;
  top: -1px;
  right: -1px;
}

header .site-search .button {
  background-image: url("/images/search@2x.png");
  background-color: transparent;
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 8px;
}

.site-header .mini-account button {
  background-color: #ffffff;
  padding: 0;
  outline: none;
}

.site-header .mini-account button .user-name {
  text-transform: none;
  position: relative;
  top: -4px;
}

.customer-nav .trigger {
  position: relative;
}

.customer-nav .icon-wrapper {
  display: inline-block;
  cursor: pointer;
  margin-left: 15px;
  vertical-align: top;
}

.customer-nav .icon-wrapper .sign-in-icon,
.customer-nav .icon-wrapper .wish-list-icon,
.customer-nav .icon-wrapper .cart-icon,
.customer-nav .icon-wrapper .search-icon {
  margin-top: 3px;
}

.search-icon {
  display: inline-block;
  background: url("/images/search@2x.png") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.sign-in-icon {
  display: inline-block;
  background: url("/images/user@2x.png") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

/*.sign-in-icon.logged-in {
    background-image: url('/images/user_logged_in@2x.png');
}*/
.wish-list-icon {
  position: relative;
  text-align: center;
  display: inline-block;
  background: url("/images/wishlist@2x.png") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.cart-icon {
  position: relative;
  text-align: center;
  display: inline-block;
  background: url("/images/cart@2x.png") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

.cart-count,
.wishlist-count {
  position: absolute;
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 11px;
  border-radius: 40%;
  background-color: #A3FD22;
  color: #061C33;
  padding: 0 2px;
  min-width: 18px;
  line-height: 16px;
}

.softball .cart-count,
.softball .wishlist-count {
  background-color: #DFFF4F;
  border-color: #FF4545;
  border-width: 1px;
  border-style: solid;
}

.cart-count {
  top: -9px;
  right: -4px;
}

.wishlist-count {
  top: -9px;
  right: -8px;
}

.icon-text {
  font-size: 13px;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  margin-left: 2px;
  cursor: pointer;
  vertical-align: top;
}

/*.icon-text:hover {
    text-decoration: underline;
}*/
.user-name {
  color: #D54400;
  font-family: 'figtree', helvetica, arial, sans-serif;
  font-size: 10px;
}

.mini-cart .drop-down {
  width: 316px;
  left: auto;
  right: 0;
}

.drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #000000;
  padding: 0 18px 18px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
  box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
  display: none;
}

.fly-out {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  display: none;
  border: 1px solid #000000;
  min-height: 375px;
}

.main-nav {
  position: relative;
  z-index: 9997;
  float: left;
}

.main-nav ul {
  padding: unset;
  list-style-type: unset;
}

.main-nav ul li {
  list-style-type: none;
  margin-bottom: unset;
}

.main-nav > ul:before,
.main-nav > ul:after {
  content: " ";
  display: table;
}

.main-nav > ul:after {
  clear: both;
}

.main-nav li.level-top,
.main-nav li.level-top-link {
  display: block;
  line-height: 45px;
  float: left;
  padding-bottom: 14px;
  position: relative;
}

.main-nav li.level-top .level-top-wrapper,
.main-nav li.level-top-link .level-top-wrapper {
  position: relative;
  color: #333333;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.main-nav li.level-top.over .level-top-wrapper,
.main-nav li.level-top .level-top-wrapper.over {
  background-color: #fff;
  color: #333333;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.main-nav button.level-top {
  outline: none;
  background-color: #fff;
  width: 100%;
  padding: 7px 0 6px 0;
}

.main-nav button.level-top,
.main-nav a.level-top {
  color: #333333;
  display: block;
  border: none;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  line-height: 32px;
}

.main-nav .shop-dept {
  position: relative;
}

.main-nav button.level-top span,
.main-nav a.level-top span {
  position: relative;
  top: 6px;
  margin-bottom: 0;
  white-space: nowrap;
  padding-left: 5px;
  padding-right: 5px;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
}

.main-nav .level-top button.level-top:after {
  border-top: 5px solid #333333;
  /*used to be fbfbfb*/
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: 3px;
  content: '';
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.main-nav .level-top.over button.level-top:after,
.main-nav .level-top.over a.level-top:after {
  border-top: 5px solid #333333;
}

.main-nav li.level-top.browse.shop {
  z-index: 999999;
}

.main-nav ul.level0 li a {
  display: block;
  font-size: 13px;
  position: relative;
}

.main-nav .shop {
  width: 90px;
}

.main-nav .deals {
  width: 66px !important;
}

.main-nav .club {
  width: 104px !important;
}

.main-nav .community {
  width: 62px;
}

.main-nav .brands-link {
  width: 80px;
}

.main-nav .brands-link.gift-override {
  width: 100px;
}

.main-nav .brands-link .brands-link-override {
  color: #E53935;
  text-align: left;
}

.main-nav .brands-link .brands-link-override span {
  padding-left: 21px;
  /* protect the icon */
}

.main-nav .brands-link .brands-link-override:before {
  content: ' ';
  background-image: url("/images/icon_gift.svg");
  background-repeat: no-repeat;
  display: inline-block;
  height: 13px;
  left: 3px;
  position: absolute;
  top: 22px;
  width: 14px;
}

.main-nav .drop-down {
  border: none;
  border-left: 1px solid #8a8a8a;
  border-bottom: 1px solid #8a8a8a;
  padding: 0;
  width: 125%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main-nav .shop .drop-down {
  width: 260px;
}

.main-nav .deals .drop-down {
  width: 160px;
}

.main-nav .community .drop-down {
  width: 193px;
}

.main-nav .club .drop-down {
  width: 180px;
}

.main-nav .deals .drop-down,
.main-nav .community .drop-down,
.main-nav .club .drop-down {
  border-right: 1px solid #8a8a8a;
}

.main-nav .drop-down ul.level0 {
  margin: 5px;
}

.main-nav .drop-down li,
.main-nav .drop-down li a {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.main-nav .drop-down ul.level0 > li > a {
  padding: 0 10px;
  line-height: 28px;
  color: #4f5b31;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  font-size: 14px;
  white-space: nowrap;
  color: inherit;
}

.main-nav .drop-down ul.level0 > li > a.clearance {
  color: #AC162C;
}

.main-nav .drop-down ul.level0 li:hover,
.main-nav .drop-down ul.level0 > li > a:hover {
  color: #fff;
}

.main-nav .shop .fly-out {
  width: 300%;
  padding: 10px;
  margin-left: -1px;
  border: none;
  border-right: 1px solid #8a8a8a;
  border-bottom: 1px solid #8a8a8a;
  background-color: #fff;
  max-height: calc(100vh - 120px);
  /* trying a new viewport unit, 100% of viewport height - 120px for the fixed header (.site-header), works down to the height of the left dropdown at which point it fails to shrink any further */
  overflow-y: auto;
}

.main-nav .shop .fly-out:before,
.main-nav .shop .fly-out:after {
  content: " ";
  display: table;
}

.main-nav .shop .fly-out:after {
  clear: both;
}

.main-nav .shop .fly-out h2 {
  font-size: 18px;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  text-transform: uppercase;
  width: 97.5%;
  text-align: left;
  border-bottom: 1px solid #cfd4d8;
  line-height: 0.1em;
  margin: 10px 0 20px;
}

.main-nav .shop .fly-out h2 > span {
  background: #fff;
  padding: 0 15px 0 12.5px;
}

.main-nav .shop .fly-out h3 {
  line-height: 20px;
  margin-bottom: 0;
  text-transform: none;
}

.main-nav .shop .fly-out .level1 {
  float: left;
  width: 23%;
  margin-left: 1.9753086419753085%;
}

.main-nav .shop .fly-out .level1 > li {
  margin-top: 10px;
}

.main-nav .shop .fly-out .level1 > li:first-child {
  margin-top: 0;
}

.main-nav .shop .fly-out .level1 > li > a {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.main-nav .shop .fly-out .level1 > li > a:hover {
  text-decoration: underline;
}

.main-nav .shop .fly-out .level1 > li > span {
  display: block;
  font-size: 13px;
  font-style: italic;
  line-height: 20px;
  color: #2b2b2b;
}

.main-nav .shop .fly-out .level2 li a {
  font-family: 'figtree', helvetica, arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #2b2b2b;
}

.main-nav .shop .fly-out .level2 li a:hover {
  text-decoration: underline;
}

.main-nav .shop .fly-out .level2 li a.more {
  font-style: italic;
}

.main-nav .level-top-link {
  overflow: auto;
  /* ensures height is calc'd correctly when contents are floated */
}

.main-nav .level-top-link a {
  color: #333333;
  display: block;
  line-height: 45px;
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  font-family: figtreeMedium, helvetica, arial, sans-serif;
  padding-right: 6px;
}

.main-nav .level-top-link a:hover {
  text-decoration: underline;
}

.main-nav .shop .fly-out .see-more {
  float: left;
  width: 95%;
  text-align: center;
  margin-top: 10px;
}

.main-nav .shop .fly-out .see-more .level1 {
  width: 100%;
}

.products-grid {
  margin-bottom: 28px;
  list-style: none;
}

.products-grid:before,
.products-grid:after {
  content: " ";
  display: table;
}

.products-grid:after {
  clear: both;
}

.products-grid > li {
  display: inline-block;
  margin-left: 2%;
  width: 23.037974683544306%;
  position: relative;
  vertical-align: top;
}

.products-grid > li:first-child {
  margin-left: 0;
}

.products-grid .product-image {
  display: block;
  position: relative;
}

.products-grid .product-image img.lazy {
  display: block;
  border: 1px solid #d2d2d2;
}

.products-grid .product-name {
  font-size: 13px;
  line-height: 18px;
  margin: 4px 0 5px;
}

ol.products-grid.products-grouping li .product-name {
  overflow: hidden;
  height: 3em;
  text-align: left;
}

#searchSuggestions {
  float: left;
}

#searchSuggestions ul li.ui-menu-item .ui-state-active {
  border: none;
  background: none;
  color: inherit;
  text-decoration: underline;
}

#searchProducts {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.4);
  position: absolute;
  background-color: white !important;
  display: none;
  border-style: solid;
  min-height: 71px;
  z-index: 9999;
}

#searchProducts .category-products,
#searchProducts .category-products .products-grouping {
  background-color: white !important;
}

#searchProducts .category-products .products-grid {
  list-style: outside none none;
}

#searchProducts .category-products .products-grid .product-details .product-name {
  height: 40px;
  overflow: hidden;
}

.ui-menu {
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 0 6px rgba(0, 0, 0, 0.4);
  background-color: white !important;
}

.ui-autocomplete .highlight {
  font-weight: bold;
}

.search-results-label,
.search-results-more {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.search-term {
  font-style: italic;
}

#cartSummary.drop-down {
  padding: 0 18px 10px;
}

#cartSummary ol.products-grid li > a,
#wishSummary ol.products-grid li > a {
  display: block;
  width: 100%;
}

#cartSummary ol.products-grid li > a > .product-details > .product-name,
#wishSummary ol.products-grid li > a > .product-details > .product-name {
  color: #000;
}

#cartSummary ol.products-grid li > a > .product-details > .product-name:hover,
#wishSummary ol.products-grid li > a > .product-details > .product-name:hover {
  text-decoration: underline;
}

.cart-mmenu .drop-down p,
.wish-mmenu .drop-down p {
  font-size: 16px;
  margin-bottom: 5px;
}

.cart-mmenu .products-grid > li,
.wish-mmenu .products-grid > li {
  float: none;
  width: 100%;
  margin-left: 0;
  margin-top: 10px;
  border-bottom: 1px solid #D9D8D6;
}

.cart-mmenu .products-grid > li:last-of-type,
.wish-mmenu .products-grid > li:last-of-type {
  border-bottom: none;
}

.cart-mmenu .products-grid .product-image,
.wish-mmenu .products-grid .product-image {
  display: inline-block;
  width: 35%;
  vertical-align: middle;
}

.cart-mmenu .products-grid .product-image img,
.wish-mmenu .products-grid .product-image img {
  height: 100% !important;
  width: 100% !important;
}

.cart-mmenu .product-details,
.wish-mmenu .product-details {
  display: inline-block;
  margin-left: 5px;
  width: 58%;
  vertical-align: middle;
}

.cart-mmenu .product-details span.product-name,
.cart-mmenu .product-details h3.product-name,
.wish-mmenu .product-details span.product-name,
.wish-mmenu .product-details h3.product-name {
  margin: 0;
  display: block;
}

.wish-mmenu .product-details span.product-name a,
.wish-mmenu .product-details h3.product-name a,
.wish-mmenu .product-details .quantity,
.wish-mmenu .product-details .price-box > span span,
.wish-mmenu .product-details .price-box .club-price.apply-checkout span,
.cart-mmenu .product-details span.product-name a,
.cart-mmenu .product-details h3.product-name a,
.cart-mmenu .product-details .quantity,
.cart-mmenu .product-details .price-box > span span,
.cart-mmenu .product-details .price-box .club-price.apply-checkout span {
  font-size: 14px;
}

.cart-mmenu .total-club-savings span,
.wish-mmenu .total-club-savings span {
  font-size: 20px;
}

.cart-mmenu .button,
.wish-mmenu .button {
  display: block;
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

.cart-mmenu .totals,
.wish-mmenu .totals {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.cart-mmenu .totals .price-box,
.wish-mmenu .totals .price-box {
  max-width: 100%;
}

.wish-mmenu .totals .price-box span
.cart-mmenu .totals .price-box span {
  font-size: 16px;
}

.wish-mmenu .totals .price-box .club-price span
.cart-mmenu .totals .price-box .club-price span {
  font-size: 18px;
}

@media screen and (min-width: 1436px) {
  #searchProducts {
    width: 653px !important;
  }
  #searchProducts .products-grid > li {
    width: 23.037974683544306% !important;
  }
}

@media screen and (min-width: 1128px) {
  #searchProducts {
    border-width: 3px;
    left: 157px;
    top: 33px;
    width: 322px;
    padding: 10px;
  }
  #searchProducts .products-grid > li {
    width: 47.037974683544306%;
  }
  .ui-menu {
    left: -3px !important;
    top: 33px !important;
    max-width: 160px !important;
    font-size: 14px !important;
    min-height: 71px !important;
  }
  .search-results-label,
.search-results-more {
    font-size: 16px;
  }
  .site-header .nav-container {
    padding: 5px 50px;
  }
}

@media screen and (max-width: 1060px) {
  .site-header .site-search {
    margin: 14px 0 0 0px;
  }
  .main-nav .shop {
    width: 80px;
  }
  .main-nav .deals {
    width: 56px !important;
  }
  .main-nav .club {
    width: 94px !important;
  }
  .main-nav .community {
    width: 52px;
  }
  .main-nav .brands-link {
    width: 70px;
  }
}

@media screen and (min-width: 961px) and (max-width: 1127px) {
  #searchProducts {
    border-width: 3px;
    left: 147px;
    top: 33px;
    width: 322px;
    padding: 5px;
  }
  #searchProducts .products-grid > li {
    width: 47.037974683544306%;
  }
  .ui-menu {
    max-width: 150px !important;
  }
  .search-results-label,
.search-results-more {
    font-size: 15px;
  }
}

@media screen and (min-width: 961px) {
  #searchProducts {
    width: 270px;
  }
}

@media screen and (max-width: 960px) {
  .site-header {
    height: 125px;
    max-height: 160px;
  }
  .fly-out {
    min-height: 0px;
  }
  .site-header .nav-container {
    padding: 0 0 0 20px;
  }
  .site-header .logo {
    margin-right: 20px;
  }
  .site-header .customer-nav .icon-wrapper {
    position: relative;
    float: left;
    margin-right: 0;
    vertical-align: top;
  }
  .site-header .customer-nav .icon-wrapper .mobile-trigger {
    border-left: 1px solid #ccc;
    padding-left: 15px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .mobile-trigger .hamburger {
    width: 20px;
    height: 3px;
    display: inline-block;
    text-align: left;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: relative;
    vertical-align: middle;
    margin-right: 0px;
    margin-left: 5px;
    background-color: #000;
  }
  .mobile-trigger .hamburger:before,
.mobile-trigger .hamburger:after {
    content: '';
    background-color: #000;
    width: 20px;
    height: 3px;
    display: inline-block;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .mobile-trigger .hamburger:before {
    top: -7px;
  }
  .mobile-trigger .hamburger:after {
    bottom: -7px;
  }
  /* header icons */
  .customer-nav .icon-wrapper {
    margin-left: 25px;
  }
  .customer-nav .respondburger {
    margin-top: -3px;
  }
  .site-header .mini-account .drop-down,
.site-header .mini-cart .drop-down {
    text-align: left;
    line-height: 18px;
  }
  .drop-down {
    border: none;
    box-shadow: none;
  }
  .main-nav {
    display: none;
    background-color: inherit;
  }
  .main-nav .brands-link .brands-link-override {
    margin-left: 8px;
  }
  .main-nav .brands-link .brands-link-override span {
    padding-left: 18px;
    /* protect the icon */
  }
  .main-nav .brands-link .brands-link-override:before {
    top: 23px;
  }
  .main-nav .shop .fly-out {
    min-height: 0;
    height: 0;
  }
  .main-nav ul {
    overflow: hidden;
  }
  .main-nav ul li.level-top {
    margin-left: 0;
  }
  .main-nav li,
.main-nav li.browse,
.main-nav li.deals,
.main-nav li.community,
.main-nav li.club {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .main-nav li button.level-top,
.main-nav li a {
    display: block;
    font-size: 16px !important;
    line-height: 50px !important;
    text-align: left !important;
    color: #333333;
    font-family: 'figtreeMedium', helvetica, arial, sans-serif;
  }
  .main-nav li.parent button.level-top,
.main-nav li.parent a.level-top,
.main-nav li.level-top-link {
    position: relative;
    color: #333333;
  }
  .main-nav .level-top.browse button.level-top:after,
.main-nav .level-top.browse a.level-top:after {
    right: 0;
  }
  .main-nav .level-top button.level-top:after,
.main-nav .level-top a.level-top:after,
.main-nav .drop-down li.parent a span:after {
    margin-right: 10px;
  }
  .main-nav li.level-top.browse.shop,
.main-nav li.level-top {
    z-index: 1;
  }
  .main-nav li.level-top .drop-down ul.level0 li.parent:after {
    content: none;
  }
  .main-nav li.level-top,
.main-nav li.level-top-link {
    padding-bottom: 0px;
  }
  .main-nav li.level-top button.level-top,
.main-nav li.level-top a.level-top {
    padding: 5px;
  }
  .main-nav button.level-top span,
.main-nav a.level-top span {
    top: 0;
  }
  .main-nav .drop-down,
.main-nav .drop-down .fly-out {
    display: block !important;
  }
  .main-nav .drop-down.no-display,
.main-nav .drop-down .fly-out.no-display {
    display: none !important;
  }
  .main-nav .drop-down li a,
.main-nav .fly-out li a {
    margin-left: 10px;
  }
  .main-nav li.level-top .drop-down ul.level0 li.parent {
    background-color: #252A2F;
  }
  .main-nav li.level-top .drop-down ul.level0 li.parent a {
    color: #fff;
  }
  .main-nav li.level-top .drop-down ul.level0 li.parent .fly-out ul.level1 li a {
    color: #252A2F;
  }
  .main-nav ul.level1 li a {
    line-height: 30px !important;
  }
  .main-nav .drop-down,
.main-nav .fly-out {
    position: static;
    display: block;
    height: 0;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .main-nav .drop-down.content,
.main-nav .fly-out.content {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.05s ease;
    -moz-transition: height 0.05s ease;
    -o-transition: height 0.05s ease;
    transition: height 0.05s ease;
  }
  .main-nav .drop-down.content.open,
.main-nav .fly-out.content.open {
    height: auto;
    max-height: none;
  }
  .main-nav .drop-down ul,
.main-nav .fly-out ul {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .main-nav .drop-down ul.level0 > li.parent > a {
    line-height: 50px !important;
  }
  .main-nav .drop-down ul.level1 li a,
.main-nav .fly-out ul.level1 li a {
    padding-left: 6% !important;
  }
  .main-nav .drop-down li,
.main-nav .fly-out li {
    margin-top: 0 !important;
  }
  .main-nav .drop-down li a,
.main-nav .fly-out li a {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    color: #ffffff;
  }
  .main-nav .drop-down li a span,
.main-nav .fly-out li a span {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-top: none !important;
  }
  .main-nav .drop-down li:first-child a,
.main-nav .fly-out li:first-child a {
    border-top: none;
  }
  .main-nav .drop-down li.parent a,
.main-nav .fly-out li.parent a {
    position: relative;
  }
  .main-nav .drop-down li.parent a span:after,
.main-nav .fly-out li.parent a span:after {
    right: 3%;
    top: 50%;
  }
  .main-nav .drop-down h4,
.main-nav .fly-out h4 {
    display: none;
  }
  .main-nav .level-top button.level-top:before,
.main-nav .level-top button.level-top:after,
.main-nav .level-top a.level-top:before,
.main-nav .drop-down li.parent a span:before,
.main-nav .drop-down li.parent a span:after,
.main-nav .level-top a.level-top:after {
    content: none;
  }
  .main-nav .level-top button.level-top:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 500;
    border: none !important;
    height: 12px;
    background: url("/images/gorilla/sprite.png") -152px -212px no-repeat;
    width: 12px;
    top: 35%;
    left: auto;
    right: 0;
    margin-right: 10px;
    transform: translateX(-50%);
  }
  .main-nav .level-top a.level-top:after,
.main-nav .drop-down li.parent a span:after {
    content: "";
    display: block;
    height: 11px;
    position: absolute;
    background: url("/images/gorilla/sprite.png") -153px -198px no-repeat;
    top: 42.5%;
    width: 11px;
    z-index: 500;
    border: none !important;
  }
  .main-nev .level-top button.level-top:after,
.main-nav .level-top a.level-top:after {
    content: "";
    height: 12px;
    background: url("/images/gorilla/sprite.png") -152px -212px no-repeat;
    width: 12px;
    top: 35%;
    left: auto;
    right: 0;
  }
  .main-nav .level-top button.level-top.open:after,
.main-nav .level-top a.level-top.open:after {
    background: url("/images/gorilla/sprite.png") -202px -212px no-repeat;
    top: 35%;
  }
  .main-nav .drop-down li.parent a.open span:after {
    background: url("/images/gorilla/sprite.png") -203px -202px no-repeat;
    top: 50%;
  }
  .category-products .products-grid {
    margin-bottom: 0 !important;
  }
  .category-products .products-grid li {
    margin-bottom: 2.5316455696202533%;
  }
  /*deal with word-wrapping of very long department names*/
  .main-nav .shop .drop-down ul.level0 > li > a {
    font-size: 12px;
  }
  .main-nav .drop-down,
.main-nav .fly-out {
    background-color: #ffffff !important;
    /* used to be fbfbfb */
  }
  .main-nav .drop-down ul.level1,
.main-nav .fly-out ul.level1 {
    background-color: #ffffff;
    /*used to be fbfbfb*/
  }
  .main-nav ul.level0 li.parent:hover {
    background-color: inherit;
  }
  .main-nav .shop .drop-down ul.level0 > li:hover > a {
    color: #ffffff;
  }
  .header-flex-parent {
    padding: 0;
  }
}

@media screen and (min-width: 731px) and (max-width: 960px) {
  #searchProducts {
    display: none !important;
  }
  .ui-menu {
    font-size: 14px !important;
  }
  .ui-autocomplete .highlight {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 730px) {
  .main {
    overflow: hidden;
  }
  .category-products .products-grid > li {
    margin-left: 4.10958904109589%;
    width: 47.94520547945205%;
  }
  .category-products .products-grid > li:first-child,
.category-products .products-grid > li:nth-child(3) {
    margin-left: 0;
    clear: left;
  }
  #searchSuggestionsMobile {
    position: fixed;
    background-color: white !important;
    z-index: 999999;
  }
  .ui-menu {
    line-height: 25px !important;
  }
  html.moby-show {
    overflow: hidden;
  }
  .moby-overlay {
    overflow-y: hidden;
  }
  .moby-container {
    top: 3%;
    left: 3%;
    margin-left: 0 !important;
    margin-top: 0;
    max-height: 94%;
    overflow-y: scroll;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
    width: 94% !important;
  }
  .moby-container.intl-shopping-modal .row .col,
.moby-container.intl-shopping-modal .row .col.col-2,
.moby-container.intl-shopping-modal .row .col.col-3 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 25px;
  }
  #club-accept-modal.bc2018 div.buttons-set {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 681px) {
  .header-flex-parent {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .header-flex-parent .logo {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 150px;
    width: 150px;
    height: 60px;
    order: unset;
    margin: unset;
  }
  .header-flex-parent .main-nav {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: 100%;
    padding: 0 10px;
  }
  .header-flex-parent .site-search {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .header-flex-parent .customer-nav {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    height: 100%;
    padding: 0 0 0 10px;
  }
}

@media screen and (max-width: 680px) {
  .site-header .customer-nav {
    position: absolute;
    right: 0px;
    bottom: 13px;
  }
  .site-header .customer-nav .icon-wrapper {
    display: inline-block !important;
    float: none;
  }
  .site-header .logo {
    margin-right: 0px;
    height: 55px;
  }
  .site-header .customer-nav .icon-wrapper.respond680 {
    display: inline-block !important;
  }
  .respondburger .wrapper {
    margin-left: -5px;
  }
  .site-search.mobile-search {
    margin: 0;
    -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
    box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
  }
  .site-search.mobile-search.closed {
    display: none;
  }
  .site-search.mobile-search.open {
    display: block;
  }
  .site-search.mobile-search .input-text {
    height: 50px;
    padding-top: 4px;
  }
  .site-search.mobile-search .icon-wrapper {
    display: none;
  }
  .site-search.mobile-search .ui-autocomplete {
    top: 50px !important;
  }
  .site-search .input-wrapper label.search-label {
    padding-top: 10px;
  }
  .products-grid .product-image img.lazy {
    display: block;
    border: none;
  }
}

@media screen and (max-width: 560px) {
  .club-accept-modal .buttons-set button,
.club-accept-modal .buttons-set a {
    width: 100%;
    display: block;
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

@media screen and (max-width: 480px) {
  .site-header .nav-container {
    padding: 0 0 0 3px;
  }
  .site-header .mini-account {
    margin-left: 0;
  }
  .site-header .customer-nav {
    margin-right: 10px;
  }
  .customer-nav .icon-wrapper {
    margin-left: 15px;
  }
  .site-header .customer-nav .icon-wrapper .mobile-trigger {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 10px;
  }
}

/*@media screen and (max-width: 360px) {
    .site-header .logo {
        padding-top: 10px;
        width: 60px;
    }

    .site-header .logo img.respond360 {
        display: inline-block !important;
    }
}*/

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
#site-wide-promos {
  white-space: nowrap;
  width: 100%;
}

.global-message {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  position: relative;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  white-space: nowrap;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 50px;
  color: #FFF;
  background: #006EB3;
  margin-right: -4px;
  /* white space in the markup???*/
}

.global-message:last-child {
  margin-right: 0;
  /* white space in the markup???*/
}

.global-message:nth-of-type(2n) {
  background: #035BA3;
}

.softball .global-message {
  background: #45ABA6;
}

.softball .global-message:nth-of-type(2n) {
  background: #2B8E89;
}

.global-message > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 9999;
}

.promo-num-3 .global-message {
  width: 33.333333%;
}

.promo-num-2 .global-message {
  width: 50%;
}

.promo-num-1 .global-message {
  width: 100%;
}

.global-message a {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  color: inherit;
}

.global-message a:hover {
  color: #fff;
  text-decoration: underline;
}

#site-promo-modal p {
  margin-bottom: 0;
}

@media screen and (max-width: 1060px) {
  .global-message.noMobileDisplay {
    font-size: 18px;
    width: 286px;
  }
  .global-message .tool-tip .tip {
    width: 350px;
    margin-left: -175px;
    /*necessary since tipsy tries to control this in-line*/
  }
}

@media screen and (max-width: 960px) {
  #main.main .global-message {
    float: none;
    margin-left: 0;
    width: 100%;
  }
  .global-message .promo-slide span {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
  }
  .global-message {
    height: 28px;
    font-size: 15px;
    line-height: 28px;
    font-size: 14px;
  }
  .global-message:after {
    height: auto;
    /* topography graphic */
  }
}

@media screen and (max-width: 560px) {
  .global-message .tool-tip .tip {
    width: 320px;
    left: 50%;
    margin-left: -160px !important;
    /*necessary since tipsy tries to control this in-line*/
  }
}

@media screen and (max-width: 480px) {
  #main.main .global-message {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  #main.main .global-message {
    font-size: 13px;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  background-color: #ffffff;
  /*used to be fbfbfb*/
  font-family: 'figtree', helvetica, arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.div-clear {
  clear: both;
}

#sg-page-wrapper > #main {
  min-height: 500px;
  padding-top: 160px;
}

.container {
  max-width: 1060px;
  width: 94%;
  margin: 0 auto;
  -webkit-transition: width 0.2s linear;
  -moz-transition: width 0.2s linear;
  -o-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.burnt-orange {
  color: #D54400;
  /* burnt orange */
}

.charcoal {
  color: #252a2f;
}

.nav-cover {
  position: fixed;
  top: 60px;
  /* match #sg-page-wrapper > #main: padding-top */
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .6;
  transform: translate3d(0, 0, 0);
  z-index: 9;
  display: none;
}

.bold-text {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
}

.notice, .msg-block .messages, .error-block .messages {
  clear: both;
  border: 1px solid #5a5e62;
  background-color: #ebe9e5;
  border-radius: 4px;
  padding: 1.670378619153675%;
  margin-bottom: 20px;
}

.auto-height {
  height: auto !important;
}

#scroll-top {
  display: none;
  background: url("/images/back-to-top.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.slider-dots-container {
  height: 28px;
  width: 20px;
  top: 40px;
  right: 0;
  position: absolute;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slider-dots-container .slick-dots {
  bottom: 0;
  height: 28px;
}

.slider-dots-container .slick-dots li {
  width: 100%;
  margin: 0;
  height: 7px;
  /* put the dots on top of each other to start with */
  position: absolute;
  left: 0;
  top: 0;
  /* each dot will manually override this */
}

.slider-dots-container .slick-dots li button {
  height: 7px;
  padding: 0;
  margin: 0;
}

.slider-dots-container .slick-dots li button:before {
  line-height: 7px;
  height: 7px;
  padding: 0;
  margin: 0;
  font-size: 4px;
}

.slider-dots-container .slick-dots li.slick-active button:before {
  color: #fff;
}

.slider-dots-container.promo-num-3 .slick-dots li:nth-child(1) {
  top: 2px;
}

.slider-dots-container.promo-num-3 .slick-dots li:nth-child(2) {
  top: 10px;
}

.slider-dots-container.promo-num-3 .slick-dots li:nth-child(3) {
  top: 18px;
}

.slider-dots-container.promo-num-2 .slick-dots li:nth-child(1) {
  top: 5px;
}

.slider-dots-container.promo-num-2 .slick-dots li:nth-child(2) {
  top: 14px;
}

::-moz-selection {
  background: #ccc;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #fff;
  text-shadow: none;
}

/* Custom selects */
.select-wrap {
  vertical-align: top;
}

.select-wrap select {
  width: 100%;
  height: 30px;
  -webkit-appearance: none;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.select-wrap.error .customStyleSelectBox,
.select-wrap.jqv-error .customStyleSelectBox {
  border-color: #ca0000 !important;
}

.select-wrap.error .customStyleSelectBox:before,
.select-wrap.jqv-error .customStyleSelectBox:before {
  background-color: #ca0000 !important;
}

.customStyleSelectBox {
  padding: 0 35px 0 10px;
  line-height: 28px;
  width: 100%;
  height: 30px;
  -webkit-transition: opacity 0.24s ease-out;
  -moz-transition: opacity 0.24s ease-out;
  -o-transition: opacity 0.24s ease-out;
  transition: opacity 0.24s ease-out;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-family: 'figtree', helvetica, arial, sans-serif;
  background-color: #ffffff;
  -webkit-transition: all 0.24s ease-out;
  -moz-transition: all 0.24s ease-out;
  -o-transition: all 0.24s ease-out;
  transition: all 0.24s ease-out;
}

.customStyleSelectBox:before {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 35px;
  height: 28px;
  margin-left: 18px;
}

.customStyleSelectBox .customStyleSelectBoxInner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.customStyleSelectBox.disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* Custom radios */
.style-radio {
  height: 15px;
  width: 17px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: url("/images/gorilla/sprite.png") -239px -238px no-repeat;
}

.style-radio input[type="radio"] {
  height: 15px;
  width: 17px;
  margin-top: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
}

.style-radio.active {
  background-position: -257px -238px;
}

/* Custom checkboxes */
.style-checkbox {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-image: url("/images/check_box_off.png");
  background-repeat: no-repeat;
  margin-top: -2px;
}

.style-checkbox input[type="checkbox"] {
  /* real control under styled background images */
  height: 20px;
  width: 20px;
  margin-top: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
}

.style-checkbox.disabled {
  background-image: url("/images/check_box_off_disable.png");
}

.style-checkbox.active {
  background-image: url("/images/check_box_on_bbs.png");
}

.softball .style-checkbox.active {
  background-image: url("/images/check_box_on_sbs.png");
}

.style-checkbox.active.disabled {
  background-image: url("/images/check_box_on_disable.png");
}

.style-radio.active + label,
.style-checkbox.active + label,
.style-radio.active + span {
  color: #4f5b31;
  /* Deep Woods Green */
  font-family: 'figtreeMedium', helvetica, arial, sans-serif;
}

/*
  ============================================
  CMS Content
  ============================================
*/
.cms strong {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
}

.cms em {
  font-family: 'figtreeMedium', helvetica, arial, sans-serif;
}

.cms h3 {
  font-family: 'figtreeMedium', helvetica, arial, sans-serif;
}

.cms ul {
  margin: 0 0 18px 18px;
  list-style: disc;
  font-size: 13px;
  line-height: 16px;
}

.cms address {
  margin-bottom: 20px;
}

.extendfull, .extendleft {
  padding-left: 400px !important;
  margin-left: -400px !important;
}

.extendfull, .extendright {
  padding-right: 400px !important;
  margin-right: -400px !important;
}

/*Toolbar*/
.toolbar {
  margin: 20px 0;
  padding: 12px 2.5316455696202533%;
}

.toolbar:before,
.toolbar:after {
  content: " ";
  display: table;
}

.toolbar:after {
  clear: both;
}

.toolbar > * {
  float: left;
  font-size: 12px;
}

.toolbar .label {
  display: block;
  float: left;
  line-height: 28px;
  margin-right: 8px;
}

.toolbar .select-wrap {
  height: 28px;
}

.toolbar .select-wrap .customStyleSelectBox {
  width: 139px;
  height: 28px;
  background-color: #fff;
}

.toolbar .select-wrap .customStyleSelectBox .customStyleSelectBoxInner {
  line-height: 26px;
}

.toolbar .select-wrap .customStyleSelectBox:before {
  height: 26px;
}

.toolbar .view {
  margin-right: 2.5316455696202533%;
}

.toolbar .view .grid,
.toolbar .view .list {
  cursor: pointer;
  display: block;
  float: left;
  height: 28px;
  margin-right: 10px;
  background: url("/images/gorilla/sprite.png") -38px -130px no-repeat;
  text-indent: -999em;
  width: 28px;
}

.toolbar .view .grid.current,
.toolbar .view .grid:hover {
  background-position: 0px -130px;
}

.toolbar .view .list {
  background-position: -38px -168px;
  margin-right: 0;
}

.toolbar .view .list.current,
.toolbar .view .list:hover {
  background-position: 0px -168px;
}

.toolbar .sort {
  width: 192px;
}

.toolbar .showing {
  float: left;
  width: 180px;
}

.toolbar .showing .customStyleSelectBox {
  width: 108px;
}

.toolbar .paging {
  float: left;
  margin-right: 0;
}

.toolbar .paging > * {
  float: left;
}

.toolbar .paging .control:hover {
  cursor: pointer;
}

.toolbar .paging .control {
  float: left;
  height: 23px;
  margin-right: 7px;
  margin-top: 4px;
  background: url("/images/gorilla/sprite.png") -490px -266px no-repeat;
  text-indent: -999em;
  width: 8px;
}

.toolbar .paging .control.next {
  background-position: -490px -285px;
  margin-left: 5px;
  margin-right: 0;
}

.toolbar .paging .control.disabled {
  display: none;
}

.toolbar .paging ol {
  float: left;
}

.toolbar .paging ol li {
  float: left;
  line-height: 28px;
  margin-right: 4px;
}

.toolbar .paging ol li a {
  color: #000000;
}

.toolbar .paging .current span {
  font-weight: bold;
  text-decoration: underline;
}

.toolbar.bottom {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.toolbar.bottom .right {
  margin-left: 0;
  width: 100%;
  float: none !important;
}

.toolbar.bottom .paging {
  display: inline-block;
  float: none;
}

.toolbar.bottom .paging .label {
  display: inline-block;
}

.sg-slick-next {
  position: absolute;
  right: -45px;
  top: 30%;
  font-size: 40px;
  cursor: pointer;
  color: #54565b;
  opacity: 0.5;
}

.sg-slick-prev {
  position: absolute;
  left: -40px;
  top: 30%;
  font-size: 40px;
  cursor: pointer;
  color: #54565b;
  opacity: 0.5;
}

.at-opacity-style {
  opacity: 0;
}

/* fix blurry images in chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast !important;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

/* Unset for Safari 11+ */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    img {
      image-rendering: unset !important;
    }
  }
}

@media screen and (max-width: 960px) {
  .extendfull, .extendleft {
    padding-left: 0px !important;
    margin-left: 0px !important;
  }
  .extendfull, .extendright {
    padding-right: 0px !important;
    margin-right: 0px !important;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.header-ad-background {
  background-image: url("data:image/gif;base64,R0lGODlhCgAKAIAAAOzq5fn38iH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGRjk0NkMxQjY2OTkxMUUzOTNCRkY4Q0MxREU1NzVDRCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGRjk0NkMxQzY2OTkxMUUzOTNCRkY4Q0MxREU1NzVDRCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkZGOTQ2QzE5NjY5OTExRTM5M0JGRjhDQzFERTU3NUNEIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkZGOTQ2QzFBNjY5OTExRTM5M0JGRjhDQzFERTU3NUNEIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAAAAAAAsAAAAAAoACgAAAg9EjBfLrZmcg0/OGu2iWRcAOw==");
}

.hidden {
  display: block !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.centered {
  margin: 0 auto;
  text-align: center;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.a-center {
  text-align: center !important;
}

.no-display {
  display: none;
}

.no-padding {
  padding: 0 !important;
}

.f-left,
.left {
  float: left !important;
}

.f-right,
.right {
  float: right !important;
}

.respond320 {
  display: none !important;
}

.respond360 {
  display: none;
}

.respond480 {
  display: none !important;
}

.respond560 {
  display: none !important;
}

.respond680 {
  display: none !important;
}

.respond730 {
  display: none !important;
}

.respond768 {
  display: none !important;
}

.respond900 {
  display: none !important;
}

.respond960 {
  display: none !important;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.ajax-loading {
  background: url("/images/gorilla/ajax-loader.gif") no-repeat;
  background-position: center;
  height: 75px;
  width: 75px;
  margin: 0 auto;
}

hdnContent {
  display: none;
}

@media screen and (max-width: 1060px) {
  .hideLT1060 {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .respond960 {
    display: block !important;
  }
  .hideLT960 {
    display: none !important;
  }
  .noMobileDisplay {
    display: none !important;
  }
}

@media screen and (max-width: 680px) {
  .respond680 {
    display: block !important;
  }
  .hideLT680 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .hideLT480 {
    display: none;
  }
  .respond480 {
    display: block !important;
  }
}

@media screen and (max-width: 360px) {
  .hideLT360 {
    display: none !important;
  }
  .respond360 {
    display: block !important;
  }
}

@media screen and (max-width: 320px) {
  .hideLT320 {
    display: none;
  }
}

/* roboto-regular - latin */
@font-face {
  font-family: 'roboto';
  src: url("/content/fonts/roboto-v15-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("/content/fonts/roboto-v15-latin-regular.eot?#iefix") format("eot"), url("/content/fonts/roboto-v15-latin-regular.woff2") format("woff2"), url("/content/fonts/roboto-v15-latin-regular.woff") format("woff"), url("/content/fonts/roboto-v15-latin-regular.ttf") format("truetype"), url("/content/fonts/roboto-v15-latin-regular.svg#Roboto") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'figtree';
  src: url("/Content/fonts/Figtree-Regular.ttf");
  /*src: url('/content/fonts/Figtree.woff') format('woff2');*/
}

@font-face {
  font-family: 'figtreeBold';
  src: url("/Content/fonts/Figtree-Bold.ttf");
  /*src: url('/content/fonts/Figtree.woff') format('woff2');*/
}

@font-face {
  font-family: 'figtreeExtraBold';
  src: url("/Content/fonts/Figtree-ExtraBold.ttf");
}

@font-face {
  font-family: 'figtreeLight';
  src: url("/Content/fonts/Figtree-Light.ttf");
  /*src: url('/content/fonts/Figtree.woff') format('woff2');*/
}

@font-face {
  font-family: 'figtreeMedium';
  src: url("/Content/fonts/Figtree-Medium.ttf");
}

@font-face {
  font-family: 'figtreeBlack';
  src: url("/Content/fonts/Figtree-Black.ttf");
  /*src: url('/content/fonts/Figtree.woff') format('woff2');*/
}

@font-face {
  font-family: 'buyerBlock';
  src: url("/Content/fonts/buyersclub-block.otf");
  src: url("/content/fonts/buyersclub-block.woff") format("woff");
}

/* roboto-500 - latin */
@font-face {
  font-family: 'robotoMedium';
  src: url("/content/fonts/roboto-v15-latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Medium"), local("Roboto-Medium"), url("/content/fonts/roboto-v15-latin-500.eot?#iefix") format("eot"), url("/content/fonts/roboto-v15-latin-500.woff2") format("woff2"), url("/content/fonts/roboto-v15-latin-500.woff") format("woff"), url("/content/fonts/roboto-v15-latin-500.ttf") format("truetype"), url("/content/fonts/roboto-v15-latin-500.svg#Roboto") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'robotoThin';
  src: local("Roboto Thin"), local("Roboto-Thin"), url("/content/fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'robotoThinItalic';
  src: local("Roboto Thin Italic"), local("Roboto-Thin-Italic"), url("/content/fonts/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'robotoLight';
  src: url("/content/fonts/roboto-v18-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Light"), local("Roboto-Light"), url("/content/fonts/roboto-v18-latin-300.eot?#iefix") format("eot"), url("/content/fonts/roboto-v18-latin-300.woff2") format("woff2"), url("/content/fonts/roboto-v18-latin-300.woff") format("woff"), url("/content/fonts/roboto-v18-latin-300.ttf") format("truetype"), url("/content/fonts/roboto-v18-latin-300.svg#Roboto") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* roboto-700 - latin */
@font-face {
  font-family: 'robotoBold';
  src: url("/content/fonts/roboto-v15-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/content/fonts/roboto-v15-latin-700.eot?#iefix") format("eot"), url("/content/fonts/roboto-v15-latin-700.woff2") format("woff2"), url("/content/fonts/roboto-v15-latin-700.woff") format("woff"), url("/content/fonts/roboto-v15-latin-700.ttf") format("truetype"), url("/content/fonts/roboto-v15-latin-700.svg#Roboto") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* roboto-condensed-regular - latin */
@font-face {
  font-family: 'robotoRegCondensed';
  src: url("/content/fonts/roboto-condensed-v13-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Condensed"), local("RobotoCondensed-Regular"), url("/content/fonts/roboto-condensed-v13-latin-regular.eot?#iefix") format("eot"), url("/content/fonts/roboto-condensed-v13-latin-regular.woff2") format("woff2"), url("/content/fonts/roboto-condensed-v13-latin-regular.woff") format("woff"), url("/content/fonts/roboto-condensed-v13-latin-regular.ttf") format("truetype"), url("/content/fonts/roboto-condensed-v13-latin-regular.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* roboto-condensed-700 - latin */
@font-face {
  font-family: 'robotoBoldCondensed';
  src: url("/content/fonts/roboto-condensed-v13-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Condensed Bold"), local("RobotoCondensed-Bold"), url("/content/fonts/roboto-condensed-v13-latin-700.eot?#iefix") format("eot"), url("/content/fonts/roboto-condensed-v13-latin-700.woff2") format("woff2"), url("/content/fonts/roboto-condensed-v13-latin-700.woff") format("woff"), url("/content/fonts/roboto-condensed-v13-latin-700.ttf") format("truetype"), url("/content/fonts/roboto-condensed-v13-latin-700.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* norican-regular - latin */
@font-face {
  font-family: 'noricanRegular';
  src: url("/content/fonts/norican-v4-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Norican Regular"), local("Norican-Regular"), url("/content/fonts/norican-v4-latin-regular.eot?#iefix") format("eot"), url("/content/fonts/norican-v4-latin-regular.woff2") format("woff2"), url("/content/fonts/norican-v4-latin-regular.woff") format("woff"), url("/content/fonts/norican-v4-latin-regular.ttf") format("truetype"), url("/content/fonts/norican-v4-latin-regular.svg#Norican") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-family: 'robotoBoldCondensed', helvetica, arial, sans-serif;
  font-size: 30px;
  line-height: 1em;
}

h2 {
  font-size: 16px;
  line-height: 18px;
}

h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  color: #2b2b2b;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 18px;
  font-family: 'figtree', helvetica, arial, sans-serif;
}

strong {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
}

.blue {
  color: #000000;
}

.page-title {
  margin-bottom: 20px;
}

.page-title h1,
.page-title h2 {
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.bc2018.darker-text-color,
.bc2018 .darker-text-color {
  color: #54565b;
}

.bc2018.normal-text-color,
.bc2018 .normal-text-color {
  color: #898b8e;
}

.bc2018.slightly-darker-text,
.bc2018 .slightly-darker-text {
  color: #4a4c50;
}

.bc2018.darker-text-color,
.bc2018 .darker-text-color {
  color: #54565b;
}

.bc2018 .verysmall-text {
  font-size: 13px;
}

.bc2018 .smaller-text {
  font-size: 14px;
  line-height: 20px;
}

.bc2018 .normal-text {
  font-family: 'roboto', helvetica, arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.bc2018 .bold-text {
  font-family: 'robotoBold', helvetica, arial, sans-serif;
}

.bc2018 .larger-text {
  font-size: 24px;
  line-height: 30px;
}

.bc2018 .larger-text30 {
  font-size: 30px;
  line-height: 36px;
}

.bc2018 .larger-text48 {
  font-size: 48px;
  line-height: 48px;
}

.bc2018 .main-image-container {
  margin-top: 5px;
  margin-bottom: 50px;
}

.bc2018 .sub-image-container {
  margin-bottom: 25px;
}

.bc2018 .subhead-line1 {
  font-family: 'robotoBold', helvetica, arial, sans-serif;
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
}

.bc2018 .subhead-line2 {
  font-family: 'robotoBoldCondensed', helvetica, arial, sans-serif;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
}

.bc2018 .subhead-line3 {
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
}

.bc2018 .subhead-line4 {
  font-family: 'robotoBold', helvetica, arial, sans-serif;
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
}

.bc2018 .list-head-large {
  font-family: 'robotoBold', helvetica, arial, sans-serif;
  font-size: 40px;
  line-height: 40px;
  text-align: left;
}

.bc2018 .button {
  background-color: transparent;
  border: #54565b 2px solid;
  /* .bc2018.darker-text-color */
  color: #D54400;
  /* burnt orange */
  font-family: 'robotoBold', helvetica, arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
  padding: 17px 96px 15px 96px;
}

.bc2018 .button:hover {
  background-color: #c1c7d0;
  cursor: pointer;
}

.bc2018 .list-block {
  max-width: 830px;
  text-align: left;
}

.bc2018 .list-item {
  margin-bottom: 50px;
}

.bc2018 .list-img {
  float: left;
  margin-right: 50px;
  padding-top: 15px;
}

.bc2018 .list-text-block {
  float: left;
  width: 630px;
}

.bc2018 .list-head {
  margin-bottom: 10px;
}

.bc2018 .button-box {
  margin-top: 40px;
  border: 1px solid #898b8e;
  margin-bottom: 40px;
  padding-bottom: 25px;
  padding-top: 25px;
}

@media screen and (max-width: 960px) {
  .page-title {
    margin-top: 20px;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
body .chat-widget {
  font-family: figtree;
  font-size: 1em;
  transition: background .5s ease,background-color .5s ease,color .5s ease,border-color .5s ease;
  -webkit-transition: background .5s ease,background-color .5s ease,color .5s ease,border-color .5s ease;
  -moz-transition: background .5s ease,background-color .5s ease,color .5s ease,border-color .5s ease;
  -o-transition: background .5s ease,background-color .5s ease,color .5s ease,border-color .5s ease;
}

body .chat-widget .ng-hide {
  opacity: 0;
}

body .chat-widget .cx-side-button-group {
  top: 60%;
  z-index: 999 !important;
  white-space: nowrap;
  position: fixed;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  background-color: transparent !important;
}

body .chat-widget .cx-side-button-group #agent-chat-btn {
  line-height: 23px;
  position: relative;
  font-weight: 700;
  padding: 4px 12px;
  display: inline-block;
  cursor: pointer;
  margin-left: 6px;
  transform: none;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

body .chat-widget .cx-side-button-group #agent-chat-btn > span {
  display: inline-block;
  line-height: 23px;
  vertical-align: middle;
}

body .chat-widget .cx-side-button-group #agent-chat-btn > span:last-of-type {
  margin-left: 7px;
}

body .chat-widget #chatForm.form-container {
  position: fixed;
  bottom: 0;
  width: 320px;
  z-index: 999997;
  transition: right 1s cubic-bezier(0, 1, 0.5, 1) 0s, transform 0.5s ease-in-out 0s;
  bottom: 0px;
  right: 55px;
  background-color: #fff;
  border: 1px solid #252a2f;
}

@media screen and (max-width: 680px) {
  body .chat-widget #chatForm.form-container {
    top: inherit !important;
    right: inherit !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 100% !important;
    width: 100% !important;
    margin-bottom: 0;
  }
}

body .chat-widget #chatForm.form-container #chatFormHeader {
  background-color: #252a2f;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

body .chat-widget #chatForm.form-container #chatFormHeader p {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.31481;
  margin: 0;
  letter-spacing: 1px;
}

body .chat-widget #chatForm.form-container #chatFormHeader button.md-button.md-icon-button md-icon {
  color: #fff;
}

body .chat-widget #chatForm.form-container form {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  padding: 20px 5px;
}

body .chat-widget #chatForm.form-container form md-input-container.md-sg-material-theme {
  margin-bottom: 12px;
}

body .chat-widget #chatForm.form-container #cannedMessage {
  padding: 20px;
  min-height: 330px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body .chat-widget #chatForm.form-container #cannedMessage p {
  background-color: #F5F5F5;
  padding: 10px;
  border-radius: 20px;
}

body .chat-widget #chatForm.form-container #cannedMessage p a {
  color: #2A61FF;
  text-decoration: underline;
}

body .chat-widget #chatForm.form-container .buttons-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

body .chat-widget #chatForm.form-container .buttons-container button {
  padding: 0 18px;
  flex-basis: 45%;
}

body .chat-widget .scale-in-ver-bottom {
  -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-ver-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

@keyframes scale-in-ver-bottom {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    opacity: 1;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
/*.moby-container.club-accept-modal.club-lightbox-background.show > #club-accept-modal.bc2025 {
    color: $darkGray;
    width: 325px;

    div {
        margin-bottom: 12px;

        .normal-text {
            @include font-family("figtree");
            @include rfs(18);
            line-height: 30px;
        }
    }

    @include max-small-tablet {
        padding-bottom: 16px;
    }

    .bc-logo {
        height: 170px;
    }

    .subhead-line2 {
        @include font-family("buyerBlock");
        @include rfs(50);

        @include max-small-fablet {
            padding-bottom: 16px;
        }
    }

    .terms-and-conditions {
        @include font-family("figtreeLight");
        @include rfs(13);
        margin-bottom: 0;
        font-style: italic;

        > span {
            white-space: pre;
        }
    }

    div.buttons-set {
        margin-top: 32px;  12px from above collapses 
        margin-bottom: 32px;
        margin-left: 0;
        margin-right: 0;

        @include max-small-tablet {
            margin-bottom: 32px;
        }
    }

    .buttons-set .button {
        background-color: $orange;
        border-radius: 10px;
        color: $white;
        line-height: normal;
        padding: 12px 7px;
        border: 3px solid $orange;
        letter-spacing: 1px;
    }
}*/
/* end club accept styling*/

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
#navigation-flyout > md-sidenav {
  top: 40px;
  font-size: 16px;
  cursor: pointer;
  background-color: #F0F0F0;
}

#navigation-flyout > md-sidenav > div {
  color: #061C33;
  width: 100%;
  margin-top: 10px;
  font-family: "figtree", helvetica, arial, sans-serif;
  position: relative;
}

#navigation-flyout > md-sidenav > div > p {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
}

#navigation-flyout > md-sidenav > div > p.shop-all {
  height: 40px;
  margin-bottom: 0px;
}

#navigation-flyout > md-sidenav > div > p.shop-all > a {
  align-self: center;
  font-size: 16px;
}

#navigation-flyout > md-sidenav > div > p.shop-all:hover {
  background-color: #E2EAED;
}

#navigation-flyout > md-sidenav > div > ul {
  height: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
}

#navigation-flyout > md-sidenav > div > ul:hover {
  background-color: #E2EAED;
}

#navigation-flyout > md-sidenav > div > ul:hover > li > span:nth-of-type(1),
#navigation-flyout > md-sidenav > div > ul:hover > li > a {
  cursor: pointer;
}

#navigation-flyout > md-sidenav > div > ul > li {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#navigation-flyout > md-sidenav > div > ul > li > a {
  cursor: pointer;
  line-height: 36px;
}

#navigation-flyout > md-sidenav > div > ul > li > span {
  align-self: center;
}

#navigation-flyout > md-sidenav > div > ul > li > span.nav-caret {
  font-size: 20px !important;
}

#navigation-flyout > md-sidenav > div > .back-button-container {
  background-color: #B5D8F2;
  padding-left: 30px;
  height: 40px;
  display: flex;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 16px;
}

#navigation-flyout > md-sidenav > div > .back-button-container > span {
  align-self: center;
}

#navigation-flyout > md-sidenav > div > .back-button-container > .back-button {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 10px;
}

#navigation-flyout > .md-sidenav-right {
  background-color: #006EB4;
}

#navigation-flyout > .md-sidenav-right > button {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  background-color: #061C33;
  border-bottom: 1px solid white;
  color: #fff;
  float: right;
  width: 100%;
}

#navigation-flyout > .md-sidenav-right > div {
  border-bottom: 1px solid white;
  margin-top: 0;
}

#navigation-flyout > .md-sidenav-right > div > div.header-container {
  background-color: #006EB4;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  margin-left: 10px;
  margin-right: 10px;
}

#navigation-flyout > .md-sidenav-right > div > div.header-container > span > a {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  color: #fff;
}

#navigation-flyout > .md-sidenav-right > div > div.header-container > span > a.nav-caret {
  font-size: 20px !important;
}

#navigation-flyout > .md-sidenav-right > div > ul:active {
  background-color: #E2EAED;
}

#navigation-flyout > .md-sidenav-right > div.products-container {
  margin-top: 32px;
  cursor: pointer;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout {
  background-color: #F0F0F0;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.shop-all,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.shop-all,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.shop-all {
  margin-bottom: 0;
  font-size: 15px;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.back-button-container,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.back-button-container,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.back-button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 15px;
  background-color: #B5D8F2;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.back-button-container > span.back-button,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.back-button-container > span.back-button,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.back-button-container > span.back-button {
  cursor: pointer;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 10px;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > ul,
#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > ul,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > ul,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p {
  font-family: "figtree", helvetica, arial, sans-serif;
  padding: 15px;
}

#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > ul > li,
#navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p > li,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > ul > li,
#navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p > li,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > ul > li,
#navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p > li {
  display: flex;
  justify-content: space-between;
}

#navigation-flyout > .md-sidenav-right > div.more-container > div.more-content {
  background-color: #F0F0F0;
  color: #B5D8F2;
}

#navigation-flyout > .md-sidenav-right > div.more-container > div.more-content > ul > li {
  padding: 15px;
  width: 100%;
  cursor: pointer;
}

#navigation-flyout > .md-sidenav-right > ul:active {
  background-color: #E2EAED;
}

.highlight-selection {
  background-color: #E2EAED;
}

.shop-all-desktop {
  font-size: 16px;
  line-height: 36px;
  align-items: center;
}

.softball #navigation-flyout > md-sidenav {
  background-color: #F0F0F0;
}

.softball #navigation-flyout > md-sidenav > div {
  color: #262626;
}

.softball #navigation-flyout > md-sidenav > div > p.shop-all:hover {
  background-color: #D6E6E5;
}

.softball #navigation-flyout > md-sidenav > div > ul:hover {
  background-color: #D6E6E5;
}

.softball #navigation-flyout > md-sidenav > div > ul:hover > li > span:nth-of-type(1),
.softball #navigation-flyout > md-sidenav > div > ul:hover > li > a {
  cursor: pointer;
}

.softball #navigation-flyout > md-sidenav > div > .back-button-container {
  background-color: #9FCCC9;
}

.softball #navigation-flyout > .md-sidenav-right {
  background-color: #45ABA6;
}

.softball #navigation-flyout > .md-sidenav-right > button {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  background-color: #A3FD22;
  border-bottom: 1px solid white;
  color: #061C33;
  float: right;
  width: 100%;
}

.softball #navigation-flyout > .md-sidenav-right > div {
  border-bottom: 1px solid white;
  margin-top: 0;
}

.softball #navigation-flyout > .md-sidenav-right > div > div.header-container {
  background-color: #45ABA6;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  margin-left: 10px;
  margin-right: 10px;
}

.softball #navigation-flyout > .md-sidenav-right > div > div.header-container > span > a {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container {
  margin-top: 32px;
  cursor: pointer;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout {
  background-color: #F0F0F0;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.shop-all,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.shop-all,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.shop-all {
  margin-bottom: 0;
  font-size: 15px;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.back-button-container,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.back-button-container,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.back-button-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 15px;
  background-color: #9FCCC9;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p.back-button-container > span.back-button,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p.back-button-container > span.back-button,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p.back-button-container > span.back-button {
  cursor: pointer;
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 10px;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > ul,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > ul,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > ul,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p {
  font-family: "figtree", helvetica, arial, sans-serif;
  padding: 15px;
}

.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > ul > li,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.primary-flyout > p > li,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > ul > li,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.secondary-flyout > p > li,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > ul > li,
.softball #navigation-flyout > .md-sidenav-right > div.products-container > div.third-flyout > p > li {
  display: flex;
  justify-content: space-between;
}

.softball #navigation-flyout > .md-sidenav-right > div.more-container > div.more-content {
  background-color: #F0F0F0;
}

.softball #navigation-flyout > .md-sidenav-right > div.more-container > div.more-content > ul > li {
  padding: 15px;
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  #navigation-flyout > md-sidenav > div {
    margin-top: 42px;
  }
}

/* theme generated by material... IE11 performance improvements */
md-autocomplete.md-sg-material-theme input {
  color: rgba(0, 0, 0, 0.87);
}

.md-autocomplete-suggestions-container.md-sg-material-theme li {
  color: rgba(0, 0, 0, 0.87);
}

md-bottom-sheet.md-sg-material-theme.md-list md-list-item {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-primary {
  color: #9e9e9e;
}

.md-button.md-sg-material-theme.md-primary.md-fab, .md-button.md-sg-material-theme.md-primary.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: #9e9e9e;
}

.md-button.md-sg-material-theme.md-primary.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-primary.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-primary.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-primary.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-primary.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-primary.md-raised:not([disabled]):hover {
  background-color: #757575;
}

.md-button.md-sg-material-theme.md-primary:not([disabled]) md-icon {
  color: #9e9e9e;
}

._md a.md-sg-material-theme:not(.md-button).md-primary {
  color: #9e9e9e;
}

._md a.md-sg-material-theme:not(.md-button).md-primary:hover {
  color: #616161;
}

md-card.md-sg-material-theme .md-card-image {
  border-radius: 2px 2px 0 0;
}

md-card.md-sg-material-theme md-card-header md-card-header-text .md-subhead, md-card.md-sg-material-theme md-card-title md-card-title-text:not(:only-child) .md-subhead {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-ink-ripple {
  color: rgba(158, 158, 158, 0.87);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-icon {
  background-color: rgba(158, 158, 158, 0.87);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary.md-checked.md-focused .md-container:before {
  background-color: rgba(158, 158, 158, 0.26);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-primary .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme[disabled]:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme[disabled] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme[disabled] .md-label {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme .md-chips {
  box-shadow: 0 1px rgba(0, 0, 0, 0.12);
}

md-chips.md-sg-material-theme .md-chips.md-focused {
  box-shadow: 0 2px #9e9e9e;
}

md-chips.md-sg-material-theme .md-chips .md-chip-input-container input {
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme .md-chips .md-chip-input-container input:-moz-placeholder, md-chips.md-sg-material-theme .md-chips .md-chip-input-container input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme .md-chips .md-chip-input-container input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme .md-chips .md-chip-input-container input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme md-chip.md-focused {
  background: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme md-chip.md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid #9e9e9e;
}

.md-sg-material-theme .md-calendar-date.md-calendar-date-today.md-calendar-date-disabled {
  color: rgba(158, 158, 158, 0.6);
}

.md-sg-material-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .md-sg-material-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

.md-sg-material-theme .md-calendar-date-disabled, .md-sg-material-theme .md-calendar-month-label-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme .md-calendar-month-label md-icon, .md-sg-material-theme .md-datepicker-input {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme .md-datepicker-input:-moz-placeholder, .md-sg-material-theme .md-datepicker-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme .md-datepicker-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme .md-datepicker-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme .md-datepicker-input-container {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.md-sg-material-theme .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #9e9e9e;
}

.md-sg-material-theme .md-datepicker-triangle-button .md-datepicker-expand-triangle {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.md-sg-material-theme .md-datepicker-open .md-datepicker-calendar-icon {
  color: #9e9e9e;
}

md-dialog.md-sg-material-theme.md-content-overflow .md-actions, md-dialog.md-sg-material-theme.md-content-overflow md-dialog-actions, md-divider.md-sg-material-theme {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.layout-gt-lg-row > md-divider.md-sg-material-theme, .layout-gt-md-row > md-divider.md-sg-material-theme, .layout-gt-sm-row > md-divider.md-sg-material-theme, .layout-gt-xs-row > md-divider.md-sg-material-theme, .layout-lg-row > md-divider.md-sg-material-theme, .layout-md-row > md-divider.md-sg-material-theme, .layout-row > md-divider.md-sg-material-theme, .layout-sm-row > md-divider.md-sg-material-theme, .layout-xl-row > md-divider.md-sg-material-theme, .layout-xs-row > md-divider.md-sg-material-theme {
  border-right-color: rgba(0, 0, 0, 0.12);
}

md-icon.md-sg-material-theme {
  color: rgba(0, 0, 0, 0.54);
}

md-icon.md-sg-material-theme.md-primary {
  color: #9e9e9e;
}

md-input-container.md-sg-material-theme .md-input {
  color: rgba(0, 0, 0, 0.87);
  border-color: rgba(0, 0, 0, 0.12);
}

md-input-container.md-sg-material-theme .md-input:-moz-placeholder, md-input-container.md-sg-material-theme .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme > md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme .md-placeholder, md-input-container.md-sg-material-theme label {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme:not(.md-input-focused):not(.md-input-invalid) label.md-required:after {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme .md-input-message-animation .md-char-counter, md-input-container.md-sg-material-theme .md-input-messages-animation .md-char-counter {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-input-focused .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-input-focused .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-input-focused .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-input-focused .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-has-value label {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused .md-input, md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-resized .md-input {
  border-color: #9e9e9e;
}

md-list.md-sg-material-theme md-list-item.md-2-line .md-list-item-text h3, md-list.md-sg-material-theme md-list-item.md-2-line .md-list-item-text h4, md-list.md-sg-material-theme md-list-item.md-3-line .md-list-item-text h3, md-list.md-sg-material-theme md-list-item.md-3-line .md-list-item-text h4 {
  color: rgba(0, 0, 0, 0.87);
}

md-list.md-sg-material-theme md-list-item.md-2-line .md-list-item-text p, md-list.md-sg-material-theme md-list-item.md-3-line .md-list-item-text p {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme md-list-item > md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme md-list-item > md-icon.md-highlight {
  color: #9e9e9e;
}

md-menu-bar.md-sg-material-theme > button.md-button {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 2px;
}

md-menu-bar.md-sg-material-theme md-menu > button {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme .md-menu > .md-button:after {
  color: rgba(0, 0, 0, 0.54);
}

md-toolbar.md-sg-material-theme.md-menu-toolbar md-toolbar-filler {
  background-color: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-menu-toolbar md-toolbar-filler md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme md-menu-item {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme md-menu-item md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-menu-content.md-sg-material-theme md-menu-item .md-button[disabled], md-menu-content.md-sg-material-theme md-menu-item .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme .md-button._md-nav-button.md-unselected {
  color: rgba(0, 0, 0, 0.54);
}

md-nav-bar.md-sg-material-theme .md-button._md-nav-button[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-primary > .md-nav-bar {
  background-color: #9e9e9e;
}

md-nav-bar.md-sg-material-theme.md-primary > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-nav-bar.md-sg-material-theme.md-primary > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-nav-bar.md-sg-material-theme > .md-nav-bar {
  background-color: #9e9e9e;
}

md-toolbar > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-toolbar > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-progress-circular.md-sg-material-theme path {
  stroke: #9e9e9e;
}

md-radio-button.md-sg-material-theme .md-off {
  border-color: rgba(0, 0, 0, 0.54);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-primary .md-on, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary .md-on, md-radio-group.md-sg-material-theme:not([disabled]).md-primary .md-on, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary .md-on {
  background-color: rgba(158, 158, 158, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]).md-primary .md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]).md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary .md-checked .md-off {
  border-color: rgba(158, 158, 158, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary .md-checked .md-ink-ripple {
  color: rgba(158, 158, 158, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-primary .md-container .md-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-primary .md-container .md-ripple {
  color: #757575;
}

md-radio-button.md-sg-material-theme[disabled], md-radio-group.md-sg-material-theme[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-radio-button.md-sg-material-theme[disabled] .md-container .md-off, md-radio-button.md-sg-material-theme[disabled] .md-container .md-on, md-radio-group.md-sg-material-theme[disabled] .md-container .md-off, md-radio-group.md-sg-material-theme[disabled] .md-container .md-on {
  border-color: rgba(0, 0, 0, 0.38);
}

md-radio-group.md-sg-material-theme .md-checked:not([disabled]).md-primary .md-ink-ripple, md-radio-group.md-sg-material-theme.md-primary .md-checked:not([disabled]) .md-ink-ripple {
  color: rgba(158, 158, 158, 0.26);
}

md-radio-group.md-sg-material-theme.md-focused:not(:empty) .md-checked.md-primary .md-container:before, md-radio-group.md-sg-material-theme.md-focused:not(:empty).md-primary .md-checked .md-container:before {
  background-color: rgba(158, 158, 158, 0.26);
}

md-progress-linear.md-sg-material-theme .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme .md-bar {
  background-color: #9e9e9e;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-primary .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-primary .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-focused):not(.md-input-invalid) md-select.md-sg-material-theme .md-select-value span:first-child:after {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme .md-select-value, md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme .md-select-value.md-select-placeholder {
  color: #9e9e9e;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme .md-select-value {
  border-bottom-color: rgba(0, 43, 70, 0.8);
}

md-select.md-sg-material-theme .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.ng-invalid.ng-touched.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme:not([disabled]):focus .md-select-value {
  border-bottom-color: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme:not([disabled]):focus .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme:not([disabled]):focus.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme[disabled] .md-select-icon, md-select.md-sg-material-theme[disabled] .md-select-value, md-select.md-sg-material-theme[disabled] .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme .md-select-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme md-content md-optgroup {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme md-content md-option {
  color: rgba(0, 0, 0, 0.87);
}

md-select-menu.md-sg-material-theme md-content md-option[disabled] .md-text {
  color: rgba(0, 0, 0, 0.38);
}

md-select-menu.md-sg-material-theme md-content md-option[selected] {
  color: #9e9e9e;
}

md-select-menu.md-sg-material-theme md-content md-option[selected]:focus {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme .md-ripple {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme[selected] .md-ink-ripple {
  color: rgba(158, 158, 158, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme[selected] .md-icon {
  background-color: rgba(158, 158, 158, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme[selected].md-focused .md-container:before {
  background-color: rgba(158, 158, 158, 0.26);
}

.md-checkbox-enabled.md-sg-material-theme[selected] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

.md-checkbox-enabled.md-sg-material-theme md-option .md-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-primary .md-focus-ring {
  background-color: rgba(238, 238, 238, 0.38);
}

md-slider.md-sg-material-theme.md-primary .md-track.md-track-fill {
  background-color: #9e9e9e;
}

md-slider.md-sg-material-theme.md-primary .md-thumb:after {
  border-color: #9e9e9e;
  background-color: #9e9e9e;
}

md-slider.md-sg-material-theme.md-primary .md-sign {
  background-color: #9e9e9e;
}

md-slider.md-sg-material-theme.md-primary .md-sign:after {
  border-top-color: #9e9e9e;
}

md-slider.md-sg-material-theme.md-primary[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #9e9e9e;
}

md-slider.md-sg-material-theme.md-primary .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme[disabled] .md-thumb:after {
  border-color: transparent;
}

md-slider-container[disabled] > :first-child:not(md-slider), md-slider-container[disabled] > :last-child:not(md-slider) {
  color: rgba(0, 0, 0, 0.38);
}

.md-subheader.md-sg-material-theme.md-primary {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-primary .md-ink-ripple {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-primary .md-thumb {
  background-color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-primary .md-bar {
  background-color: rgba(158, 158, 158, 0.5);
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-primary.md-focused .md-thumb:before {
  background-color: rgba(158, 158, 158, 0.26);
}

md-tabs.md-sg-material-theme .md-paginator md-icon {
  color: #9e9e9e;
}

md-tabs.md-sg-material-theme .md-tab {
  color: rgba(0, 0, 0, 0.54);
}

md-tabs.md-sg-material-theme .md-tab[disabled], md-tabs.md-sg-material-theme .md-tab[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-tabs.md-sg-material-theme .md-tab.md-active, md-tabs.md-sg-material-theme .md-tab.md-active md-icon, md-tabs.md-sg-material-theme .md-tab.md-focused, md-tabs.md-sg-material-theme .md-tab.md-focused md-icon {
  color: #9e9e9e;
}

md-tabs.md-sg-material-theme .md-tab.md-focused {
  background: rgba(158, 158, 158, 0.1);
}

md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper {
  background-color: #9e9e9e;
}

md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper {
  background-color: #9e9e9e;
}

md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toast.md-sg-material-theme .md-toast-content .md-button.md-highlight.md-primary {
  color: #9e9e9e;
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar) {
  background-color: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar) md-icon {
  color: rgba(0, 0, 0, 0.87);
  fill: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar) .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.26);
  fill: rgba(0, 0, 0, 0.26);
}

md-autocomplete.md-sg-material-theme.md-hue-1 input {
  color: rgba(0, 0, 0, 0.87);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-1 li {
  color: rgba(0, 0, 0, 0.87);
}

md-bottom-sheet.md-sg-material-theme.md-hue-1.md-list md-list-item {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-primary {
  color: #e0e0e0;
}

.md-button.md-sg-material-theme.md-hue-1.md-primary.md-fab, .md-button.md-sg-material-theme.md-hue-1.md-primary.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: #e0e0e0;
}

.md-button.md-sg-material-theme.md-hue-1.md-primary.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-1.md-primary.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-primary.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-primary.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-1.md-primary.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-primary.md-raised:not([disabled]):hover {
  background-color: #757575;
}

.md-button.md-sg-material-theme.md-hue-1.md-primary:not([disabled]) md-icon {
  color: #e0e0e0;
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-primary {
  color: #e0e0e0;
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-primary:hover {
  color: #616161;
}

md-card.md-sg-material-theme.md-hue-1 .md-card-image {
  border-radius: 2px 2px 0 0;
}

md-card.md-sg-material-theme.md-hue-1 md-card-header md-card-header-text .md-subhead, md-card.md-sg-material-theme.md-hue-1 md-card-title md-card-title-text:not(:only-child) .md-subhead {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-ink-ripple {
  color: rgba(224, 224, 224, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-icon {
  background-color: rgba(224, 224, 224, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked.md-focused .md-container:before {
  background-color: rgba(224, 224, 224, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-1[disabled]:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-1[disabled] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-1[disabled] .md-label {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips {
  box-shadow: 0 1px rgba(0, 0, 0, 0.12);
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips.md-focused {
  box-shadow: 0 2px #e0e0e0;
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips .md-chip-input-container input {
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips .md-chip-input-container input:-moz-placeholder, md-chips.md-sg-material-theme.md-hue-1 .md-chips .md-chip-input-container input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips .md-chip-input-container input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-1 .md-chips .md-chip-input-container input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-1 md-chip.md-focused {
  background: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme.md-hue-1 md-chip.md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-1 .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid #9e9e9e;
}

.md-sg-material-theme.md-hue-1 .md-calendar-date.md-calendar-date-today.md-calendar-date-disabled {
  color: rgba(158, 158, 158, 0.6);
}

.md-sg-material-theme.md-hue-1 .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-1 .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

.md-sg-material-theme.md-hue-1 .md-calendar-date-disabled, .md-sg-material-theme.md-hue-1 .md-calendar-month-label-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-1 .md-calendar-month-label md-icon, .md-sg-material-theme.md-hue-1 .md-datepicker-input {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input:-moz-placeholder, .md-sg-material-theme.md-hue-1 .md-datepicker-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input-container {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #e0e0e0;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-triangle-button .md-datepicker-expand-triangle {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-open .md-datepicker-calendar-icon {
  color: #e0e0e0;
}

md-dialog.md-sg-material-theme.md-hue-1.md-content-overflow .md-actions, md-dialog.md-sg-material-theme.md-hue-1.md-content-overflow md-dialog-actions, md-divider.md-sg-material-theme.md-hue-1 {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.layout-gt-lg-row > md-divider.md-sg-material-theme.md-hue-1, .layout-gt-md-row > md-divider.md-sg-material-theme.md-hue-1, .layout-gt-sm-row > md-divider.md-sg-material-theme.md-hue-1, .layout-gt-xs-row > md-divider.md-sg-material-theme.md-hue-1, .layout-lg-row > md-divider.md-sg-material-theme.md-hue-1, .layout-md-row > md-divider.md-sg-material-theme.md-hue-1, .layout-row > md-divider.md-sg-material-theme.md-hue-1, .layout-sm-row > md-divider.md-sg-material-theme.md-hue-1, .layout-xl-row > md-divider.md-sg-material-theme.md-hue-1, .layout-xs-row > md-divider.md-sg-material-theme.md-hue-1 {
  border-right-color: rgba(0, 0, 0, 0.12);
}

md-icon.md-sg-material-theme.md-hue-1 {
  color: rgba(0, 0, 0, 0.54);
}

md-icon.md-sg-material-theme.md-hue-1.md-primary {
  color: #e0e0e0;
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input {
  color: rgba(0, 0, 0, 0.87);
  border-color: rgba(0, 0, 0, 0.12);
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-1 .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-1 > md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-1 .md-placeholder, md-input-container.md-sg-material-theme.md-hue-1 label {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-focused):not(.md-input-invalid) label.md-required:after {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input-message-animation .md-char-counter, md-input-container.md-sg-material-theme.md-hue-1 .md-input-messages-animation .md-char-counter {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-1.md-input-focused .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-1.md-input-focused .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-1.md-input-focused .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-1.md-input-focused .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-has-value label {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused .md-input, md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-resized .md-input {
  border-color: #e0e0e0;
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused label, md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused md-icon {
  color: #e0e0e0;
}

md-list.md-sg-material-theme.md-hue-1 md-list-item.md-2-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-1 md-list-item.md-2-line .md-list-item-text h4, md-list.md-sg-material-theme.md-hue-1 md-list-item.md-3-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-1 md-list-item.md-3-line .md-list-item-text h4 {
  color: rgba(0, 0, 0, 0.87);
}

md-list.md-sg-material-theme.md-hue-1 md-list-item.md-2-line .md-list-item-text p, md-list.md-sg-material-theme.md-hue-1 md-list-item.md-3-line .md-list-item-text p {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-1 md-list-item > md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-1 md-list-item > md-icon.md-highlight {
  color: #e0e0e0;
}

md-menu-bar.md-sg-material-theme.md-hue-1 > button.md-button {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 2px;
}

md-menu-bar.md-sg-material-theme.md-hue-1 md-menu > button {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-1 .md-menu > .md-button:after {
  color: rgba(0, 0, 0, 0.54);
}

md-toolbar.md-sg-material-theme.md-hue-1.md-menu-toolbar md-toolbar-filler {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1.md-menu-toolbar md-toolbar-filler md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-1 md-menu-item {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-1 md-menu-item md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-menu-content.md-sg-material-theme.md-hue-1 md-menu-item .md-button[disabled], md-menu-content.md-sg-material-theme.md-hue-1 md-menu-item .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-1 .md-button._md-nav-button.md-unselected {
  color: rgba(0, 0, 0, 0.54);
}

md-nav-bar.md-sg-material-theme.md-hue-1 .md-button._md-nav-button[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-primary > .md-nav-bar {
  background-color: #e0e0e0;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-primary > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-primary > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-1.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar {
  background-color: #e0e0e0;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-1 path {
  stroke: #e0e0e0;
}

md-radio-button.md-sg-material-theme.md-hue-1 .md-off {
  border-color: rgba(0, 0, 0, 0.54);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-on, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-on {
  background-color: rgba(224, 224, 224, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-checked .md-off {
  border-color: rgba(224, 224, 224, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-checked .md-ink-ripple {
  color: rgba(224, 224, 224, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-primary .md-container .md-ripple {
  color: #757575;
}

md-radio-button.md-sg-material-theme.md-hue-1[disabled], md-radio-group.md-sg-material-theme.md-hue-1[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-radio-button.md-sg-material-theme.md-hue-1[disabled] .md-container .md-off, md-radio-button.md-sg-material-theme.md-hue-1[disabled] .md-container .md-on, md-radio-group.md-sg-material-theme.md-hue-1[disabled] .md-container .md-off, md-radio-group.md-sg-material-theme.md-hue-1[disabled] .md-container .md-on {
  border-color: rgba(0, 0, 0, 0.38);
}

md-radio-group.md-sg-material-theme.md-hue-1 .md-checked:not([disabled]).md-primary .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1.md-primary .md-checked:not([disabled]) .md-ink-ripple {
  color: rgba(224, 224, 224, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-1.md-focused:not(:empty) .md-checked.md-primary .md-container:before, md-radio-group.md-sg-material-theme.md-hue-1.md-focused:not(:empty).md-primary .md-checked .md-container:before {
  background-color: rgba(224, 224, 224, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-1 .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-1 .md-bar {
  background-color: #e0e0e0;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-primary .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-primary .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-focused):not(.md-input-invalid) md-select.md-sg-material-theme.md-hue-1 .md-select-value span:first-child:after {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-1 .md-select-value, md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-1 .md-select-value.md-select-placeholder {
  color: #e0e0e0;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-1.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-1 .md-select-value {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

md-select.md-sg-material-theme.md-hue-1 .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-1.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-1.ng-invalid.ng-touched.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-1:not([disabled]):focus .md-select-value {
  border-bottom-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-1:not([disabled]):focus .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-1:not([disabled]):focus.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-1[disabled] .md-select-icon, md-select.md-sg-material-theme.md-hue-1[disabled] .md-select-value, md-select.md-sg-material-theme.md-hue-1[disabled] .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-1 .md-select-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-optgroup {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option {
  color: rgba(0, 0, 0, 0.87);
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option[disabled] .md-text {
  color: rgba(0, 0, 0, 0.38);
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option[selected] {
  color: #9e9e9e;
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option[selected]:focus {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1 .md-ripple {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1[selected] .md-ink-ripple {
  color: rgba(224, 224, 224, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1[selected] .md-icon {
  background-color: rgba(224, 224, 224, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1[selected].md-focused .md-container:before {
  background-color: rgba(224, 224, 224, 0.26);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1[selected] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1 .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1 md-option .md-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-focus-ring {
  background-color: rgba(238, 238, 238, 0.38);
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-track.md-track-fill {
  background-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-thumb:after {
  border-color: #e0e0e0;
  background-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-sign {
  background-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-sign:after {
  border-top-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-1.md-primary[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-1.md-primary .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-1[disabled] .md-thumb:after {
  border-color: transparent;
}

md-slider-container[disabled] > :first-child:not(md-slider), md-slider-container[disabled] > :last-child:not(md-slider) {
  color: rgba(0, 0, 0, 0.38);
}

.md-subheader.md-sg-material-theme.md-hue-1.md-primary {
  color: #e0e0e0;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-primary .md-ink-ripple {
  color: #e0e0e0;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-primary .md-thumb {
  background-color: #e0e0e0;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-primary .md-bar {
  background-color: rgba(224, 224, 224, 0.5);
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-primary.md-focused .md-thumb:before {
  background-color: rgba(224, 224, 224, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-1 .md-paginator md-icon {
  color: #e0e0e0;
}

md-tabs.md-sg-material-theme.md-hue-1 .md-tab {
  color: rgba(0, 0, 0, 0.54);
}

md-tabs.md-sg-material-theme.md-hue-1 .md-tab[disabled], md-tabs.md-sg-material-theme.md-hue-1 .md-tab[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-tabs.md-sg-material-theme.md-hue-1 .md-tab.md-active, md-tabs.md-sg-material-theme.md-hue-1 .md-tab.md-active md-icon, md-tabs.md-sg-material-theme.md-hue-1 .md-tab.md-focused, md-tabs.md-sg-material-theme.md-hue-1 .md-tab.md-focused md-icon {
  color: #e0e0e0;
}

md-tabs.md-sg-material-theme.md-hue-1 .md-tab.md-focused {
  background: rgba(224, 224, 224, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper {
  background-color: #e0e0e0;
}

md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-1.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper {
  background-color: #e0e0e0;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toast.md-sg-material-theme.md-hue-1 .md-toast-content .md-button.md-highlight.md-primary {
  color: #e0e0e0;
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar) {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar) md-icon {
  color: rgba(0, 0, 0, 0.87);
  fill: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar) .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.26);
  fill: rgba(0, 0, 0, 0.26);
}

md-autocomplete.md-sg-material-theme.md-hue-2 input {
  color: rgba(0, 0, 0, 0.87);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-2 li {
  color: rgba(0, 0, 0, 0.87);
}

md-bottom-sheet.md-sg-material-theme.md-hue-2.md-list md-list-item {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-primary {
  color: #424242;
}

.md-button.md-sg-material-theme.md-hue-2.md-primary.md-fab, .md-button.md-sg-material-theme.md-hue-2.md-primary.md-raised {
  color: rgba(255, 255, 255, 0.87);
  background-color: #424242;
}

.md-button.md-sg-material-theme.md-hue-2.md-primary.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-2.md-primary.md-raised:not([disabled]) md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-primary.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-primary.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-2.md-primary.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-primary.md-raised:not([disabled]):hover {
  background-color: #757575;
}

.md-button.md-sg-material-theme.md-hue-2.md-primary:not([disabled]) md-icon {
  color: #424242;
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-primary {
  color: #424242;
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-primary:hover {
  color: #616161;
}

md-card.md-sg-material-theme.md-hue-2 .md-card-image {
  border-radius: 2px 2px 0 0;
}

md-card.md-sg-material-theme.md-hue-2 md-card-header md-card-header-text .md-subhead, md-card.md-sg-material-theme.md-hue-2 md-card-title md-card-title-text:not(:only-child) .md-subhead {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-ink-ripple {
  color: rgba(66, 66, 66, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-icon {
  background-color: rgba(66, 66, 66, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked.md-focused .md-container:before {
  background-color: rgba(66, 66, 66, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-icon:after {
  border-color: rgba(255, 255, 255, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-2[disabled]:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-2[disabled] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-2[disabled] .md-label {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips {
  box-shadow: 0 1px rgba(0, 0, 0, 0.12);
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips.md-focused {
  box-shadow: 0 2px #424242;
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips .md-chip-input-container input {
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips .md-chip-input-container input:-moz-placeholder, md-chips.md-sg-material-theme.md-hue-2 .md-chips .md-chip-input-container input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips .md-chip-input-container input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-2 .md-chips .md-chip-input-container input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-2 md-chip.md-focused {
  background: #424242;
  color: rgba(255, 255, 255, 0.87);
}

md-chips.md-sg-material-theme.md-hue-2 md-chip.md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-sg-material-theme.md-hue-2 .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid #9e9e9e;
}

.md-sg-material-theme.md-hue-2 .md-calendar-date.md-calendar-date-today.md-calendar-date-disabled {
  color: rgba(158, 158, 158, 0.6);
}

.md-sg-material-theme.md-hue-2 .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-2 .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

.md-sg-material-theme.md-hue-2 .md-calendar-date-disabled, .md-sg-material-theme.md-hue-2 .md-calendar-month-label-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-2 .md-calendar-month-label md-icon, .md-sg-material-theme.md-hue-2 .md-datepicker-input {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input:-moz-placeholder, .md-sg-material-theme.md-hue-2 .md-datepicker-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input-container {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #424242;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-triangle-button .md-datepicker-expand-triangle {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-open .md-datepicker-calendar-icon {
  color: #424242;
}

md-dialog.md-sg-material-theme.md-hue-2.md-content-overflow .md-actions, md-dialog.md-sg-material-theme.md-hue-2.md-content-overflow md-dialog-actions, md-divider.md-sg-material-theme.md-hue-2 {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.layout-gt-lg-row > md-divider.md-sg-material-theme.md-hue-2, .layout-gt-md-row > md-divider.md-sg-material-theme.md-hue-2, .layout-gt-sm-row > md-divider.md-sg-material-theme.md-hue-2, .layout-gt-xs-row > md-divider.md-sg-material-theme.md-hue-2, .layout-lg-row > md-divider.md-sg-material-theme.md-hue-2, .layout-md-row > md-divider.md-sg-material-theme.md-hue-2, .layout-row > md-divider.md-sg-material-theme.md-hue-2, .layout-sm-row > md-divider.md-sg-material-theme.md-hue-2, .layout-xl-row > md-divider.md-sg-material-theme.md-hue-2, .layout-xs-row > md-divider.md-sg-material-theme.md-hue-2 {
  border-right-color: rgba(0, 0, 0, 0.12);
}

md-icon.md-sg-material-theme.md-hue-2 {
  color: rgba(0, 0, 0, 0.54);
}

md-icon.md-sg-material-theme.md-hue-2.md-primary {
  color: #424242;
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input {
  color: rgba(0, 0, 0, 0.87);
  border-color: rgba(0, 0, 0, 0.12);
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-2 .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-2 > md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-2 .md-placeholder, md-input-container.md-sg-material-theme.md-hue-2 label {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-focused):not(.md-input-invalid) label.md-required:after {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input-message-animation .md-char-counter, md-input-container.md-sg-material-theme.md-hue-2 .md-input-messages-animation .md-char-counter {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-2.md-input-focused .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-2.md-input-focused .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-2.md-input-focused .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-2.md-input-focused .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-has-value label {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused .md-input, md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-resized .md-input {
  border-color: #424242;
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused label, md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused md-icon {
  color: #424242;
}

md-list.md-sg-material-theme.md-hue-2 md-list-item.md-2-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-2 md-list-item.md-2-line .md-list-item-text h4, md-list.md-sg-material-theme.md-hue-2 md-list-item.md-3-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-2 md-list-item.md-3-line .md-list-item-text h4 {
  color: rgba(0, 0, 0, 0.87);
}

md-list.md-sg-material-theme.md-hue-2 md-list-item.md-2-line .md-list-item-text p, md-list.md-sg-material-theme.md-hue-2 md-list-item.md-3-line .md-list-item-text p {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-2 md-list-item > md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-2 md-list-item > md-icon.md-highlight {
  color: #424242;
}

md-menu-bar.md-sg-material-theme.md-hue-2 > button.md-button {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 2px;
}

md-menu-bar.md-sg-material-theme.md-hue-2 md-menu > button {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-2 .md-menu > .md-button:after {
  color: rgba(0, 0, 0, 0.54);
}

md-toolbar.md-sg-material-theme.md-hue-2.md-menu-toolbar md-toolbar-filler {
  background-color: #424242;
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2.md-menu-toolbar md-toolbar-filler md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-2 md-menu-item {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-2 md-menu-item md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-menu-content.md-sg-material-theme.md-hue-2 md-menu-item .md-button[disabled], md-menu-content.md-sg-material-theme.md-hue-2 md-menu-item .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-2 .md-button._md-nav-button.md-unselected {
  color: rgba(0, 0, 0, 0.54);
}

md-nav-bar.md-sg-material-theme.md-hue-2 .md-button._md-nav-button[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-primary > .md-nav-bar {
  background-color: #424242;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-primary > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-primary > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-2.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar {
  background-color: #424242;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-2 path {
  stroke: #424242;
}

md-radio-button.md-sg-material-theme.md-hue-2 .md-off {
  border-color: rgba(0, 0, 0, 0.54);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-on, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-on {
  background-color: rgba(66, 66, 66, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-checked .md-off {
  border-color: rgba(66, 66, 66, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-checked .md-ink-ripple {
  color: rgba(66, 66, 66, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-primary .md-container .md-ripple {
  color: #757575;
}

md-radio-button.md-sg-material-theme.md-hue-2[disabled], md-radio-group.md-sg-material-theme.md-hue-2[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-radio-button.md-sg-material-theme.md-hue-2[disabled] .md-container .md-off, md-radio-button.md-sg-material-theme.md-hue-2[disabled] .md-container .md-on, md-radio-group.md-sg-material-theme.md-hue-2[disabled] .md-container .md-off, md-radio-group.md-sg-material-theme.md-hue-2[disabled] .md-container .md-on {
  border-color: rgba(0, 0, 0, 0.38);
}

md-radio-group.md-sg-material-theme.md-hue-2 .md-checked:not([disabled]).md-primary .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2.md-primary .md-checked:not([disabled]) .md-ink-ripple {
  color: rgba(66, 66, 66, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-2.md-focused:not(:empty) .md-checked.md-primary .md-container:before, md-radio-group.md-sg-material-theme.md-hue-2.md-focused:not(:empty).md-primary .md-checked .md-container:before {
  background-color: rgba(66, 66, 66, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-2 .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-2 .md-bar {
  background-color: #424242;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-primary .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-primary .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-focused):not(.md-input-invalid) md-select.md-sg-material-theme.md-hue-2 .md-select-value span:first-child:after {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-2 .md-select-value, md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-2 .md-select-value.md-select-placeholder {
  color: #424242;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-2.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-2 .md-select-value {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

md-select.md-sg-material-theme.md-hue-2 .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-2.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-2.ng-invalid.ng-touched.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-2:not([disabled]):focus .md-select-value {
  border-bottom-color: #424242;
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-2:not([disabled]):focus .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-2:not([disabled]):focus.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-2[disabled] .md-select-icon, md-select.md-sg-material-theme.md-hue-2[disabled] .md-select-value, md-select.md-sg-material-theme.md-hue-2[disabled] .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-2 .md-select-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-optgroup {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option {
  color: rgba(0, 0, 0, 0.87);
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option[disabled] .md-text {
  color: rgba(0, 0, 0, 0.38);
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option[selected] {
  color: #9e9e9e;
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option[selected]:focus {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2 .md-ripple {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2[selected] .md-ink-ripple {
  color: rgba(66, 66, 66, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2[selected] .md-icon {
  background-color: rgba(66, 66, 66, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2[selected].md-focused .md-container:before {
  background-color: rgba(66, 66, 66, 0.26);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2[selected] .md-icon:after {
  border-color: rgba(255, 255, 255, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2 .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2 md-option .md-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-focus-ring {
  background-color: rgba(238, 238, 238, 0.38);
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-track.md-track-fill {
  background-color: #424242;
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-thumb:after {
  border-color: #424242;
  background-color: #424242;
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-sign {
  background-color: #424242;
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-sign:after {
  border-top-color: #424242;
}

md-slider.md-sg-material-theme.md-hue-2.md-primary[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #424242;
}

md-slider.md-sg-material-theme.md-hue-2.md-primary .md-thumb-text {
  color: rgba(255, 255, 255, 0.87);
}

md-slider.md-sg-material-theme.md-hue-2[disabled] .md-thumb:after {
  border-color: transparent;
}

md-slider-container[disabled] > :first-child:not(md-slider), md-slider-container[disabled] > :last-child:not(md-slider) {
  color: rgba(0, 0, 0, 0.38);
}

.md-subheader.md-sg-material-theme.md-hue-2.md-primary {
  color: #424242;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-primary .md-ink-ripple {
  color: #424242;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-primary .md-thumb {
  background-color: #424242;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-primary .md-bar {
  background-color: rgba(66, 66, 66, 0.5);
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-primary.md-focused .md-thumb:before {
  background-color: rgba(66, 66, 66, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-2 .md-paginator md-icon {
  color: #424242;
}

md-tabs.md-sg-material-theme.md-hue-2 .md-tab {
  color: rgba(0, 0, 0, 0.54);
}

md-tabs.md-sg-material-theme.md-hue-2 .md-tab[disabled], md-tabs.md-sg-material-theme.md-hue-2 .md-tab[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-tabs.md-sg-material-theme.md-hue-2 .md-tab.md-active, md-tabs.md-sg-material-theme.md-hue-2 .md-tab.md-active md-icon, md-tabs.md-sg-material-theme.md-hue-2 .md-tab.md-focused, md-tabs.md-sg-material-theme.md-hue-2 .md-tab.md-focused md-icon {
  color: #424242;
}

md-tabs.md-sg-material-theme.md-hue-2 .md-tab.md-focused {
  background: rgba(66, 66, 66, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper {
  background-color: #424242;
}

md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-2.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper {
  background-color: #424242;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toast.md-sg-material-theme.md-hue-2 .md-toast-content .md-button.md-highlight.md-primary {
  color: #424242;
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar) {
  background-color: #424242;
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar) md-icon {
  color: rgba(255, 255, 255, 0.87);
  fill: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar) .md-button[disabled] md-icon {
  color: rgba(255, 255, 255, 0.26);
  fill: rgba(255, 255, 255, 0.26);
}

md-autocomplete.md-sg-material-theme.md-hue-3 input {
  color: rgba(0, 0, 0, 0.87);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-3 li {
  color: rgba(0, 0, 0, 0.87);
}

md-bottom-sheet.md-sg-material-theme.md-hue-3.md-list md-list-item {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-primary {
  color: white;
}

.md-button.md-sg-material-theme.md-hue-3.md-primary.md-fab, .md-button.md-sg-material-theme.md-hue-3.md-primary.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}

.md-button.md-sg-material-theme.md-hue-3.md-primary.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-3.md-primary.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-primary.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-primary.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-3.md-primary.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-primary.md-raised:not([disabled]):hover {
  background-color: #757575;
}

.md-button.md-sg-material-theme.md-hue-3.md-primary:not([disabled]) md-icon {
  color: white;
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-primary {
  color: white;
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-primary:hover {
  color: #616161;
}

md-card.md-sg-material-theme.md-hue-3 .md-card-image {
  border-radius: 2px 2px 0 0;
}

md-card.md-sg-material-theme.md-hue-3 md-card-header md-card-header-text .md-subhead, md-card.md-sg-material-theme.md-hue-3 md-card-title md-card-title-text:not(:only-child) .md-subhead {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-icon {
  background-color: rgba(255, 255, 255, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked.md-focused .md-container:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-3[disabled]:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-3[disabled] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-3[disabled] .md-label {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips {
  box-shadow: 0 1px rgba(0, 0, 0, 0.12);
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips.md-focused {
  box-shadow: 0 2px white;
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips .md-chip-input-container input {
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips .md-chip-input-container input:-moz-placeholder, md-chips.md-sg-material-theme.md-hue-3 .md-chips .md-chip-input-container input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips .md-chip-input-container input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-3 .md-chips .md-chip-input-container input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-chips.md-sg-material-theme.md-hue-3 md-chip.md-focused {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}

md-chips.md-sg-material-theme.md-hue-3 md-chip.md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-3 .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: 1px solid #9e9e9e;
}

.md-sg-material-theme.md-hue-3 .md-calendar-date.md-calendar-date-today.md-calendar-date-disabled {
  color: rgba(158, 158, 158, 0.6);
}

.md-sg-material-theme.md-hue-3 .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-3 .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: #9e9e9e;
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

.md-sg-material-theme.md-hue-3 .md-calendar-date-disabled, .md-sg-material-theme.md-hue-3 .md-calendar-month-label-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-3 .md-calendar-month-label md-icon, .md-sg-material-theme.md-hue-3 .md-datepicker-input {
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input:-moz-placeholder, .md-sg-material-theme.md-hue-3 .md-datepicker-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input-container {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: white;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-triangle-button .md-datepicker-expand-triangle {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-open .md-datepicker-calendar-icon {
  color: white;
}

md-dialog.md-sg-material-theme.md-hue-3.md-content-overflow .md-actions, md-dialog.md-sg-material-theme.md-hue-3.md-content-overflow md-dialog-actions, md-divider.md-sg-material-theme.md-hue-3 {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.layout-gt-lg-row > md-divider.md-sg-material-theme.md-hue-3, .layout-gt-md-row > md-divider.md-sg-material-theme.md-hue-3, .layout-gt-sm-row > md-divider.md-sg-material-theme.md-hue-3, .layout-gt-xs-row > md-divider.md-sg-material-theme.md-hue-3, .layout-lg-row > md-divider.md-sg-material-theme.md-hue-3, .layout-md-row > md-divider.md-sg-material-theme.md-hue-3, .layout-row > md-divider.md-sg-material-theme.md-hue-3, .layout-sm-row > md-divider.md-sg-material-theme.md-hue-3, .layout-xl-row > md-divider.md-sg-material-theme.md-hue-3, .layout-xs-row > md-divider.md-sg-material-theme.md-hue-3 {
  border-right-color: rgba(0, 0, 0, 0.12);
}

md-icon.md-sg-material-theme.md-hue-3 {
  color: rgba(0, 0, 0, 0.54);
}

md-icon.md-sg-material-theme.md-hue-3.md-primary {
  color: white;
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input {
  color: rgba(0, 0, 0, 0.87);
  border-color: rgba(0, 0, 0, 0.12);
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-3 .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-3 > md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-3 .md-placeholder, md-input-container.md-sg-material-theme.md-hue-3 label {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-focused):not(.md-input-invalid) label.md-required:after {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input-message-animation .md-char-counter, md-input-container.md-sg-material-theme.md-hue-3 .md-input-messages-animation .md-char-counter {
  color: rgba(0, 0, 0, 0.87);
}

md-input-container.md-sg-material-theme.md-hue-3.md-input-focused .md-input:-moz-placeholder, md-input-container.md-sg-material-theme.md-hue-3.md-input-focused .md-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-3.md-input-focused .md-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-3.md-input-focused .md-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-has-value label {
  color: rgba(0, 0, 0, 0.54);
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused .md-input, md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-resized .md-input {
  border-color: white;
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused label, md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused md-icon {
  color: white;
}

md-list.md-sg-material-theme.md-hue-3 md-list-item.md-2-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-3 md-list-item.md-2-line .md-list-item-text h4, md-list.md-sg-material-theme.md-hue-3 md-list-item.md-3-line .md-list-item-text h3, md-list.md-sg-material-theme.md-hue-3 md-list-item.md-3-line .md-list-item-text h4 {
  color: rgba(0, 0, 0, 0.87);
}

md-list.md-sg-material-theme.md-hue-3 md-list-item.md-2-line .md-list-item-text p, md-list.md-sg-material-theme.md-hue-3 md-list-item.md-3-line .md-list-item-text p {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-3 md-list-item > md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-list.md-sg-material-theme.md-hue-3 md-list-item > md-icon.md-highlight {
  color: white;
}

md-menu-bar.md-sg-material-theme.md-hue-3 > button.md-button {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 2px;
}

md-menu-bar.md-sg-material-theme.md-hue-3 md-menu > button {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-3 .md-menu > .md-button:after {
  color: rgba(0, 0, 0, 0.54);
}

md-toolbar.md-sg-material-theme.md-hue-3.md-menu-toolbar md-toolbar-filler {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3.md-menu-toolbar md-toolbar-filler md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-3 md-menu-item {
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-3 md-menu-item md-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-menu-content.md-sg-material-theme.md-hue-3 md-menu-item .md-button[disabled], md-menu-content.md-sg-material-theme.md-hue-3 md-menu-item .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-3 .md-button._md-nav-button.md-unselected {
  color: rgba(0, 0, 0, 0.54);
}

md-nav-bar.md-sg-material-theme.md-hue-3 .md-button._md-nav-button[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-primary > .md-nav-bar {
  background-color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-primary > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-primary > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-3.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-primary > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar {
  background-color: white;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button {
  color: whitesmoke;
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-3 path {
  stroke: white;
}

md-radio-button.md-sg-material-theme.md-hue-3 .md-off {
  border-color: rgba(0, 0, 0, 0.54);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-on, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-on, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-on {
  background-color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-checked .md-off {
  border-color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-checked .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-primary .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-primary .md-container .md-ripple {
  color: #757575;
}

md-radio-button.md-sg-material-theme.md-hue-3[disabled], md-radio-group.md-sg-material-theme.md-hue-3[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

md-radio-button.md-sg-material-theme.md-hue-3[disabled] .md-container .md-off, md-radio-button.md-sg-material-theme.md-hue-3[disabled] .md-container .md-on, md-radio-group.md-sg-material-theme.md-hue-3[disabled] .md-container .md-off, md-radio-group.md-sg-material-theme.md-hue-3[disabled] .md-container .md-on {
  border-color: rgba(0, 0, 0, 0.38);
}

md-radio-group.md-sg-material-theme.md-hue-3 .md-checked:not([disabled]).md-primary .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3.md-primary .md-checked:not([disabled]) .md-ink-ripple {
  color: rgba(255, 255, 255, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-3.md-focused:not(:empty) .md-checked.md-primary .md-container:before, md-radio-group.md-sg-material-theme.md-hue-3.md-focused:not(:empty).md-primary .md-checked .md-container:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-3 .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-3 .md-bar {
  background-color: white;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-primary .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-primary .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-focused):not(.md-input-invalid) md-select.md-sg-material-theme.md-hue-3 .md-select-value span:first-child:after {
  color: rgba(0, 0, 0, 0.38);
}

md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-3 .md-select-value, md-input-container.md-input-focused:not(.md-input-has-value) md-select.md-sg-material-theme.md-hue-3 .md-select-value.md-select-placeholder {
  color: white;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-3.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-3 .md-select-value {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

md-select.md-sg-material-theme.md-hue-3 .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-3.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-3.ng-invalid.ng-touched.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-3:not([disabled]):focus .md-select-value {
  border-bottom-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-3:not([disabled]):focus .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.87);
}

md-select.md-sg-material-theme.md-hue-3:not([disabled]):focus.md-no-underline .md-select-value {
  border-bottom-color: transparent !important;
}

md-select.md-sg-material-theme.md-hue-3[disabled] .md-select-icon, md-select.md-sg-material-theme.md-hue-3[disabled] .md-select-value, md-select.md-sg-material-theme.md-hue-3[disabled] .md-select-value.md-select-placeholder {
  color: rgba(0, 0, 0, 0.38);
}

md-select.md-sg-material-theme.md-hue-3 .md-select-icon {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-optgroup {
  color: rgba(0, 0, 0, 0.54);
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option {
  color: rgba(0, 0, 0, 0.87);
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option[disabled] .md-text {
  color: rgba(0, 0, 0, 0.38);
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option[selected] {
  color: #9e9e9e;
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option[selected]:focus {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3 .md-ripple {
  color: #757575;
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3 .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3[selected] .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3[selected] .md-icon {
  background-color: rgba(255, 255, 255, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3[selected].md-focused .md-container:before {
  background-color: rgba(255, 255, 255, 0.26);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3[selected] .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3 .md-indeterminate[disabled] .md-container {
  color: rgba(0, 0, 0, 0.38);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3 md-option .md-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-focus-ring {
  background-color: rgba(238, 238, 238, 0.38);
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-track.md-track-fill {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-thumb:after {
  border-color: white;
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-sign {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-sign:after {
  border-top-color: white;
}

md-slider.md-sg-material-theme.md-hue-3.md-primary[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: white;
}

md-slider.md-sg-material-theme.md-hue-3.md-primary .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-3[disabled] .md-thumb:after {
  border-color: transparent;
}

md-slider-container[disabled] > :first-child:not(md-slider), md-slider-container[disabled] > :last-child:not(md-slider) {
  color: rgba(0, 0, 0, 0.38);
}

.md-subheader.md-sg-material-theme.md-hue-3.md-primary {
  color: white;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-primary .md-ink-ripple {
  color: white;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-primary .md-thumb {
  background-color: white;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-primary .md-bar {
  background-color: rgba(255, 255, 255, 0.5);
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-primary.md-focused .md-thumb:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-3 .md-paginator md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-3 .md-tab {
  color: rgba(0, 0, 0, 0.54);
}

md-tabs.md-sg-material-theme.md-hue-3 .md-tab[disabled], md-tabs.md-sg-material-theme.md-hue-3 .md-tab[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

md-tabs.md-sg-material-theme.md-hue-3 .md-tab.md-active, md-tabs.md-sg-material-theme.md-hue-3 .md-tab.md-active md-icon, md-tabs.md-sg-material-theme.md-hue-3 .md-tab.md-focused, md-tabs.md-sg-material-theme.md-hue-3 .md-tab.md-focused md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-3 .md-tab.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper {
  background-color: white;
}

md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-3.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper {
  background-color: white;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: whitesmoke;
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toast.md-sg-material-theme.md-hue-3 .md-toast-content .md-button.md-highlight.md-primary {
  color: white;
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar) {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar) md-icon {
  color: rgba(0, 0, 0, 0.87);
  fill: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar) .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.26);
  fill: rgba(0, 0, 0, 0.26);
}

md-autocomplete.md-sg-material-theme.md-accent md-input-container.md-input-focused .md-input {
  border-color: black;
}

md-autocomplete.md-sg-material-theme.md-accent md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-accent md-input-container.md-input-focused md-icon {
  color: black;
}

md-autocomplete.md-sg-material-theme.md-accent md-progress-linear .md-container {
  background-color: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-accent md-progress-linear .md-bar {
  background-color: black;
}

.md-button.md-sg-material-theme.md-fab md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-fab {
  background-color: black;
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-fab:not([disabled]) .md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-fab:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-accent {
  color: black;
}

.md-button.md-sg-material-theme.md-accent.md-fab, .md-button.md-sg-material-theme.md-accent.md-raised {
  color: rgba(255, 255, 255, 0.87);
  background-color: black;
}

.md-button.md-sg-material-theme.md-accent.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-accent.md-raised:not([disabled]) md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-accent.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-accent.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-accent.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-accent.md-raised:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-accent:not([disabled]) md-icon {
  color: black;
}

.md-button.md-sg-material-theme.md-accent[disabled], .md-button.md-sg-material-theme.md-fab[disabled], .md-button.md-sg-material-theme.md-raised[disabled], .md-button.md-sg-material-theme.md-warn[disabled], .md-button.md-sg-material-theme[disabled] {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}

.md-button.md-sg-material-theme.md-accent[disabled] md-icon, .md-button.md-sg-material-theme.md-fab[disabled] md-icon, .md-button.md-sg-material-theme.md-raised[disabled] md-icon, .md-button.md-sg-material-theme.md-warn[disabled] md-icon, .md-button.md-sg-material-theme[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

._md a.md-sg-material-theme:not(.md-button).md-accent {
  color: black;
}

._md a.md-sg-material-theme:not(.md-button).md-accent:hover {
  color: #616161;
}

md-checkbox.md-sg-material-theme .md-ripple {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-checked.md-focused .md-container:before {
  background-color: rgba(0, 0, 0, 0.26);
}

md-checkbox.md-sg-material-theme.md-checked .md-ink-ripple {
  color: rgba(0, 0, 0, 0.87);
}

md-checkbox.md-sg-material-theme.md-checked .md-icon {
  background-color: rgba(0, 0, 0, 0.87);
}

md-checkbox.md-sg-material-theme.md-checked .md-icon:after {
  border-color: rgba(255, 255, 255, 0.87);
}

.md-accent .md-sg-material-theme .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: black;
}

.md-accent .md-sg-material-theme .md-datepicker-open .md-datepicker-calendar-icon, .md-sg-material-theme .md-datepicker-open.md-accent .md-datepicker-calendar-icon {
  color: black;
}

md-icon.md-sg-material-theme.md-accent {
  color: black;
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-accent .md-input {
  border-color: black;
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-accent label, md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-accent md-icon {
  color: black;
}

md-list.md-sg-material-theme md-list-item > md-icon.md-highlight.md-accent {
  color: black;
}

md-nav-bar.md-sg-material-theme md-nav-ink-bar {
  color: black;
  background: black;
}

md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar {
  background-color: black;
}

md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-nav-bar.md-sg-material-theme.md-accent > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar {
  background-color: black;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-progress-circular.md-sg-material-theme.md-accent path {
  stroke: black;
}

md-radio-button.md-sg-material-theme .md-on {
  background-color: rgba(0, 0, 0, 0.87);
}

md-radio-button.md-sg-material-theme.md-checked .md-off {
  border-color: rgba(0, 0, 0, 0.87);
}

md-radio-button.md-sg-material-theme.md-checked .md-ink-ripple {
  color: rgba(0, 0, 0, 0.87);
}

md-radio-button.md-sg-material-theme .md-container .md-ripple {
  color: #616161;
}

md-radio-group.md-sg-material-theme .md-checked .md-ink-ripple {
  color: rgba(0, 0, 0, 0.26);
}

md-radio-group.md-sg-material-theme.md-focused:not(:empty) .md-checked .md-container:before {
  background-color: rgba(0, 0, 0, 0.26);
}

md-progress-linear.md-sg-material-theme.md-accent .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-accent .md-bar {
  background-color: black;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-accent .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-accent .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value {
  border-color: black;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value span {
  color: black;
}

md-select.md-sg-material-theme:not([disabled]):focus.md-accent .md-select-value {
  border-bottom-color: black;
}

md-select-menu.md-sg-material-theme md-content md-option[selected].md-accent {
  color: black;
}

md-select-menu.md-sg-material-theme md-content md-option[selected].md-accent:focus {
  color: #616161;
}

md-slider.md-sg-material-theme .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.2);
}

md-slider.md-sg-material-theme .md-track.md-track-fill {
  background-color: black;
}

md-slider.md-sg-material-theme .md-thumb:after {
  border-color: black;
  background-color: black;
}

md-slider.md-sg-material-theme .md-sign {
  background-color: black;
}

md-slider.md-sg-material-theme .md-sign:after {
  border-top-color: black;
}

md-slider.md-sg-material-theme[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: black;
}

md-slider.md-sg-material-theme .md-thumb-text {
  color: rgba(255, 255, 255, 0.87);
}

.md-subheader.md-sg-material-theme.md-accent {
  color: black;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]) .md-ink-ripple {
  color: black;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]) .md-thumb {
  background-color: black;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]) .md-bar {
  background-color: rgba(0, 0, 0, 0.5);
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-focused .md-thumb:before {
  background-color: rgba(0, 0, 0, 0.26);
}

md-tabs.md-sg-material-theme md-ink-bar {
  color: black;
  background: black;
}

md-tabs.md-sg-material-theme .md-tab .md-ripple-container {
  color: white;
}

md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper {
  background-color: black;
}

md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-tabs.md-sg-material-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper {
  background-color: black;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toast.md-sg-material-theme .md-toast-content .md-button.md-highlight {
  color: black;
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar).md-accent {
  background-color: black;
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar).md-accent .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar).md-accent md-icon {
  color: rgba(255, 255, 255, 0.87);
  fill: #074277;
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar).md-accent .md-button[disabled] md-icon {
  color: rgba(255, 255, 255, 0.26);
  fill: #074277;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-accent md-input-container.md-input-focused .md-input {
  border-color: white;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-accent md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-1.md-accent md-input-container.md-input-focused md-icon {
  color: white;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-accent md-progress-linear .md-container {
  background-color: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-accent md-progress-linear .md-bar {
  background-color: white;
}

.md-button.md-sg-material-theme.md-hue-1.md-fab md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-fab {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-fab:not([disabled]) .md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-fab:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent {
  color: white;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent.md-fab, .md-button.md-sg-material-theme.md-hue-1.md-accent.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-1.md-accent.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-accent.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-accent.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-1.md-accent.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-accent.md-raised:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent:not([disabled]) md-icon {
  color: white;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent[disabled], .md-button.md-sg-material-theme.md-hue-1.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-1.md-raised[disabled], .md-button.md-sg-material-theme.md-hue-1.md-warn[disabled], .md-button.md-sg-material-theme.md-hue-1[disabled] {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}

.md-button.md-sg-material-theme.md-hue-1.md-accent[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-1.md-fab[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-1.md-raised[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-1.md-warn[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-1[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-accent {
  color: white;
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-accent:hover {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-1 .md-ripple {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-1.md-checked.md-focused .md-container:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-1.md-checked .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1.md-checked .md-icon {
  background-color: rgba(255, 255, 255, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1.md-checked .md-icon:after {
  border-color: rgba(0, 0, 0, 0.87);
}

.md-accent .md-sg-material-theme.md-hue-1 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: white;
}

.md-accent .md-sg-material-theme.md-hue-1 .md-datepicker-open .md-datepicker-calendar-icon, .md-sg-material-theme.md-hue-1 .md-datepicker-open.md-accent .md-datepicker-calendar-icon {
  color: white;
}

md-icon.md-sg-material-theme.md-hue-1.md-accent {
  color: white;
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-accent .md-input {
  border-color: white;
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-accent label, md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-accent md-icon {
  color: white;
}

md-list.md-sg-material-theme.md-hue-1 md-list-item > md-icon.md-highlight.md-accent {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-1 md-nav-ink-bar {
  color: white;
  background: white;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar {
  background-color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-accent > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar {
  background-color: white;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-progress-circular.md-sg-material-theme.md-hue-1.md-accent path {
  stroke: white;
}

md-radio-button.md-sg-material-theme.md-hue-1 .md-on {
  background-color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1.md-checked .md-off {
  border-color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1.md-checked .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1 .md-container .md-ripple {
  color: #616161;
}

md-radio-group.md-sg-material-theme.md-hue-1 .md-checked .md-ink-ripple {
  color: rgba(255, 255, 255, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-1.md-focused:not(:empty) .md-checked .md-container:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-1.md-accent .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-1.md-accent .md-bar {
  background-color: white;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-accent .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-accent .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value {
  border-color: white;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value span {
  color: white;
}

md-select.md-sg-material-theme.md-hue-1:not([disabled]):focus.md-accent .md-select-value {
  border-bottom-color: white;
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option[selected].md-accent {
  color: white;
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option[selected].md-accent:focus {
  color: #616161;
}

md-slider.md-sg-material-theme.md-hue-1 .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.2);
}

md-slider.md-sg-material-theme.md-hue-1 .md-track.md-track-fill {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-1 .md-thumb:after {
  border-color: white;
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-1 .md-sign {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-1 .md-sign:after {
  border-top-color: white;
}

md-slider.md-sg-material-theme.md-hue-1[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: white;
}

md-slider.md-sg-material-theme.md-hue-1 .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

.md-subheader.md-sg-material-theme.md-hue-1.md-accent {
  color: white;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]) .md-ink-ripple {
  color: white;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]) .md-thumb {
  background-color: white;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]) .md-bar {
  background-color: rgba(255, 255, 255, 0.5);
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-focused .md-thumb:before {
  background-color: rgba(255, 255, 255, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-1 md-ink-bar {
  color: white;
  background: white;
}

md-tabs.md-sg-material-theme.md-hue-1 .md-tab .md-ripple-container {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper {
  background-color: white;
}

md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-1.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper {
  background-color: white;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toast.md-sg-material-theme.md-hue-1 .md-toast-content .md-button.md-highlight {
  color: white;
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar).md-accent {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar).md-accent .md-ink-ripple {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar).md-accent md-icon {
  color: rgba(0, 0, 0, 0.87);
  fill: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar).md-accent .md-button[disabled] md-icon {
  color: rgba(0, 0, 0, 0.26);
  fill: rgba(0, 0, 0, 0.26);
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-accent md-input-container.md-input-focused .md-input {
  border-color: #303030;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-accent md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-2.md-accent md-input-container.md-input-focused md-icon {
  color: #303030;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-accent md-progress-linear .md-container {
  background-color: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-accent md-progress-linear .md-bar {
  background-color: #303030;
}

.md-button.md-sg-material-theme.md-hue-2.md-fab md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-fab {
  background-color: #303030;
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-fab:not([disabled]) .md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-fab:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent {
  color: #303030;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent.md-fab, .md-button.md-sg-material-theme.md-hue-2.md-accent.md-raised {
  color: rgba(255, 255, 255, 0.87);
  background-color: #303030;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-2.md-accent.md-raised:not([disabled]) md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2.md-accent.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-accent.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-2.md-accent.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-accent.md-raised:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent:not([disabled]) md-icon {
  color: #303030;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent[disabled], .md-button.md-sg-material-theme.md-hue-2.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-2.md-raised[disabled], .md-button.md-sg-material-theme.md-hue-2.md-warn[disabled], .md-button.md-sg-material-theme.md-hue-2[disabled] {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}

.md-button.md-sg-material-theme.md-hue-2.md-accent[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-2.md-fab[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-2.md-raised[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-2.md-warn[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-2[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-accent {
  color: #303030;
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-accent:hover {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-2 .md-ripple {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-2.md-checked.md-focused .md-container:before {
  background-color: rgba(48, 48, 48, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-2.md-checked .md-ink-ripple {
  color: rgba(48, 48, 48, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2.md-checked .md-icon {
  background-color: rgba(48, 48, 48, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2.md-checked .md-icon:after {
  border-color: rgba(255, 255, 255, 0.87);
}

.md-accent .md-sg-material-theme.md-hue-2 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #303030;
}

.md-accent .md-sg-material-theme.md-hue-2 .md-datepicker-open .md-datepicker-calendar-icon, .md-sg-material-theme.md-hue-2 .md-datepicker-open.md-accent .md-datepicker-calendar-icon {
  color: #303030;
}

md-icon.md-sg-material-theme.md-hue-2.md-accent {
  color: #303030;
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-accent .md-input {
  border-color: #303030;
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-accent label, md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-accent md-icon {
  color: #303030;
}

md-list.md-sg-material-theme.md-hue-2 md-list-item > md-icon.md-highlight.md-accent {
  color: #303030;
}

md-nav-bar.md-sg-material-theme.md-hue-2 md-nav-ink-bar {
  color: #303030;
  background: #303030;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar {
  background-color: #303030;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-accent > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar {
  background-color: #303030;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-progress-circular.md-sg-material-theme.md-hue-2.md-accent path {
  stroke: #303030;
}

md-radio-button.md-sg-material-theme.md-hue-2 .md-on {
  background-color: rgba(48, 48, 48, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2.md-checked .md-off {
  border-color: rgba(48, 48, 48, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2.md-checked .md-ink-ripple {
  color: rgba(48, 48, 48, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2 .md-container .md-ripple {
  color: #616161;
}

md-radio-group.md-sg-material-theme.md-hue-2 .md-checked .md-ink-ripple {
  color: rgba(48, 48, 48, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-2.md-focused:not(:empty) .md-checked .md-container:before {
  background-color: rgba(48, 48, 48, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-2.md-accent .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-2.md-accent .md-bar {
  background-color: #303030;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-accent .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-accent .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value {
  border-color: #303030;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value span {
  color: #303030;
}

md-select.md-sg-material-theme.md-hue-2:not([disabled]):focus.md-accent .md-select-value {
  border-bottom-color: #303030;
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option[selected].md-accent {
  color: #303030;
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option[selected].md-accent:focus {
  color: #616161;
}

md-slider.md-sg-material-theme.md-hue-2 .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.2);
}

md-slider.md-sg-material-theme.md-hue-2 .md-track.md-track-fill {
  background-color: #303030;
}

md-slider.md-sg-material-theme.md-hue-2 .md-thumb:after {
  border-color: #303030;
  background-color: #303030;
}

md-slider.md-sg-material-theme.md-hue-2 .md-sign {
  background-color: #303030;
}

md-slider.md-sg-material-theme.md-hue-2 .md-sign:after {
  border-top-color: #303030;
}

md-slider.md-sg-material-theme.md-hue-2[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #303030;
}

md-slider.md-sg-material-theme.md-hue-2 .md-thumb-text {
  color: rgba(255, 255, 255, 0.87);
}

.md-subheader.md-sg-material-theme.md-hue-2.md-accent {
  color: #303030;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]) .md-ink-ripple {
  color: #303030;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]) .md-thumb {
  background-color: #303030;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]) .md-bar {
  background-color: rgba(48, 48, 48, 0.5);
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-focused .md-thumb:before {
  background-color: rgba(48, 48, 48, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-2 md-ink-bar {
  color: #303030;
  background: #303030;
}

md-tabs.md-sg-material-theme.md-hue-2 .md-tab .md-ripple-container {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper {
  background-color: #303030;
}

md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-2.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper {
  background-color: #303030;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toast.md-sg-material-theme.md-hue-2 .md-toast-content .md-button.md-highlight {
  color: #303030;
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar).md-accent {
  background-color: #303030;
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar).md-accent .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar).md-accent md-icon {
  color: rgba(255, 255, 255, 0.87);
  fill: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar).md-accent .md-button[disabled] md-icon {
  color: rgba(255, 255, 255, 0.26);
  fill: rgba(255, 255, 255, 0.26);
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-accent md-input-container.md-input-focused .md-input {
  border-color: #616161;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-accent md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-3.md-accent md-input-container.md-input-focused md-icon {
  color: #616161;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-accent md-progress-linear .md-container {
  background-color: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-accent md-progress-linear .md-bar {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-fab md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-fab {
  background-color: #616161;
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-fab:not([disabled]) .md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-fab:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent {
  color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent.md-fab, .md-button.md-sg-material-theme.md-hue-3.md-accent.md-raised {
  color: rgba(255, 255, 255, 0.87);
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-3.md-accent.md-raised:not([disabled]) md-icon {
  color: rgba(255, 255, 255, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-accent.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-accent.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-3.md-accent.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-accent.md-raised:not([disabled]):hover {
  background-color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent:not([disabled]) md-icon {
  color: #616161;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent[disabled], .md-button.md-sg-material-theme.md-hue-3.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-3.md-raised[disabled], .md-button.md-sg-material-theme.md-hue-3.md-warn[disabled], .md-button.md-sg-material-theme.md-hue-3[disabled] {
  color: rgba(0, 0, 0, 0.38);
  cursor: default;
}

.md-button.md-sg-material-theme.md-hue-3.md-accent[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-3.md-fab[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-3.md-raised[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-3.md-warn[disabled] md-icon, .md-button.md-sg-material-theme.md-hue-3[disabled] md-icon {
  color: rgba(0, 0, 0, 0.38);
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-accent {
  color: #616161;
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-accent:hover {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-3 .md-ripple {
  color: #616161;
}

md-checkbox.md-sg-material-theme.md-hue-3.md-checked.md-focused .md-container:before {
  background-color: rgba(97, 97, 97, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-3.md-checked .md-ink-ripple {
  color: rgba(97, 97, 97, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3.md-checked .md-icon {
  background-color: rgba(97, 97, 97, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3.md-checked .md-icon:after {
  border-color: rgba(255, 255, 255, 0.87);
}

.md-accent .md-sg-material-theme.md-hue-3 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #616161;
}

.md-accent .md-sg-material-theme.md-hue-3 .md-datepicker-open .md-datepicker-calendar-icon, .md-sg-material-theme.md-hue-3 .md-datepicker-open.md-accent .md-datepicker-calendar-icon {
  color: #616161;
}

md-icon.md-sg-material-theme.md-hue-3.md-accent {
  color: #616161;
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-accent .md-input {
  border-color: #616161;
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-accent label, md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-accent md-icon {
  color: #616161;
}

md-list.md-sg-material-theme.md-hue-3 md-list-item > md-icon.md-highlight.md-accent {
  color: #616161;
}

md-nav-bar.md-sg-material-theme.md-hue-3 md-nav-ink-bar {
  color: #616161;
  background: #616161;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar {
  background-color: #616161;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-accent > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar {
  background-color: #616161;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button {
  color: white;
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar md-nav-ink-bar {
  color: #757575;
  background: #757575;
}

md-progress-circular.md-sg-material-theme.md-hue-3.md-accent path {
  stroke: #616161;
}

md-radio-button.md-sg-material-theme.md-hue-3 .md-on {
  background-color: rgba(97, 97, 97, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3.md-checked .md-off {
  border-color: rgba(97, 97, 97, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3.md-checked .md-ink-ripple {
  color: rgba(97, 97, 97, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3 .md-container .md-ripple {
  color: #616161;
}

md-radio-group.md-sg-material-theme.md-hue-3 .md-checked .md-ink-ripple {
  color: rgba(97, 97, 97, 0.26);
}

md-radio-group.md-sg-material-theme.md-hue-3.md-focused:not(:empty) .md-checked .md-container:before {
  background-color: rgba(97, 97, 97, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-3.md-accent .md-container {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-3.md-accent .md-bar {
  background-color: #616161;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-accent .md-bar1 {
  background-color: whitesmoke;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-accent .md-dashed:before {
  background: radial-gradient(whitesmoke 0, whitesmoke 16%, transparent 42%);
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value {
  border-color: #616161;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-accent .md-select-value span {
  color: #616161;
}

md-select.md-sg-material-theme.md-hue-3:not([disabled]):focus.md-accent .md-select-value {
  border-bottom-color: #616161;
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option[selected].md-accent {
  color: #616161;
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option[selected].md-accent:focus {
  color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3 .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.2);
}

md-slider.md-sg-material-theme.md-hue-3 .md-track.md-track-fill {
  background-color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3 .md-thumb:after {
  border-color: #616161;
  background-color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3 .md-sign {
  background-color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3 .md-sign:after {
  border-top-color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #616161;
}

md-slider.md-sg-material-theme.md-hue-3 .md-thumb-text {
  color: rgba(255, 255, 255, 0.87);
}

.md-subheader.md-sg-material-theme.md-hue-3.md-accent {
  color: #616161;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]) .md-ink-ripple {
  color: #616161;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]) .md-thumb {
  background-color: #616161;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]) .md-bar {
  background-color: rgba(97, 97, 97, 0.5);
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-focused .md-thumb:before {
  background-color: rgba(97, 97, 97, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-3 md-ink-bar {
  color: #616161;
  background: #616161;
}

md-tabs.md-sg-material-theme.md-hue-3 .md-tab .md-ripple-container {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper {
  background-color: #616161;
}

md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-tabs.md-sg-material-theme.md-hue-3.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper {
  background-color: #616161;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: white;
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-accent > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar {
  color: #757575;
  background: #757575;
}

md-toast.md-sg-material-theme.md-hue-3 .md-toast-content .md-button.md-highlight {
  color: #616161;
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar).md-accent {
  background-color: #616161;
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar).md-accent .md-ink-ripple {
  color: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar).md-accent md-icon {
  color: rgba(255, 255, 255, 0.87);
  fill: rgba(255, 255, 255, 0.87);
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar).md-accent .md-button[disabled] md-icon {
  color: rgba(255, 255, 255, 0.26);
  fill: rgba(255, 255, 255, 0.26);
}

md-autocomplete.md-sg-material-theme.md-warn md-input-container.md-input-focused .md-input {
  border-color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-warn md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-warn md-input-container.md-input-focused md-icon {
  color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-warn md-progress-linear .md-container {
  background-color: #ffccbc;
}

md-autocomplete.md-sg-material-theme.md-warn md-progress-linear .md-bar {
  background-color: #ff5722;
}

.md-button.md-sg-material-theme.md-warn {
  color: #ff5722;
}

.md-button.md-sg-material-theme.md-warn.md-fab, .md-button.md-sg-material-theme.md-warn.md-raised {
  color: white;
  background-color: #ff5722;
}

.md-button.md-sg-material-theme.md-warn.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-warn.md-raised:not([disabled]) md-icon {
  color: white;
}

.md-button.md-sg-material-theme.md-warn.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-warn.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-warn.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-warn.md-raised:not([disabled]):hover {
  background-color: #f4511e;
}

.md-button.md-sg-material-theme.md-warn:not([disabled]) md-icon {
  color: #ff5722;
}

._md a.md-sg-material-theme:not(.md-button).md-warn {
  color: #ff5722;
}

._md a.md-sg-material-theme:not(.md-button).md-warn:hover {
  color: #e64a19;
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn .md-ripple {
  color: #f4511e;
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-ink-ripple {
  color: rgba(255, 87, 34, 0.87);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-icon {
  background-color: rgba(255, 87, 34, 0.87);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn.md-checked.md-focused:not([disabled]) .md-container:before {
  background-color: rgba(255, 87, 34, 0.26);
}

md-checkbox.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-icon:after {
  border-color: #eeeeee;
}

.md-sg-material-theme .md-datepicker-input-container.md-datepicker-invalid, .md-warn .md-sg-material-theme .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #dd2c00;
}

.md-sg-material-theme .md-datepicker-open.md-warn .md-datepicker-calendar-icon, .md-warn .md-sg-material-theme .md-datepicker-open .md-datepicker-calendar-icon {
  color: #dd2c00;
}

md-icon.md-sg-material-theme.md-warn {
  color: #ff5722;
}

md-input-container.md-sg-material-theme label.md-required:after {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme .md-input-message-animation, md-input-container.md-sg-material-theme .md-input-messages-animation {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-warn .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-warn label, md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused.md-warn md-icon {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-input-invalid .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-input-invalid .md-char-counter, md-input-container.md-sg-material-theme.md-input-invalid .md-input-message-animation, md-input-container.md-sg-material-theme.md-input-invalid label {
  color: #dd2c00;
}

md-nav-bar.md-sg-material-theme.md-warn > .md-nav-bar {
  background-color: #ff5722;
}

md-nav-bar.md-sg-material-theme.md-warn > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-nav-bar.md-sg-material-theme.md-warn > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme > .md-nav-bar {
  background-color: #ff5722;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-warn > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: white;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-progress-circular.md-sg-material-theme.md-warn path {
  stroke: #ff5722;
}

md-radio-button.md-sg-material-theme:not([disabled]).md-warn .md-on, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn .md-on, md-radio-group.md-sg-material-theme:not([disabled]).md-warn .md-on, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn .md-on {
  background-color: rgba(255, 87, 34, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]).md-warn .md-checked .md-off, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]).md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn .md-checked .md-off {
  border-color: rgba(255, 87, 34, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn .md-checked .md-ink-ripple {
  color: rgba(255, 87, 34, 0.87);
}

md-radio-button.md-sg-material-theme:not([disabled]).md-warn .md-container .md-ripple, md-radio-button.md-sg-material-theme:not([disabled]) .md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme:not([disabled]).md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme:not([disabled]) .md-warn .md-container .md-ripple {
  color: #f4511e;
}

md-radio-group.md-sg-material-theme.md-focused:not(:empty) .md-checked.md-warn .md-container:before, md-radio-group.md-sg-material-theme.md-focused:not(:empty).md-warn .md-checked .md-container:before {
  background-color: rgba(255, 87, 34, 0.26);
}

md-progress-linear.md-sg-material-theme.md-warn .md-container {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-warn .md-bar {
  background-color: #ff5722;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-warn .md-bar1 {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme[md-mode=buffer].md-warn .md-dashed:before {
  background: radial-gradient(#ffccbc 0, #ffccbc 16%, transparent 42%);
}

md-input-container md-select.md-sg-material-theme .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value {
  border-color: #dd2c00;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value span {
  color: #dd2c00;
}

md-select.md-sg-material-theme .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-select.md-sg-material-theme.ng-invalid.ng-touched .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-select.md-sg-material-theme:not([disabled]):focus.md-warn .md-select-value {
  border-bottom-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn .md-focus-ring {
  background-color: rgba(255, 171, 145, 0.38);
}

md-slider.md-sg-material-theme.md-warn .md-track.md-track-fill {
  background-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn .md-thumb:after {
  border-color: #ff5722;
  background-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn .md-sign {
  background-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn .md-sign:after {
  border-top-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #ff5722;
}

md-slider.md-sg-material-theme.md-warn .md-thumb-text {
  color: white;
}

.md-subheader.md-sg-material-theme.md-warn {
  color: #ff5722;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-warn .md-ink-ripple {
  color: #ff5722;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-warn .md-thumb {
  background-color: #ff5722;
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-warn .md-bar {
  background-color: rgba(255, 87, 34, 0.5);
}

md-switch.md-sg-material-theme.md-checked:not([disabled]).md-warn.md-focused .md-thumb:before {
  background-color: rgba(255, 87, 34, 0.26);
}

md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper {
  background-color: #ff5722;
}

md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper {
  background-color: #ff5722;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: white;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toast.md-sg-material-theme .md-toast-content .md-button.md-highlight.md-warn {
  color: #ff5722;
}

md-toolbar.md-sg-material-theme:not(.md-menu-toolbar).md-warn {
  background-color: #ff5722;
  color: white;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-warn md-input-container.md-input-focused .md-input {
  border-color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-warn md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-1.md-warn md-input-container.md-input-focused md-icon {
  color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-warn md-progress-linear .md-container {
  background-color: #ffccbc;
}

md-autocomplete.md-sg-material-theme.md-hue-1.md-warn md-progress-linear .md-bar {
  background-color: #ff8a65;
}

.md-button.md-sg-material-theme.md-hue-1.md-warn {
  color: #ff8a65;
}

.md-button.md-sg-material-theme.md-hue-1.md-warn.md-fab, .md-button.md-sg-material-theme.md-hue-1.md-warn.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: #ff8a65;
}

.md-button.md-sg-material-theme.md-hue-1.md-warn.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-1.md-warn.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1.md-warn.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-warn.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-1.md-warn.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1.md-warn.md-raised:not([disabled]):hover {
  background-color: #f4511e;
}

.md-button.md-sg-material-theme.md-hue-1.md-warn:not([disabled]) md-icon {
  color: #ff8a65;
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-warn {
  color: #ff8a65;
}

._md a.md-sg-material-theme.md-hue-1:not(.md-button).md-warn:hover {
  color: #e64a19;
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-ripple {
  color: #f4511e;
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-ink-ripple {
  color: rgba(255, 138, 101, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-icon {
  background-color: rgba(255, 138, 101, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked.md-focused:not([disabled]) .md-container:before {
  background-color: rgba(255, 138, 101, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-icon:after {
  border-color: #eeeeee;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input-container.md-datepicker-invalid, .md-warn .md-sg-material-theme.md-hue-1 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #dd2c00;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-open.md-warn .md-datepicker-calendar-icon, .md-warn .md-sg-material-theme.md-hue-1 .md-datepicker-open .md-datepicker-calendar-icon {
  color: #dd2c00;
}

md-icon.md-sg-material-theme.md-hue-1.md-warn {
  color: #ff8a65;
}

md-input-container.md-sg-material-theme.md-hue-1 label.md-required:after {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-1 .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-1 .md-input-messages-animation {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-warn .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-warn label, md-input-container.md-sg-material-theme.md-hue-1:not(.md-input-invalid).md-input-focused.md-warn md-icon {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-1.md-input-invalid .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-1.md-input-invalid .md-char-counter, md-input-container.md-sg-material-theme.md-hue-1.md-input-invalid .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-1.md-input-invalid label {
  color: #dd2c00;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-warn > .md-nav-bar {
  background-color: #ff8a65;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-warn > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-warn > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-1.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-1.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar {
  background-color: #ff8a65;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-1 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-1.md-warn path {
  stroke: #ff8a65;
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-on, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-on {
  background-color: rgba(255, 138, 101, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-checked .md-off {
  border-color: rgba(255, 138, 101, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-checked .md-ink-ripple {
  color: rgba(255, 138, 101, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]).md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-1:not([disabled]) .md-warn .md-container .md-ripple {
  color: #f4511e;
}

md-radio-group.md-sg-material-theme.md-hue-1.md-focused:not(:empty) .md-checked.md-warn .md-container:before, md-radio-group.md-sg-material-theme.md-hue-1.md-focused:not(:empty).md-warn .md-checked .md-container:before {
  background-color: rgba(255, 138, 101, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-1.md-warn .md-container {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-1.md-warn .md-bar {
  background-color: #ff8a65;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-warn .md-bar1 {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-1[md-mode=buffer].md-warn .md-dashed:before {
  background: radial-gradient(#ffccbc 0, #ffccbc 16%, transparent 42%);
}

md-input-container md-select.md-sg-material-theme.md-hue-1 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-1 .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value {
  border-color: #dd2c00;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value span {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-1 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-1.ng-invalid.ng-touched .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-select.md-sg-material-theme.md-hue-1:not([disabled]):focus.md-warn .md-select-value {
  border-bottom-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-focus-ring {
  background-color: rgba(255, 171, 145, 0.38);
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-track.md-track-fill {
  background-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-thumb:after {
  border-color: #ff8a65;
  background-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-sign {
  background-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-sign:after {
  border-top-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #ff8a65;
}

md-slider.md-sg-material-theme.md-hue-1.md-warn .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

.md-subheader.md-sg-material-theme.md-hue-1.md-warn {
  color: #ff8a65;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-warn .md-ink-ripple {
  color: #ff8a65;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-warn .md-thumb {
  background-color: #ff8a65;
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-warn .md-bar {
  background-color: rgba(255, 138, 101, 0.5);
}

md-switch.md-sg-material-theme.md-hue-1.md-checked:not([disabled]).md-warn.md-focused .md-thumb:before {
  background-color: rgba(255, 138, 101, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper {
  background-color: #ff8a65;
}

md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-1.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper {
  background-color: #ff8a65;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-1 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toast.md-sg-material-theme.md-hue-1 .md-toast-content .md-button.md-highlight.md-warn {
  color: #ff8a65;
}

md-toolbar.md-sg-material-theme.md-hue-1:not(.md-menu-toolbar).md-warn {
  background-color: #ff8a65;
  color: rgba(0, 0, 0, 0.87);
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-warn md-input-container.md-input-focused .md-input {
  border-color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-warn md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-2.md-warn md-input-container.md-input-focused md-icon {
  color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-warn md-progress-linear .md-container {
  background-color: #ffccbc;
}

md-autocomplete.md-sg-material-theme.md-hue-2.md-warn md-progress-linear .md-bar {
  background-color: #d84315;
}

.md-button.md-sg-material-theme.md-hue-2.md-warn {
  color: #d84315;
}

.md-button.md-sg-material-theme.md-hue-2.md-warn.md-fab, .md-button.md-sg-material-theme.md-hue-2.md-warn.md-raised {
  color: white;
  background-color: #d84315;
}

.md-button.md-sg-material-theme.md-hue-2.md-warn.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-2.md-warn.md-raised:not([disabled]) md-icon {
  color: white;
}

.md-button.md-sg-material-theme.md-hue-2.md-warn.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-warn.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-2.md-warn.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2.md-warn.md-raised:not([disabled]):hover {
  background-color: #f4511e;
}

.md-button.md-sg-material-theme.md-hue-2.md-warn:not([disabled]) md-icon {
  color: #d84315;
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-warn {
  color: #d84315;
}

._md a.md-sg-material-theme.md-hue-2:not(.md-button).md-warn:hover {
  color: #e64a19;
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-ripple {
  color: #f4511e;
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-ink-ripple {
  color: rgba(216, 67, 21, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-icon {
  background-color: rgba(216, 67, 21, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked.md-focused:not([disabled]) .md-container:before {
  background-color: rgba(216, 67, 21, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-icon:after {
  border-color: #eeeeee;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input-container.md-datepicker-invalid, .md-warn .md-sg-material-theme.md-hue-2 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #dd2c00;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-open.md-warn .md-datepicker-calendar-icon, .md-warn .md-sg-material-theme.md-hue-2 .md-datepicker-open .md-datepicker-calendar-icon {
  color: #dd2c00;
}

md-icon.md-sg-material-theme.md-hue-2.md-warn {
  color: #d84315;
}

md-input-container.md-sg-material-theme.md-hue-2 label.md-required:after {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-2 .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-2 .md-input-messages-animation {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-warn .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-warn label, md-input-container.md-sg-material-theme.md-hue-2:not(.md-input-invalid).md-input-focused.md-warn md-icon {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-2.md-input-invalid .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-2.md-input-invalid .md-char-counter, md-input-container.md-sg-material-theme.md-hue-2.md-input-invalid .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-2.md-input-invalid label {
  color: #dd2c00;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-warn > .md-nav-bar {
  background-color: #d84315;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-warn > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-warn > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-2.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: white;
}

md-nav-bar.md-sg-material-theme.md-hue-2.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar {
  background-color: #d84315;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: white;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-2 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-2.md-warn path {
  stroke: #d84315;
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-on, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-on {
  background-color: rgba(216, 67, 21, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-checked .md-off {
  border-color: rgba(216, 67, 21, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-checked .md-ink-ripple {
  color: rgba(216, 67, 21, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]).md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-2:not([disabled]) .md-warn .md-container .md-ripple {
  color: #f4511e;
}

md-radio-group.md-sg-material-theme.md-hue-2.md-focused:not(:empty) .md-checked.md-warn .md-container:before, md-radio-group.md-sg-material-theme.md-hue-2.md-focused:not(:empty).md-warn .md-checked .md-container:before {
  background-color: rgba(216, 67, 21, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-2.md-warn .md-container {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-2.md-warn .md-bar {
  background-color: #d84315;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-warn .md-bar1 {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-2[md-mode=buffer].md-warn .md-dashed:before {
  background: radial-gradient(#ffccbc 0, #ffccbc 16%, transparent 42%);
}

md-input-container md-select.md-sg-material-theme.md-hue-2 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-2 .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value {
  border-color: #dd2c00;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value span {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-2 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-2.ng-invalid.ng-touched .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-select.md-sg-material-theme.md-hue-2:not([disabled]):focus.md-warn .md-select-value {
  border-bottom-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-focus-ring {
  background-color: rgba(255, 171, 145, 0.38);
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-track.md-track-fill {
  background-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-thumb:after {
  border-color: #d84315;
  background-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-sign {
  background-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-sign:after {
  border-top-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #d84315;
}

md-slider.md-sg-material-theme.md-hue-2.md-warn .md-thumb-text {
  color: white;
}

.md-subheader.md-sg-material-theme.md-hue-2.md-warn {
  color: #d84315;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-warn .md-ink-ripple {
  color: #d84315;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-warn .md-thumb {
  background-color: #d84315;
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-warn .md-bar {
  background-color: rgba(216, 67, 21, 0.5);
}

md-switch.md-sg-material-theme.md-hue-2.md-checked:not([disabled]).md-warn.md-focused .md-thumb:before {
  background-color: rgba(216, 67, 21, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper {
  background-color: #d84315;
}

md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: white;
}

md-tabs.md-sg-material-theme.md-hue-2.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper {
  background-color: #d84315;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: white;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-2 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(255, 255, 255, 0.1);
}

md-toast.md-sg-material-theme.md-hue-2 .md-toast-content .md-button.md-highlight.md-warn {
  color: #d84315;
}

md-toolbar.md-sg-material-theme.md-hue-2:not(.md-menu-toolbar).md-warn {
  background-color: #d84315;
  color: white;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-warn md-input-container.md-input-focused .md-input {
  border-color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-warn md-input-container.md-input-focused label, md-autocomplete.md-sg-material-theme.md-hue-3.md-warn md-input-container.md-input-focused md-icon {
  color: #dd2c00;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-warn md-progress-linear .md-container {
  background-color: #ffccbc;
}

md-autocomplete.md-sg-material-theme.md-hue-3.md-warn md-progress-linear .md-bar {
  background-color: #ff9e80;
}

.md-button.md-sg-material-theme.md-hue-3.md-warn {
  color: #ff9e80;
}

.md-button.md-sg-material-theme.md-hue-3.md-warn.md-fab, .md-button.md-sg-material-theme.md-hue-3.md-warn.md-raised {
  color: rgba(0, 0, 0, 0.87);
  background-color: #ff9e80;
}

.md-button.md-sg-material-theme.md-hue-3.md-warn.md-fab:not([disabled]) md-icon, .md-button.md-sg-material-theme.md-hue-3.md-warn.md-raised:not([disabled]) md-icon {
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3.md-warn.md-fab:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-warn.md-fab:not([disabled]):hover, .md-button.md-sg-material-theme.md-hue-3.md-warn.md-raised:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3.md-warn.md-raised:not([disabled]):hover {
  background-color: #f4511e;
}

.md-button.md-sg-material-theme.md-hue-3.md-warn:not([disabled]) md-icon {
  color: #ff9e80;
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-warn {
  color: #ff9e80;
}

._md a.md-sg-material-theme.md-hue-3:not(.md-button).md-warn:hover {
  color: #e64a19;
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-ripple {
  color: #f4511e;
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-ink-ripple {
  color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-ink-ripple {
  color: rgba(255, 158, 128, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn:not(.md-checked) .md-icon {
  border-color: rgba(0, 0, 0, 0.54);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-icon {
  background-color: rgba(255, 158, 128, 0.87);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked.md-focused:not([disabled]) .md-container:before {
  background-color: rgba(255, 158, 128, 0.26);
}

md-checkbox.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-icon:after {
  border-color: #eeeeee;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input-container.md-datepicker-invalid, .md-warn .md-sg-material-theme.md-hue-3 .md-datepicker-input-container.md-datepicker-focused {
  border-bottom-color: #dd2c00;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-open.md-warn .md-datepicker-calendar-icon, .md-warn .md-sg-material-theme.md-hue-3 .md-datepicker-open .md-datepicker-calendar-icon {
  color: #dd2c00;
}

md-icon.md-sg-material-theme.md-hue-3.md-warn {
  color: #ff9e80;
}

md-input-container.md-sg-material-theme.md-hue-3 label.md-required:after {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-3 .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-3 .md-input-messages-animation {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-warn .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-warn label, md-input-container.md-sg-material-theme.md-hue-3:not(.md-input-invalid).md-input-focused.md-warn md-icon {
  color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-3.md-input-invalid .md-input {
  border-color: #dd2c00;
}

md-input-container.md-sg-material-theme.md-hue-3.md-input-invalid .md-char-counter, md-input-container.md-sg-material-theme.md-hue-3.md-input-invalid .md-input-message-animation, md-input-container.md-sg-material-theme.md-hue-3.md-input-invalid label {
  color: #dd2c00;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-warn > .md-nav-bar {
  background-color: #ff9e80;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-warn > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-warn > .md-nav-bar .md-button._md-nav-button.md-active, md-nav-bar.md-sg-material-theme.md-hue-3.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-nav-bar.md-sg-material-theme.md-hue-3.md-warn > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar {
  background-color: #ff9e80;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button {
  color: #ffccbc;
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-active, md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-warn > md-nav-bar.md-sg-material-theme.md-hue-3 > .md-nav-bar .md-button._md-nav-button.md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-progress-circular.md-sg-material-theme.md-hue-3.md-warn path {
  stroke: #ff9e80;
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-on, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-on, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-on {
  background-color: rgba(255, 158, 128, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn.md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-checked .md-off, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn.md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-checked .md-off, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-checked .md-off {
  border-color: rgba(255, 158, 128, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn.md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-checked .md-ink-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-checked .md-ink-ripple {
  color: rgba(255, 158, 128, 0.87);
}

md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-container .md-ripple, md-radio-button.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]).md-warn .md-container .md-ripple, md-radio-group.md-sg-material-theme.md-hue-3:not([disabled]) .md-warn .md-container .md-ripple {
  color: #f4511e;
}

md-radio-group.md-sg-material-theme.md-hue-3.md-focused:not(:empty) .md-checked.md-warn .md-container:before, md-radio-group.md-sg-material-theme.md-hue-3.md-focused:not(:empty).md-warn .md-checked .md-container:before {
  background-color: rgba(255, 158, 128, 0.26);
}

md-progress-linear.md-sg-material-theme.md-hue-3.md-warn .md-container {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-3.md-warn .md-bar {
  background-color: #ff9e80;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-warn .md-bar1 {
  background-color: #ffccbc;
}

md-progress-linear.md-sg-material-theme.md-hue-3[md-mode=buffer].md-warn .md-dashed:before {
  background: radial-gradient(#ffccbc 0, #ffccbc 16%, transparent 42%);
}

md-input-container md-select.md-sg-material-theme.md-hue-3 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-input-container.md-input-invalid md-select.md-sg-material-theme.md-hue-3 .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value {
  border-color: #dd2c00;
}

md-input-container:not(.md-input-invalid).md-input-focused.md-warn .md-select-value span {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-3 .md-select-value span:first-child:after {
  color: #dd2c00;
}

md-select.md-sg-material-theme.md-hue-3.ng-invalid.ng-touched .md-select-value {
  color: #dd2c00 !important;
  border-bottom-color: #dd2c00 !important;
}

md-select.md-sg-material-theme.md-hue-3:not([disabled]):focus.md-warn .md-select-value {
  border-bottom-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-focus-ring {
  background-color: rgba(255, 171, 145, 0.38);
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-track.md-track-fill {
  background-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-thumb:after {
  border-color: #ff9e80;
  background-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-sign {
  background-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-sign:after {
  border-top-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn[md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #ff9e80;
}

md-slider.md-sg-material-theme.md-hue-3.md-warn .md-thumb-text {
  color: rgba(0, 0, 0, 0.87);
}

.md-subheader.md-sg-material-theme.md-hue-3.md-warn {
  color: #ff9e80;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-warn .md-ink-ripple {
  color: #ff9e80;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-warn .md-thumb {
  background-color: #ff9e80;
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-warn .md-bar {
  background-color: rgba(255, 158, 128, 0.5);
}

md-switch.md-sg-material-theme.md-hue-3.md-checked:not([disabled]).md-warn.md-focused .md-thumb:before {
  background-color: rgba(255, 158, 128, 0.26);
}

md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper {
  background-color: #ff9e80;
}

md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-tabs.md-sg-material-theme.md-hue-3.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper {
  background-color: #ff9e80;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon {
  color: #ffccbc;
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon {
  color: rgba(0, 0, 0, 0.87);
}

md-toolbar.md-warn > md-tabs.md-sg-material-theme.md-hue-3 > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused {
  background: rgba(0, 0, 0, 0.1);
}

md-toast.md-sg-material-theme.md-hue-3 .md-toast-content .md-button.md-highlight.md-warn {
  color: #ff9e80;
}

md-toolbar.md-sg-material-theme.md-hue-3:not(.md-menu-toolbar).md-warn {
  background-color: #ff9e80;
  color: rgba(0, 0, 0, 0.87);
}

md-autocomplete.md-sg-material-theme {
  background: white;
}

md-autocomplete.md-sg-material-theme[disabled]:not([md-floating-label]) {
  background: whitesmoke;
}

md-autocomplete.md-sg-material-theme button md-icon path {
  fill: #757575;
}

md-autocomplete.md-sg-material-theme button:after {
  background: rgba(117, 117, 117, 0.3);
}

.md-autocomplete-suggestions-container.md-sg-material-theme {
  background: white;
}

.md-autocomplete-suggestions-container.md-sg-material-theme li.selected, .md-autocomplete-suggestions-container.md-sg-material-theme li:hover {
  background: rgba(158, 158, 158, 0.18);
}

md-backdrop {
  background-color: rgba(33, 33, 33, 0);
}

md-backdrop.md-opaque.md-sg-material-theme {
  background-color: #212121;
}

md-bottom-sheet.md-sg-material-theme {
  background-color: #fafafa;
  border-top-color: #e0e0e0;
}

md-bottom-sheet.md-sg-material-theme .md-subheader {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme:not([disabled]).md-focused, .md-button.md-sg-material-theme:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.md-button.md-sg-material-theme:not([disabled]).md-icon-button:hover {
  background-color: transparent;
}

.md-button.md-sg-material-theme.md-raised {
  color: #212121;
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-raised:not([disabled]) md-icon {
  color: #212121;
}

.md-button.md-sg-material-theme.md-raised:not([disabled]):hover {
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-raised:not([disabled]).md-focused {
  background-color: #eeeeee;
}

.md-button.md-sg-material-theme.md-fab[disabled], .md-button.md-sg-material-theme.md-raised[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}

.md-button.md-sg-material-theme[disabled] {
  background-color: transparent;
}

md-card.md-sg-material-theme {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  border-radius: 2px;
}

md-card.md-sg-material-theme md-card-header md-card-avatar md-icon {
  color: #fafafa;
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme[disabled].md-checked .md-icon {
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme[disabled].md-checked .md-icon:after {
  border-color: #eeeeee;
}

md-chips.md-sg-material-theme md-chip {
  background: #e0e0e0;
  color: #424242;
}

md-chips.md-sg-material-theme md-chip md-icon {
  color: #616161;
}

md-chips.md-sg-material-theme md-chip._md-chip-editing {
  background: transparent;
  color: #424242;
}

md-chips.md-sg-material-theme md-chip-remove .md-button md-icon path {
  fill: #9e9e9e;
}

.md-contact-suggestion span.md-contact-email {
  color: #bdbdbd;
}

md-content.md-sg-material-theme {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
}

.md-sg-material-theme .md-calendar {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme .md-calendar tr:last-child td {
  border-bottom-color: whitesmoke;
}

.md-sg-material-theme .md-calendar-day-header {
  background: rgba(158, 158, 158, 0.32);
  color: rgba(0, 0, 0, 0.87);
}

.md-calendar-date.md-focus .md-sg-material-theme .md-calendar-date-selection-indicator, .md-sg-material-theme .md-calendar-date-selection-indicator:hover {
  background: rgba(158, 158, 158, 0.32);
}

.md-sg-material-theme .md-datepicker-calendar-pane {
  border-color: white;
}

.md-sg-material-theme .md-datepicker-calendar {
  background: white;
}

.md-sg-material-theme .md-datepicker-input-mask-opaque {
  box-shadow: 0 0 0 9999px white;
}

.md-sg-material-theme .md-datepicker-open .md-datepicker-input-container {
  background: white;
}

md-dialog.md-sg-material-theme {
  border-radius: 4px;
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

[disabled] md-input-container.md-sg-material-theme .md-input, md-input-container.md-sg-material-theme .md-input[disabled] {
  border-bottom-color: transparent;
  color: rgba(0, 0, 0, 0.38);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-list.md-sg-material-theme .md-proxy-focus.md-focused div.md-no-style {
  background-color: whitesmoke;
}

md-list.md-sg-material-theme md-list-item .md-avatar-icon {
  background-color: rgba(0, 0, 0, 0.38);
  color: #fafafa;
}

md-menu-bar.md-sg-material-theme md-menu.md-open > button, md-menu-bar.md-sg-material-theme md-menu > button:focus {
  outline: none;
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-open:not(.md-keyboard-mode) md-menu:hover > button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme:not(.md-keyboard-mode):not(.md-open) md-menu button:focus, md-menu-bar.md-sg-material-theme:not(.md-keyboard-mode):not(.md-open) md-menu button:hover {
  background: transparent;
}

md-menu-content.md-sg-material-theme .md-menu.md-open > .md-button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-toolbar.md-sg-material-theme.md-menu-toolbar {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme {
  background-color: white;
}

md-menu-content.md-sg-material-theme md-menu-divider {
  background-color: rgba(0, 0, 0, 0.12);
}

md-nav-bar.md-sg-material-theme .md-nav-bar {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

._md-panel-backdrop.md-sg-material-theme {
  background-color: #212121;
}

md-select.md-sg-material-theme[disabled] .md-select-value {
  border-bottom-color: transparent;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-select-menu.md-sg-material-theme md-content {
  background-color: white;
}

md-select-menu.md-sg-material-theme md-content md-option:not([disabled]):focus, md-select-menu.md-sg-material-theme md-content md-option:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.18);
}

.md-checkbox-enabled.md-sg-material-theme[selected] .md-ripple {
  color: #757575;
}

md-sidenav.md-sg-material-theme, md-sidenav.md-sg-material-theme md-content {
  background-color: white;
}

md-slider.md-sg-material-theme .md-track {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme .md-track-ticks {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme .md-disabled-thumb {
  border-color: #fafafa;
  background-color: #fafafa;
}

md-slider.md-sg-material-theme.md-min .md-thumb:after {
  background-color: #fafafa;
  border-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-min .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-min[md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-min[md-discrete] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-min[md-discrete] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-min[md-discrete][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme[disabled]:not(.md-min) .md-thumb:after, md-slider.md-sg-material-theme[disabled][md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: transparent;
}

md-slider.md-sg-material-theme[disabled][readonly] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme[disabled][readonly] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme[disabled][readonly][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme[disabled][readonly] .md-disabled-thumb {
  border-color: transparent;
  background-color: transparent;
}

.md-subheader.md-sg-material-theme {
  color: rgba(0, 0, 0, 0.54);
  background-color: #fafafa;
}

md-switch.md-sg-material-theme .md-ink-ripple {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme .md-thumb {
  background-color: #fafafa;
}

md-switch.md-sg-material-theme .md-bar {
  background-color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-focused:not(.md-checked) .md-thumb:before, md-switch.md-sg-material-theme.md-focused[disabled] .md-thumb:before {
  background-color: rgba(0, 0, 0, 0.12);
}

md-switch.md-sg-material-theme[disabled] .md-thumb {
  background-color: #bdbdbd;
}

md-switch.md-sg-material-theme[disabled] .md-bar {
  background-color: rgba(0, 0, 0, 0.12);
}

md-tabs.md-sg-material-theme md-tabs-wrapper {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

md-toast.md-sg-material-theme .md-toast-content {
  background-color: #323232;
  color: #fafafa;
}

md-toast.md-sg-material-theme .md-toast-content .md-button {
  color: #fafafa;
}

.md-panel.md-tooltip.md-sg-material-theme {
  color: rgba(255, 255, 255, 0.87);
  background-color: #616161;
}

body.md-sg-material-theme, html.md-sg-material-theme {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
}

md-autocomplete.md-sg-material-theme.md-hue-1 {
  background: white;
}

md-autocomplete.md-sg-material-theme.md-hue-1[disabled]:not([md-floating-label]) {
  background: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-1 button md-icon path {
  fill: #757575;
}

md-autocomplete.md-sg-material-theme.md-hue-1 button:after {
  background: rgba(117, 117, 117, 0.3);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-1 {
  background: white;
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-1 li.selected, .md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-1 li:hover {
  background: rgba(158, 158, 158, 0.18);
}

md-backdrop {
  background-color: rgba(33, 33, 33, 0);
}

md-backdrop.md-opaque.md-sg-material-theme.md-hue-1 {
  background-color: #212121;
}

md-bottom-sheet.md-sg-material-theme.md-hue-1 {
  background-color: white;
  border-top-color: #e0e0e0;
}

md-bottom-sheet.md-sg-material-theme.md-hue-1 .md-subheader {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-1:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-1:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.md-button.md-sg-material-theme.md-hue-1:not([disabled]).md-icon-button:hover {
  background-color: transparent;
}

.md-button.md-sg-material-theme.md-hue-1.md-raised {
  color: #212121;
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-1.md-raised:not([disabled]) md-icon {
  color: #212121;
}

.md-button.md-sg-material-theme.md-hue-1.md-raised:not([disabled]):hover {
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-1.md-raised:not([disabled]).md-focused {
  background-color: #eeeeee;
}

.md-button.md-sg-material-theme.md-hue-1.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-1.md-raised[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}

.md-button.md-sg-material-theme.md-hue-1[disabled] {
  background-color: transparent;
}

md-card.md-sg-material-theme.md-hue-1 {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  border-radius: 2px;
}

md-card.md-sg-material-theme.md-hue-1 md-card-header md-card-avatar md-icon {
  color: white;
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-1.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-1[disabled].md-checked .md-icon {
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-1[disabled].md-checked .md-icon:after {
  border-color: #eeeeee;
}

md-chips.md-sg-material-theme.md-hue-1 md-chip {
  background: #e0e0e0;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-1 md-chip md-icon {
  color: #616161;
}

md-chips.md-sg-material-theme.md-hue-1 md-chip._md-chip-editing {
  background: transparent;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-1 md-chip-remove .md-button md-icon path {
  fill: #9e9e9e;
}

.md-contact-suggestion span.md-contact-email {
  color: #bdbdbd;
}

md-content.md-sg-material-theme.md-hue-1 {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
}

.md-sg-material-theme.md-hue-1 .md-calendar {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-1 .md-calendar tr:last-child td {
  border-bottom-color: whitesmoke;
}

.md-sg-material-theme.md-hue-1 .md-calendar-day-header {
  background: rgba(158, 158, 158, 0.32);
  color: rgba(0, 0, 0, 0.87);
}

.md-calendar-date.md-focus .md-sg-material-theme.md-hue-1 .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-1 .md-calendar-date-selection-indicator:hover {
  background: rgba(158, 158, 158, 0.32);
}

.md-sg-material-theme.md-hue-1 .md-datepicker-calendar-pane {
  border-color: white;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-calendar {
  background: white;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-input-mask-opaque {
  box-shadow: 0 0 0 9999px white;
}

.md-sg-material-theme.md-hue-1 .md-datepicker-open .md-datepicker-input-container {
  background: white;
}

md-dialog.md-sg-material-theme.md-hue-1 {
  border-radius: 4px;
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

[disabled] md-input-container.md-sg-material-theme.md-hue-1 .md-input, md-input-container.md-sg-material-theme.md-hue-1 .md-input[disabled] {
  border-bottom-color: transparent;
  color: rgba(0, 0, 0, 0.38);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-list.md-sg-material-theme.md-hue-1 .md-proxy-focus.md-focused div.md-no-style {
  background-color: whitesmoke;
}

md-list.md-sg-material-theme.md-hue-1 md-list-item .md-avatar-icon {
  background-color: rgba(0, 0, 0, 0.38);
  color: white;
}

md-menu-bar.md-sg-material-theme.md-hue-1 md-menu.md-open > button, md-menu-bar.md-sg-material-theme.md-hue-1 md-menu > button:focus {
  outline: none;
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-1.md-open:not(.md-keyboard-mode) md-menu:hover > button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-1:not(.md-keyboard-mode):not(.md-open) md-menu button:focus, md-menu-bar.md-sg-material-theme.md-hue-1:not(.md-keyboard-mode):not(.md-open) md-menu button:hover {
  background: transparent;
}

md-menu-content.md-sg-material-theme.md-hue-1 .md-menu.md-open > .md-button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-toolbar.md-sg-material-theme.md-hue-1.md-menu-toolbar {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-1 {
  background-color: white;
}

md-menu-content.md-sg-material-theme.md-hue-1 md-menu-divider {
  background-color: rgba(0, 0, 0, 0.12);
}

md-nav-bar.md-sg-material-theme.md-hue-1 .md-nav-bar {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

._md-panel-backdrop.md-sg-material-theme.md-hue-1 {
  background-color: #212121;
}

md-select.md-sg-material-theme.md-hue-1[disabled] .md-select-value {
  border-bottom-color: transparent;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content {
  background-color: white;
}

md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option:not([disabled]):focus, md-select-menu.md-sg-material-theme.md-hue-1 md-content md-option:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.18);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-1[selected] .md-ripple {
  color: #757575;
}

md-sidenav.md-sg-material-theme.md-hue-1, md-sidenav.md-sg-material-theme.md-hue-1 md-content {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-1 .md-track {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-1 .md-track-ticks {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-1 .md-disabled-thumb {
  border-color: white;
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-1.md-min .md-thumb:after {
  background-color: white;
  border-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-1.md-min .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-1.md-min[md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-1.md-min[md-discrete] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1.md-min[md-discrete] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1.md-min[md-discrete][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1[disabled]:not(.md-min) .md-thumb:after, md-slider.md-sg-material-theme.md-hue-1[disabled][md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-1[disabled][readonly] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1[disabled][readonly] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1[disabled][readonly][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-1[disabled][readonly] .md-disabled-thumb {
  border-color: transparent;
  background-color: transparent;
}

.md-subheader.md-sg-material-theme.md-hue-1 {
  color: rgba(0, 0, 0, 0.54);
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-1 .md-ink-ripple {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-1 .md-thumb {
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-1 .md-bar {
  background-color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-1.md-focused:not(.md-checked) .md-thumb:before, md-switch.md-sg-material-theme.md-hue-1.md-focused[disabled] .md-thumb:before {
  background-color: rgba(0, 0, 0, 0.12);
}

md-switch.md-sg-material-theme.md-hue-1[disabled] .md-thumb {
  background-color: #bdbdbd;
}

md-switch.md-sg-material-theme.md-hue-1[disabled] .md-bar {
  background-color: rgba(0, 0, 0, 0.12);
}

md-tabs.md-sg-material-theme.md-hue-1 md-tabs-wrapper {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

md-toast.md-sg-material-theme.md-hue-1 .md-toast-content {
  background-color: #323232;
  color: #fafafa;
}

md-toast.md-sg-material-theme.md-hue-1 .md-toast-content .md-button {
  color: #fafafa;
}

.md-panel.md-tooltip.md-sg-material-theme.md-hue-1 {
  color: rgba(255, 255, 255, 0.87);
  background-color: #616161;
}

body.md-sg-material-theme.md-hue-1, html.md-sg-material-theme.md-hue-1 {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}

md-autocomplete.md-sg-material-theme.md-hue-2 {
  background: white;
}

md-autocomplete.md-sg-material-theme.md-hue-2[disabled]:not([md-floating-label]) {
  background: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-2 button md-icon path {
  fill: #757575;
}

md-autocomplete.md-sg-material-theme.md-hue-2 button:after {
  background: rgba(117, 117, 117, 0.3);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-2 {
  background: white;
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-2 li.selected, .md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-2 li:hover {
  background: rgba(158, 158, 158, 0.18);
}

md-backdrop {
  background-color: rgba(33, 33, 33, 0);
}

md-backdrop.md-opaque.md-sg-material-theme.md-hue-2 {
  background-color: #212121;
}

md-bottom-sheet.md-sg-material-theme.md-hue-2 {
  background-color: whitesmoke;
  border-top-color: #e0e0e0;
}

md-bottom-sheet.md-sg-material-theme.md-hue-2 .md-subheader {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-2:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-2:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.md-button.md-sg-material-theme.md-hue-2:not([disabled]).md-icon-button:hover {
  background-color: transparent;
}

.md-button.md-sg-material-theme.md-hue-2.md-raised {
  color: #212121;
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-2.md-raised:not([disabled]) md-icon {
  color: #212121;
}

.md-button.md-sg-material-theme.md-hue-2.md-raised:not([disabled]):hover {
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-2.md-raised:not([disabled]).md-focused {
  background-color: #eeeeee;
}

.md-button.md-sg-material-theme.md-hue-2.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-2.md-raised[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}

.md-button.md-sg-material-theme.md-hue-2[disabled] {
  background-color: transparent;
}

md-card.md-sg-material-theme.md-hue-2 {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  border-radius: 2px;
}

md-card.md-sg-material-theme.md-hue-2 md-card-header md-card-avatar md-icon {
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-2.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-2[disabled].md-checked .md-icon {
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-2[disabled].md-checked .md-icon:after {
  border-color: #eeeeee;
}

md-chips.md-sg-material-theme.md-hue-2 md-chip {
  background: #e0e0e0;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-2 md-chip md-icon {
  color: #616161;
}

md-chips.md-sg-material-theme.md-hue-2 md-chip._md-chip-editing {
  background: transparent;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-2 md-chip-remove .md-button md-icon path {
  fill: #9e9e9e;
}

.md-contact-suggestion span.md-contact-email {
  color: #bdbdbd;
}

md-content.md-sg-material-theme.md-hue-2 {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
}

.md-sg-material-theme.md-hue-2 .md-calendar {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-2 .md-calendar tr:last-child td {
  border-bottom-color: whitesmoke;
}

.md-sg-material-theme.md-hue-2 .md-calendar-day-header {
  background: rgba(158, 158, 158, 0.32);
  color: rgba(0, 0, 0, 0.87);
}

.md-calendar-date.md-focus .md-sg-material-theme.md-hue-2 .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-2 .md-calendar-date-selection-indicator:hover {
  background: rgba(158, 158, 158, 0.32);
}

.md-sg-material-theme.md-hue-2 .md-datepicker-calendar-pane {
  border-color: white;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-calendar {
  background: white;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-input-mask-opaque {
  box-shadow: 0 0 0 9999px white;
}

.md-sg-material-theme.md-hue-2 .md-datepicker-open .md-datepicker-input-container {
  background: white;
}

md-dialog.md-sg-material-theme.md-hue-2 {
  border-radius: 4px;
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

[disabled] md-input-container.md-sg-material-theme.md-hue-2 .md-input, md-input-container.md-sg-material-theme.md-hue-2 .md-input[disabled] {
  border-bottom-color: transparent;
  color: rgba(0, 0, 0, 0.38);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-list.md-sg-material-theme.md-hue-2 .md-proxy-focus.md-focused div.md-no-style {
  background-color: whitesmoke;
}

md-list.md-sg-material-theme.md-hue-2 md-list-item .md-avatar-icon {
  background-color: rgba(0, 0, 0, 0.38);
  color: whitesmoke;
}

md-menu-bar.md-sg-material-theme.md-hue-2 md-menu.md-open > button, md-menu-bar.md-sg-material-theme.md-hue-2 md-menu > button:focus {
  outline: none;
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-2.md-open:not(.md-keyboard-mode) md-menu:hover > button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-2:not(.md-keyboard-mode):not(.md-open) md-menu button:focus, md-menu-bar.md-sg-material-theme.md-hue-2:not(.md-keyboard-mode):not(.md-open) md-menu button:hover {
  background: transparent;
}

md-menu-content.md-sg-material-theme.md-hue-2 .md-menu.md-open > .md-button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-toolbar.md-sg-material-theme.md-hue-2.md-menu-toolbar {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-2 {
  background-color: white;
}

md-menu-content.md-sg-material-theme.md-hue-2 md-menu-divider {
  background-color: rgba(0, 0, 0, 0.12);
}

md-nav-bar.md-sg-material-theme.md-hue-2 .md-nav-bar {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

._md-panel-backdrop.md-sg-material-theme.md-hue-2 {
  background-color: #212121;
}

md-select.md-sg-material-theme.md-hue-2[disabled] .md-select-value {
  border-bottom-color: transparent;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content {
  background-color: white;
}

md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option:not([disabled]):focus, md-select-menu.md-sg-material-theme.md-hue-2 md-content md-option:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.18);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-2[selected] .md-ripple {
  color: #757575;
}

md-sidenav.md-sg-material-theme.md-hue-2, md-sidenav.md-sg-material-theme.md-hue-2 md-content {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-2 .md-track {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-2 .md-track-ticks {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-2 .md-disabled-thumb {
  border-color: whitesmoke;
  background-color: whitesmoke;
}

md-slider.md-sg-material-theme.md-hue-2.md-min .md-thumb:after {
  background-color: whitesmoke;
  border-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-2.md-min .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-2.md-min[md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-2.md-min[md-discrete] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2.md-min[md-discrete] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2.md-min[md-discrete][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2[disabled]:not(.md-min) .md-thumb:after, md-slider.md-sg-material-theme.md-hue-2[disabled][md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-2[disabled][readonly] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2[disabled][readonly] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2[disabled][readonly][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-2[disabled][readonly] .md-disabled-thumb {
  border-color: transparent;
  background-color: transparent;
}

.md-subheader.md-sg-material-theme.md-hue-2 {
  color: rgba(0, 0, 0, 0.54);
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-2 .md-ink-ripple {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-2 .md-thumb {
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-2 .md-bar {
  background-color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-2.md-focused:not(.md-checked) .md-thumb:before, md-switch.md-sg-material-theme.md-hue-2.md-focused[disabled] .md-thumb:before {
  background-color: rgba(0, 0, 0, 0.12);
}

md-switch.md-sg-material-theme.md-hue-2[disabled] .md-thumb {
  background-color: #bdbdbd;
}

md-switch.md-sg-material-theme.md-hue-2[disabled] .md-bar {
  background-color: rgba(0, 0, 0, 0.12);
}

md-tabs.md-sg-material-theme.md-hue-2 md-tabs-wrapper {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

md-toast.md-sg-material-theme.md-hue-2 .md-toast-content {
  background-color: #323232;
  color: #fafafa;
}

md-toast.md-sg-material-theme.md-hue-2 .md-toast-content .md-button {
  color: #fafafa;
}

.md-panel.md-tooltip.md-sg-material-theme.md-hue-2 {
  color: rgba(255, 255, 255, 0.87);
  background-color: #616161;
}

body.md-sg-material-theme.md-hue-2, html.md-sg-material-theme.md-hue-2 {
  color: rgba(0, 0, 0, 0.87);
  background-color: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-3 {
  background: white;
}

md-autocomplete.md-sg-material-theme.md-hue-3[disabled]:not([md-floating-label]) {
  background: whitesmoke;
}

md-autocomplete.md-sg-material-theme.md-hue-3 button md-icon path {
  fill: #757575;
}

md-autocomplete.md-sg-material-theme.md-hue-3 button:after {
  background: rgba(117, 117, 117, 0.3);
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-3 {
  background: white;
}

.md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-3 li.selected, .md-autocomplete-suggestions-container.md-sg-material-theme.md-hue-3 li:hover {
  background: rgba(158, 158, 158, 0.18);
}

md-backdrop {
  background-color: rgba(33, 33, 33, 0);
}

md-backdrop.md-opaque.md-sg-material-theme.md-hue-3 {
  background-color: #212121;
}

md-bottom-sheet.md-sg-material-theme.md-hue-3 {
  background-color: #e0e0e0;
  border-top-color: #e0e0e0;
}

md-bottom-sheet.md-sg-material-theme.md-hue-3 .md-subheader {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}

.md-button.md-sg-material-theme.md-hue-3:not([disabled]).md-focused, .md-button.md-sg-material-theme.md-hue-3:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.md-button.md-sg-material-theme.md-hue-3:not([disabled]).md-icon-button:hover {
  background-color: transparent;
}

.md-button.md-sg-material-theme.md-hue-3.md-raised {
  color: #212121;
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-3.md-raised:not([disabled]) md-icon {
  color: #212121;
}

.md-button.md-sg-material-theme.md-hue-3.md-raised:not([disabled]):hover {
  background-color: #fafafa;
}

.md-button.md-sg-material-theme.md-hue-3.md-raised:not([disabled]).md-focused {
  background-color: #eeeeee;
}

.md-button.md-sg-material-theme.md-hue-3.md-fab[disabled], .md-button.md-sg-material-theme.md-hue-3.md-raised[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}

.md-button.md-sg-material-theme.md-hue-3[disabled] {
  background-color: transparent;
}

md-card.md-sg-material-theme.md-hue-3 {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
  border-radius: 2px;
}

md-card.md-sg-material-theme.md-hue-3 md-card-header md-card-avatar md-icon {
  color: #e0e0e0;
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-3.md-checked .md-ripple {
  color: #757575;
}

md-checkbox.md-sg-material-theme.md-hue-3[disabled].md-checked .md-icon {
  background-color: rgba(0, 0, 0, 0.38);
}

md-checkbox.md-sg-material-theme.md-hue-3[disabled].md-checked .md-icon:after {
  border-color: #eeeeee;
}

md-chips.md-sg-material-theme.md-hue-3 md-chip {
  background: #e0e0e0;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-3 md-chip md-icon {
  color: #616161;
}

md-chips.md-sg-material-theme.md-hue-3 md-chip._md-chip-editing {
  background: transparent;
  color: #424242;
}

md-chips.md-sg-material-theme.md-hue-3 md-chip-remove .md-button md-icon path {
  fill: #9e9e9e;
}

.md-contact-suggestion span.md-contact-email {
  color: #bdbdbd;
}

md-content.md-sg-material-theme.md-hue-3 {
  color: rgba(0, 0, 0, 0.87);
  background-color: #fafafa;
}

.md-sg-material-theme.md-hue-3 .md-calendar {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}

.md-sg-material-theme.md-hue-3 .md-calendar tr:last-child td {
  border-bottom-color: whitesmoke;
}

.md-sg-material-theme.md-hue-3 .md-calendar-day-header {
  background: rgba(158, 158, 158, 0.32);
  color: rgba(0, 0, 0, 0.87);
}

.md-calendar-date.md-focus .md-sg-material-theme.md-hue-3 .md-calendar-date-selection-indicator, .md-sg-material-theme.md-hue-3 .md-calendar-date-selection-indicator:hover {
  background: rgba(158, 158, 158, 0.32);
}

.md-sg-material-theme.md-hue-3 .md-datepicker-calendar-pane {
  border-color: white;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-calendar {
  background: white;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-input-mask-opaque {
  box-shadow: 0 0 0 9999px white;
}

.md-sg-material-theme.md-hue-3 .md-datepicker-open .md-datepicker-input-container {
  background: white;
}

md-dialog.md-sg-material-theme.md-hue-3 {
  border-radius: 4px;
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

[disabled] md-input-container.md-sg-material-theme.md-hue-3 .md-input, md-input-container.md-sg-material-theme.md-hue-3 .md-input[disabled] {
  border-bottom-color: transparent;
  color: rgba(0, 0, 0, 0.38);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-list.md-sg-material-theme.md-hue-3 .md-proxy-focus.md-focused div.md-no-style {
  background-color: whitesmoke;
}

md-list.md-sg-material-theme.md-hue-3 md-list-item .md-avatar-icon {
  background-color: rgba(0, 0, 0, 0.38);
  color: #e0e0e0;
}

md-menu-bar.md-sg-material-theme.md-hue-3 md-menu.md-open > button, md-menu-bar.md-sg-material-theme.md-hue-3 md-menu > button:focus {
  outline: none;
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-3.md-open:not(.md-keyboard-mode) md-menu:hover > button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-menu-bar.md-sg-material-theme.md-hue-3:not(.md-keyboard-mode):not(.md-open) md-menu button:focus, md-menu-bar.md-sg-material-theme.md-hue-3:not(.md-keyboard-mode):not(.md-open) md-menu button:hover {
  background: transparent;
}

md-menu-content.md-sg-material-theme.md-hue-3 .md-menu.md-open > .md-button {
  background-color: rgba(158, 158, 158, 0.18);
}

md-toolbar.md-sg-material-theme.md-hue-3.md-menu-toolbar {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}

md-menu-content.md-sg-material-theme.md-hue-3 {
  background-color: white;
}

md-menu-content.md-sg-material-theme.md-hue-3 md-menu-divider {
  background-color: rgba(0, 0, 0, 0.12);
}

md-nav-bar.md-sg-material-theme.md-hue-3 .md-nav-bar {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

._md-panel-backdrop.md-sg-material-theme.md-hue-3 {
  background-color: #212121;
}

md-select.md-sg-material-theme.md-hue-3[disabled] .md-select-value {
  border-bottom-color: transparent;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0, rgba(0, 0, 0, 0.38) 33%, transparent 0);
  background-image: -ms-linear-gradient(left, transparent 0, rgba(0, 0, 0, 0.38) 100%);
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content {
  background-color: white;
}

md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option:not([disabled]):focus, md-select-menu.md-sg-material-theme.md-hue-3 md-content md-option:not([disabled]):hover {
  background-color: rgba(158, 158, 158, 0.18);
}

.md-checkbox-enabled.md-sg-material-theme.md-hue-3[selected] .md-ripple {
  color: #757575;
}

md-sidenav.md-sg-material-theme.md-hue-3, md-sidenav.md-sg-material-theme.md-hue-3 md-content {
  background-color: white;
}

md-slider.md-sg-material-theme.md-hue-3 .md-track {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-3 .md-track-ticks {
  color: rgba(0, 0, 0, 0.87);
}

md-slider.md-sg-material-theme.md-hue-3 .md-disabled-thumb {
  border-color: #e0e0e0;
  background-color: #e0e0e0;
}

md-slider.md-sg-material-theme.md-hue-3.md-min .md-thumb:after {
  background-color: #e0e0e0;
  border-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-3.md-min .md-focus-ring {
  background-color: rgba(0, 0, 0, 0.38);
}

md-slider.md-sg-material-theme.md-hue-3.md-min[md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-3.md-min[md-discrete] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3.md-min[md-discrete] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3.md-min[md-discrete][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3[disabled]:not(.md-min) .md-thumb:after, md-slider.md-sg-material-theme.md-hue-3[disabled][md-discrete] .md-thumb:after {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: transparent;
}

md-slider.md-sg-material-theme.md-hue-3[disabled][readonly] .md-sign {
  background-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3[disabled][readonly] .md-sign:after {
  border-top-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3[disabled][readonly][md-vertical] .md-sign:after {
  border-top-color: transparent;
  border-left-color: #bdbdbd;
}

md-slider.md-sg-material-theme.md-hue-3[disabled][readonly] .md-disabled-thumb {
  border-color: transparent;
  background-color: transparent;
}

.md-subheader.md-sg-material-theme.md-hue-3 {
  color: rgba(0, 0, 0, 0.54);
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-3 .md-ink-ripple {
  color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-3 .md-thumb {
  background-color: #fafafa;
}

md-switch.md-sg-material-theme.md-hue-3 .md-bar {
  background-color: #9e9e9e;
}

md-switch.md-sg-material-theme.md-hue-3.md-focused:not(.md-checked) .md-thumb:before, md-switch.md-sg-material-theme.md-hue-3.md-focused[disabled] .md-thumb:before {
  background-color: rgba(0, 0, 0, 0.12);
}

md-switch.md-sg-material-theme.md-hue-3[disabled] .md-thumb {
  background-color: #bdbdbd;
}

md-switch.md-sg-material-theme.md-hue-3[disabled] .md-bar {
  background-color: rgba(0, 0, 0, 0.12);
}

md-tabs.md-sg-material-theme.md-hue-3 md-tabs-wrapper {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

md-toast.md-sg-material-theme.md-hue-3 .md-toast-content {
  background-color: #323232;
  color: #fafafa;
}

md-toast.md-sg-material-theme.md-hue-3 .md-toast-content .md-button {
  color: #fafafa;
}

.md-panel.md-tooltip.md-sg-material-theme.md-hue-3 {
  color: rgba(255, 255, 255, 0.87);
  background-color: #616161;
}

body.md-sg-material-theme.md-hue-3, html.md-sg-material-theme.md-hue-3 {
  color: rgba(0, 0, 0, 0.87);
  background-color: #e0e0e0;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
button.md-button.md-sg-material-theme:not(.md-icon-button) {
  background-color: #061C33;
  border-radius: 2px;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 1rem;
  line-height: 1.32757;
  font-family: 'figtreeBold', helvetica, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  vertical-align: top;
  -webkit-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  -moz-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  -o-transition: background-color 0.24s ease-out, color 0.24s ease-out;
  transition: background-color 0.24s ease-out, color 0.24s ease-out;
}

button.md-button.md-sg-material-theme:not(.md-icon-button):hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #000000;
}

button.md-button.md-sg-material-theme:not(.md-icon-button).black-btn {
  background-color: #000;
}

button.md-button.md-sg-material-theme:not(.md-icon-button).black-btn:hover, button.md-button.md-sg-material-theme:not(.md-icon-button).black-btn.md-focused {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #000;
}

.softball button.md-button.md-sg-material-theme:not(.md-icon-button) {
  background-color: #262626;
}

.softball button.md-button.md-sg-material-theme:not(.md-icon-button):hover {
  background-color: #000000;
}

button.md-button.md-sg-material-theme.md-secondary {
  background-color: #000;
  color: #fff;
  max-width: 250px;
  margin: 20px auto 10px;
  padding: 3px 6px;
}

button.md-button.md-sg-material-theme.md-secondary:hover {
  background-color: #54565A;
}

md-input-container button.inline-button {
  float: none;
  padding: 0;
  position: absolute;
  right: 0;
}

button.link {
  font-size: 1rem;
  line-height: 1.32757;
  background-color: transparent;
  border: none;
  text-transform: capitalize;
}

button.link:hover {
  background-color: transparent;
  text-decoration: underline;
}

button[cf-video] {
  border: none;
  padding: 0;
}

button[cf-video]:hover {
  background-color: transparent;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
md-calendar.md-sg-material-theme {
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.41473;
}

@media screen and (max-width: 680px) {
  md-calendar.md-sg-material-theme {
    margin-top: 25px;
  }
  md-calendar.md-sg-material-theme th {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 33px;
  }
  md-calendar.md-sg-material-theme .md-calendar-date {
    padding-left: 0 !important;
    width: 33px;
  }
  md-calendar.md-sg-material-theme .md-calendar-date .md-calendar-date-selection-indicator {
    width: 33px;
  }
}

md-calendar.md-sg-material-theme .md-calendar-day-header {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  background: #fff;
  color: #000;
}

md-calendar.md-sg-material-theme tbody {
  box-sizing: border-box;
}

md-calendar.md-sg-material-theme .md-virtual-repeat-scroll {
  width: 100% !important;
}

md-calendar.md-sg-material-theme .md-calendar-scroll-container {
  box-shadow: none;
}

md-calendar.md-sg-material-theme .md-calendar-date {
  color: #828282;
}

md-calendar.md-sg-material-theme .md-calendar-date.md-calendar-date-today .md-calendar-date-selection-indicator {
  border: none;
}

md-calendar.md-sg-material-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
md-calendar.md-sg-material-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
  background: #D54400;
  border-radius: 100%;
  color: #fff;
}

@media screen and (max-width: 680px) {
  md-calendar.md-sg-material-theme .md-calendar-date.md-calendar-selected-date .md-calendar-date-selection-indicator,
md-calendar.md-sg-material-theme .md-calendar-date.md-focus.md-calendar-selected-date .md-calendar-date-selection-indicator {
    height: 35px;
    line-height: 35px;
  }
}

md-checkbox.md-sg-material-theme {
  margin-bottom: 0;
}

md-checkbox.md-sg-material-theme.md-checked .md-container .md-icon {
  background-color: #006EB3;
  color: white;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
body .fourpay-required-note {
  margin: 5px 0;
  font-size: 0.75rem;
  line-height: 1.54756;
  color: #54565A;
}

body .form-container {
  margin-bottom: 25px;
}

body .form-container form div[layout=row] md-input-container {
  max-width: 200px;
}

body .form-container form .require-note {
  font-size: 0.75rem;
  line-height: 1.54756;
  color: #54565A;
  margin-bottom: 5px;
}

body .form-container form md-input-container.md-sg-material-theme {
  display: block;
  margin-bottom: 20px;
  max-width: 400px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  body .form-container form md-input-container.md-sg-material-theme {
    max-width: 100%;
  }
}

body .form-container form md-input-container.md-sg-material-theme.expand {
  max-width: 100%;
}

body .form-container form md-input-container.md-sg-material-theme.expand > label, body .form-container form md-input-container.md-sg-material-theme.expand > span {
  display: inline-block;
  vertical-align: middle;
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  color: #54565A;
}

body .form-container form md-input-container.md-sg-material-theme.expand > label[ng-message], body .form-container form md-input-container.md-sg-material-theme.expand > span[ng-message] {
  margin-left: 30px;
}

body .form-container form md-input-container.md-sg-material-theme.expand > label {
  margin-left: 20px;
  text-transform: none;
  top: 2px;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-invalid label {
  color: #F0283C;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-invalid label.md-required:after {
  color: #F0283C;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-invalid md-select {
  border-color: #F0283C;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-invalid div[ng-messages] {
  bottom: -15px;
  left: 8px;
  position: absolute;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-focused input, body .form-container form md-input-container.md-sg-material-theme.md-input-focused md-select {
  border-bottom-color: #D54400;
  outline: none;
}

body .form-container form md-input-container.md-sg-material-theme.md-input-focused input.md-sg-material-theme:not([disabled]):focus .md-select-value, body .form-container form md-input-container.md-sg-material-theme.md-input-focused md-select.md-sg-material-theme:not([disabled]):focus .md-select-value {
  border-bottom-color: #D54400;
}

body .form-container form md-input-container.md-sg-material-theme label {
  font-family: "figtreeBoldCondensed", helvetica, arial, sans-serif;
  opacity: 1;
  filter: alpha(opacity=100);
  font-size: 0.6875rem;
  line-height: 1.66773;
  color: #54565A;
  height: 30px;
  left: 8px;
  position: absolute;
  top: 5px;
  text-transform: uppercase;
  transform: none;
  z-index: 2;
}

body .form-container form md-input-container.md-sg-material-theme label.md-required:after {
  color: #54565A;
}

body .form-container form md-input-container.md-sg-material-theme input {
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  border-color: rgba(0, 0, 0, 0.12);
  border-width: 0 0 2px 0;
  color: #54565A;
  padding: 12px 8px 0;
  width: 100%;
}

body .form-container form md-input-container.md-sg-material-theme md-select md-select-value span {
  padding: 12px 8px 0;
}

body .form-container form md-input-container.md-sg-material-theme md-checkbox .md-label,
body .form-container form md-input-container.md-sg-material-theme md-radio-group md-radio-button .md-label {
  font-family: "figtree", helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.32757;
  color: #54565A;
}

body .form-container form md-input-container.md-sg-material-theme md-checkbox[disabled] .md-label,
body .form-container form md-input-container.md-sg-material-theme md-radio-group md-radio-button[disabled] .md-label {
  text-decoration: line-through;
}

body .form-container form md-input-container.md-sg-material-theme .md-errors-spacer {
  margin-left: 0;
  width: 100%;
}

body .form-container form md-input-container.md-sg-material-theme .md-errors-spacer .md-char-counter {
  font-family: "figtree", helvetica, arial, sans-serif;
  color: #54565A;
  padding-right: 10px;
}

body .form-container form md-input-container.md-sg-material-theme:not(.md-input-invalid).md-input-focused .md-input {
  border-bottom-color: #006EB3;
}

body .form-container form button.md-button.md-sg-material-theme {
  margin: 0;
  padding: 5px 25px;
}

@media screen and (max-width: 480px) {
  body .form-container form button.md-button.md-sg-material-theme {
    width: 100%;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
md-input-container.md-sg-material-theme {
  margin: 0;
}

md-input-container.md-sg-material-theme input {
  font-size: 1rem;
  line-height: 1.32757;
  background-color: #F0F0F0;
  color: #54565A;
  min-height: 48px;
}

md-input-container.md-sg-material-theme .md-errors-spacer {
  bottom: -20px;
  color: #dd2c00;
  float: none;
  left: 5px;
  position: absolute;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
body.md-dialog-is-showing {
  overflow: hidden;
}

.md-dialog-container {
  height: 100% !important;
  position: fixed !important;
  top: 0px !important;
}

.md-dialog-container, md-backdrop.md-dialog-backdrop.md-sg-material-theme {
  z-index: 9999 !important;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) {
  border-radius: 0;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal).cf-video md-dialog-content {
  max-width: 100%;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal).cf-video h1 {
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 480px) {
  md-dialog.md-sg-material-theme:not(.pick-your-path-modal) {
    max-width: 94%;
  }
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-toolbar.md-sg-material-theme.md-accent {
  background-color: #54565A;
  height: 50px;
  min-height: 50px;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-toolbar.md-sg-material-theme.md-accent .md-toolbar-tools h1 {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.31481;
  color: #fff;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-toolbar.md-sg-material-theme.md-accent .md-toolbar-tools button.md-button.md-icon-button {
  position: absolute;
  right: 15px;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-toolbar.md-sg-material-theme.md-accent .md-toolbar-tools button.md-button.md-icon-button:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
  background-color: #54565A;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-toolbar.md-sg-material-theme.md-accent .md-toolbar-tools button.md-button.md-icon-button md-icon {
  color: #fff;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-dialog-content {
  max-width: 700px;
  padding: 24px;
}

md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-dialog-content button.md-button.md-sg-material-theme {
  margin: 0;
  padding: 5px 25px;
}

@media screen and (max-width: 480px) {
  md-dialog.md-sg-material-theme:not(.pick-your-path-modal) md-dialog-content button.md-button.md-sg-material-theme {
    width: 100%;
  }
}

@media print {
  body.md-dialog-is-showing {
    visibility: hidden;
  }
  body.md-dialog-is-showing .print-area {
    visibility: visible;
  }
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.loading,
.inlineLoading {
  margin: 25px 0;
}

.loading md-progress-circular.md-sg-material-theme path,
.inlineLoading md-progress-circular.md-sg-material-theme path {
  stroke: #FB3540;
}

.loading.ui-block {
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

@media screen and (max-width: 960px) {
  .loading.ui-block {
    align-items: center;
    position: fixed;
  }
}

.loading.ui-block md-progress-circular.md-sg-material-theme {
  margin-top: 75px;
}

@media screen and (max-width: 960px) {
  .loading.ui-block md-progress-circular.md-sg-material-theme {
    margin-top: 0;
  }
}

.inlineLoading {
  margin: 0;
  padding-left: 8px;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
body md-input-container md-panel {
  z-index: -1;
}

body md-panel {
  background: white;
  border-radius: 4px;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  max-height: 250px;
  overflow-y: auto;
  width: 200px;
  z-index: 9998;
}

body md-panel a {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 48px;
  padding: 0 16px;
  position: relative;
  transition: background 0.15s linear;
  width: 100%;
}

body md-panel a:hover {
  background-color: #eeeeee;
}

body md-panel a.selected {
  color: #D54400;
}

md-radio-button.md-sg-material-theme .md-on {
  background-color: #D54400;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
md-select.md-sg-material-theme .md-select-value {
  font-size: 1rem;
  line-height: 1.32757;
  background-color: #F0F0F0;
  color: #54565A;
  min-height: 44px;
}

md-select.md-sg-material-theme .md-select-value > span:not(.md-select-icon) {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.md-select-menu-container.md-sg-material-theme.md-active {
  z-index: 9999;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
body md-sidenav.md-sg-material-theme {
  position: fixed;
  z-index: 9998;
}

body md-sidenav.md-sg-material-theme md-toolbar h1 {
  font-family: "figtreeBold", helvetica, arial, sans-serif;
  font-size: 1.125rem !important;
  line-height: 1.26781;
  color: #fff !important;
  margin-bottom: 0 !important;
  justify-content: center;
}

/**
 * Calculates numbers to the mathmatical power (exponent)
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to increase
 * @param	int		$exponent	The power to increase the number by
 *
 * @return	int					The new number
 */
/**
 * Removes units from values for easier modification
 *
 * @since	1.0.0
 *
 * @param	int		$number		The number to strip units from
 *
 * @return	int					The number without the unit
 */
/**
 * Calculates the line height based on multiple parameters
 *
 * @since	1.0.0
 *
 * @param	int		$font-size			The font size
 * @param	int		$content-width		The width of the content area
 * @param	int		$ratio				The ratio. Default 1.61803398875 (golden ratio)
 *
 * @return	int							The calculated line height
 */
/* 50% of Faded Moss Green */
/* used to be #e1ead5 */
/* mixin for multiline */
.container md-toolbar.md-sg-material-theme {
  background-color: #54565A;
}

.container md-toolbar.md-sg-material-theme.white-theme, .container md-toolbar.md-sg-material-theme.white-theme h2 {
  background-color: #fff;
  color: #54565A;
}

.container md-toolbar.md-sg-material-theme h2 {
  display: inline-block;
  vertical-align: middle;
}
