/* This file is generated.  DO NOT EDIT. */ 
/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
*:focus,
a:focus,
button:focus, .cta-parent-focus {
  outline: #940053 dotted 2px;
}

/*------------------------------------*\
    #ACCESSIBILITY
\*------------------------------------*/
.accessibility--hidden,
.accessibility--tab {
  /* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

a.accessibility--tab:active,
a.accessibility--tab:focus,
a.accessibility--tab:hover {
  position: absolute !important;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 99999999999;
  background-color: #fff;
  border: solid 1px #1977bc;
  padding: 5px;
  clip: auto;
}

/* bounce */
@-webkit-keyframes bounce {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounce {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}


/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-container {
  padding: 0 15px;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .sw-container {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-container {
    padding: 0 30px;
  }
}

.sw-container.is-adjacent {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .sw-container-menu-product-category:not(:last-child) .sw-container__col {
    padding-bottom: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .sw-container-menu-product-category:not(:last-child) .sw-container__col {
    padding-bottom: 0 !important;
    margin-bottom: -15px !important;
  }
}

.sw-container--bleed {
  background-repeat: no-repeat;
  background-position: center;
}

.sw-container--bleed > .sw-container__col {
  margin: 0 auto;
  max-width: calc(1230px - (30px * 2));
  position: relative;
}

.sw-container--bleed > .sw-container__col .sw-container:last-child {
  margin-bottom: 0;
}

.sw-container--bleed.has-image, .sw-container--bleed.has-color {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 1230px) {
  .sw-container--bleed .sw-container--100,
  .sw-container--bleed .sw-container--70-30,
  .sw-container--bleed .sw-container--50-50,
  .sw-container--bleed .sw-container--30-70 {
    margin-left: auto;
    margin-right: auto;
  }
}

.sw-container__centered {
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 15px;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sw-container__centered {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-container__centered {
    padding: 0 30px;
  }
}

.sw-container--extended {
  padding: 0;
}

.sw-container--extended > .sw-container__col {
  margin: 0 auto;
  max-width: 1800px;
  position: relative;
}

.sw-container--extended > .sw-container__col .sw-container:last-child {
  margin-bottom: 0;
}

.sw-container--100,
.sw-container--70-30,
.sw-container--50-50,
.sw-container--30-70 {
  max-width: 1230px;
}

@media screen and (min-width: 1230px) {
  .sw-container--100,
  .sw-container--70-30,
  .sw-container--50-50,
  .sw-container--30-70 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .sw-container--70-30,
  .sw-container--50-50,
  .sw-container--30-70 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .sw-container--50-50 .sw-container__col:first-child {
    width: 49.26%;
  }
}

@media screen and (min-width: 768px) {
  .sw-container--50-50 .sw-container__col:nth-child(2) {
    width: 40.8%;
  }
}

.sw-footerpane .sw-container--100 {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .sw-footerpane .sw-container--100 {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footerpane .sw-container--100 {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

.sw-footerpane .sw-container--100.sw-container--inset {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .sw-footerpane .sw-container--100.sw-container--inset {
    margin: 0 auto;
  }
}

.sw-container--inset {
  padding: 0;
  z-index: 4;
}

@media screen and (min-width: 768px) {
  .sw-container--inset {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-container--inset {
    padding: 0 30px;
  }
}

.sw-container--inset .sw-container__col {
  background-color: #ffffff;
  margin: 0;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .sw-container--inset .sw-container__col {
    margin: -20px 0;
    padding: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-container--inset .sw-container__col {
    margin: -30px 0;
    padding: 30px;
  }
}

.sw-container--calculator {
  z-index: 9;
}

.sw-container--eyebrow {
  background-color: #f4f5f4;
  display: none;
  z-index: 6;
}

@media screen and (min-width: 1024px) {
  .sw-container--eyebrow {
    display: block;
  }
}

.sw-container--header {
  background-color: #f4f5f4;
  z-index: 5;
}

@media screen and (min-width: 1024px) {
  .sw-container--header {
    background-color: rgba(255, 255, 255, 0.95);
  }
}

@media screen and (min-width: 1024px) {
  .contrast-on .sw-container--header {
    background-color: #ffffff;
  }
}

@media screen and (min-width: 1024px) {
  .has-hero .sw-container--header {
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
  }
}

.sw-container--header.sw-universal-container-v2 {
  background-color: #f4f5f4;
  z-index: 5;
}

@media screen and (min-width: 1080px) {
  .sw-container--header.sw-universal-container-v2 {
    background-color: rgba(255, 255, 255, 0.95);
  }
}

@media screen and (min-width: 1080px) {
  .contrast-on .sw-container--header.sw-universal-container-v2 {
    background-color: #ffffff;
  }
}

@media screen and (min-width: 1024px) {
  .has-hero .sw-container--header.sw-universal-container-v2 {
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
  }
}

.sw-container--hero {
  z-index: 3;
}

.sw-container--alert {
  background-color: #dd3705;
  display: none;
}

.sw-container--alert.is-shown {
  display: block;
}

.sw-container--disclaimer {
  margin-bottom: 60px;
  margin-top: 60px;
}

.bg-red {
  background: #dc3e31;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
html {
  scroll-behavior: smooth;
  height: auto;
  min-height: 100%;
}

body::before {
  content: 'small';
  display: none;
}

@media (min-width: 768px) {
  body::before {
    content: 'medium';
  }
}

@media (min-width: 1024px) {
  body::before {
    content: 'large';
  }
}

body.sw-v2 {
  background-color: #f4f5f4;
  height: auto;
  min-height: 100%;
}

body.mobile-nav-open {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}

body.modal-open-sw-v2 {
  overflow: hidden;
}

.is-hidden {
  display: none;
}

.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .hide-on-mobile {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .for-mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hide-on-tablet {
    display: none;
  }
}

.visuallyhidden {
  border: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px;
}

.sw-clearfix:after {
  content: "";
  clear: both;
  display: table;
}

#mainContainerSmall {
  top: 135px;
}

/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/

/*------------------------------------*\
    #RESET
    Styles taken from reset and
    normalize, with some modifications
\*------------------------------------*/
/** BASE (BUNCH OF ELEMENTS) **/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
picture {
  display: block;
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  border: 0;
}

[hidden], template {
  display: none;
}

/** HTML & BODY **/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

/** IMAGES **/
svg:not(:root) {
  overflow: hidden;
}

img {
  border: 0;
}

figure {
  margin: 0;
}

/** AUDIO & VIDEO **/
audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/** SPECIAL TEXT ELEMENTS **/
b,
strong {
  font-weight: bold;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: #ff0;
  color: #000;
}

dfn {
  font-style: italic;
}

h1 sub,
h1 sup, h2 sub,
h2 sup {
  font-size: 35%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

h1 sup, h2 sup {
  top: -1.4em;
}

/** BUTTONS **/
button {
  cursor: pointer;
  font-family: sans-serif;
  line-height: normal;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  background: transparent;
  border: 0;
}

button[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/** FORM ELEMENTS **/
input,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

input {
  line-height: normal;
}

input[disabled] {
  cursor: default;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0.01em 0 0;
  margin: 0;
  border: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

legend {
  display: table;
  padding: 0;
  border: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

/** TABLES **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/** LISTS **/
ul li {
  list-style-type: none;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */


/* Webfont: SubwaySansCond-Black */
@font-face {
  font-family: 'SubwaySansCondBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Bold */
@font-face {
  font-family: 'SubwaySansCondBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Medium */
@font-face {
  font-family: 'SubwaySansCondMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Black */
@font-face {
  font-family: 'SubwaySansLCGBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Bold */
@font-face {
  font-family: 'SubwaySansLCGBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-BoldItalic */
@font-face {
  font-family: 'SubwaySansLCGBoldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Medium */
@font-face {
  font-family: 'SubwaySansLCGMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-MediumItalic */
@font-face {
  font-family: 'SubwaySansLCGMediumItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Regular */
@font-face {
  font-family: 'SubwaySansLCGRegular';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-RegularItalic */
@font-face {
  font-family: 'SubwaySansLCGRegularItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Semibold */
@font-face {
  font-family: 'SubwaySansLCGSemibold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-SemiboldItalic */
@font-face {
  font-family: 'SubwaySansLCGSemiboldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Super */
@font-face {
  font-family: 'SubwaySansLCGSuper';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}


/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.contrast-on #content-wrap {
  color: #000000 !important;
}

.contrast-on #content-wrap h1, .contrast-on #content-wrap h1 a, .contrast-on #content-wrap h2, .contrast-on #content-wrap h2 a, .contrast-on #content-wrap h3, .contrast-on #content-wrap h3 a, .contrast-on #content-wrap h4, .contrast-on #content-wrap h4 a, .contrast-on #content-wrap h5, .contrast-on #content-wrap h5 a, .contrast-on #content-wrap h6, .contrast-on #content-wrap h6 a, .contrast-on #content-wrap #FindARestaurantHolder, .contrast-on #content-wrap #FindARestaurantHolder a, .contrast-on #content-wrap .component.co-title, .contrast-on #content-wrap .component.co-title a, .contrast-on #content-wrap .d-loyalty-description, .contrast-on #content-wrap .d-loyalty-description a, .contrast-on #content-wrap .d-loyalty-sandwiches, .contrast-on #content-wrap .d-loyalty-sandwiches a, .contrast-on #content-wrap .countrystoreheader, .contrast-on #content-wrap .countrystoreheader a, .contrast-on #content-wrap .countryname, .contrast-on #content-wrap .countryname a, .contrast-on #content-wrap .storecount, .contrast-on #content-wrap .storecount a {
  color: #000000 !important;
}

.contrast-on #content-wrap .copy-medium, .contrast-on #content-wrap .copy-medium a, .contrast-on #content-wrap .copy-medium span, .contrast-on #content-wrap .copy-small, .contrast-on #content-wrap .copy-small a, .contrast-on #content-wrap .copy-small span {
  color: #000000 !important;
}

.contrast-on #content-wrap .infoLinkList {
  color: #000000 !important;
}

.contrast-on #content-wrap [class^="d-loyalty"] h1, .contrast-on #content-wrap [class^="d-loyalty"] h1 a, .contrast-on #content-wrap [class^="d-loyalty"] h2, .contrast-on #content-wrap [class^="d-loyalty"] h2 a, .contrast-on #content-wrap [class^="d-loyalty"] h3, .contrast-on #content-wrap [class^="d-loyalty"] h3 a, .contrast-on #content-wrap [class^="d-loyalty"] h4, .contrast-on #content-wrap [class^="d-loyalty"] h4 a, .contrast-on #content-wrap [class^="d-loyalty"] h5, .contrast-on #content-wrap [class^="d-loyalty"] h5 a, .contrast-on #content-wrap [class^="d-loyalty"] h6, .contrast-on #content-wrap [class^="d-loyalty"] h6 a {
  color: #ffffff !important;
}

.contrast-on #content-wrap .app-landing-hero {
  background-color: #000000;
}

.contrast-on #content-wrap .app-landing-hero h1, .contrast-on #content-wrap .app-landing-hero h1 a, .contrast-on #content-wrap .app-landing-hero h2, .contrast-on #content-wrap .app-landing-hero h2 a, .contrast-on #content-wrap .app-landing-hero h3, .contrast-on #content-wrap .app-landing-hero h3 a, .contrast-on #content-wrap .app-landing-hero h4, .contrast-on #content-wrap .app-landing-hero h4 a, .contrast-on #content-wrap .app-landing-hero h5, .contrast-on #content-wrap .app-landing-hero h5 a, .contrast-on #content-wrap .app-landing-hero h6, .contrast-on #content-wrap .app-landing-hero h6 a {
  color: #ffffff !important;
}

.contrast-on #content-wrap .btn-white-square {
  color: #444343 !important;
  border-color: #444343;
}

.contrast-on #content-wrap .faq-dropdown-container select {
  color: #000000 !important;
}

.contrast-on #content-wrap .nutrition-grid .nutritionGridButton, .contrast-on #content-wrap .nutrition-grid .nutritionGridButtonEnabled {
  color: #000000 !important;
}

.contrast-on #content-wrap .nutrition-grid #NutritionFatcsPanel tbody .name {
  color: #000000 !important;
}

.contrast-on #content-wrap .nutrition-grid #NutritionDisclaimerDiv .Notes {
  color: #000000 !important;
}

.homePageModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.homePageModal.visible {
  display: block;
}

.homePageModalBackground {
  position: absolute;
  background-color: rgba(80, 80, 80, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 1230px) {
  .homePageModalContentBody {
    position: relative;
    padding: 49px 0 49px 40px;
  }
  .homePageModalContent {
    position: fixed;
    z-index: 21;
    top: 20%;
    left: calc(50% - 570px);
    margin-right: auto;
    width: 1140px;
    height: 520px;
  }
  .modalContentBody {
    height: 369px;
    position: relative;
  }
  .modalTitle.Large {
    height: 63px;
    font-family: Roboto;
    font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.83;
    letter-spacing: 0px;
    color: #ffffff;
  }
  .modalTitle.Small {
    height: 63px;
    font-family: Roboto;
    font-size: 42px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.83;
    letter-spacing: 0px;
    color: #ffffff;
  }
  .modalImageContainer {
    width: 545px;
    height: 367px;
    top: 0;
    float: right;
    position: relative;
  }
  .bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
  }
  .modalButton {
    width: 381px;
    height: 55px;
    background-color: #008938;
    padding-top: 16px;
    text-align: center;
  }
  .modalButton a {
    width: 381px;
    height: 24px;
    font-family: Roboto;
    font-size: 21px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.5px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
  }
  .modalDescription.Large {
    width: 493px;
    height: 138px;
    font-family: Roboto;
    font-size: 36px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: 0px;
    color: #ffb100;
    display: inline-block;
  }
  .modalDescription.Small {
    width: 493px;
    height: 138px;
    font-family: Roboto;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: 0px;
    color: #ffb100;
    display: inline-block;
  }
  .modalDisclaimer {
    width: 381px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: 0px;
    color: #fefffe;
    margin-bottom: 40px;
  }
  .modalCloseButton {
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 21;
    top: 0;
    width: 46px;
    height: 46px;
    border: none;
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 19px;
    right: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAA5CAYAAACMGIOFAAAAAXNSR0IArs4c6QAAAsNJREFUaAXl209r1EAYx/FGqeJBLwVFehCvvv+jh0JBqO9AKJQK9daTYP9Qd/v9hX1STJPZyeaZybM48GyymUnyfJI0yU7Sg4P/pazX64b4TvwlVsQF8Xaf/OR7RPwklL8c34imM/BFwH65ZcJR1yjwCHkeE/d9AN9Pu7T5IvlQCQ8l6TGgPA9CvthIn3ZrR29HXvN5ReOQe1RA8rsgDttsn3+0LkNePq/vpoSEZgAFOO8UzPCOuCNSJcyhS5KpQ9QMfxh50yE1wgSdncJDyTEXOHx1iA6dDbTdGhXqBowKdQdGgxYDRoEWBy4NrQZcClodWBu6GLAWdHFgaSjAj8TQzyUmd0W3asN3Mpag15AVud4CsrxYQNtQXtCwQC9oeOBc6N4Ad4XuHXAH6BeQVc+iY307lvukIcmrL+gX8Sox45q61HpvqP/QNM3vxDImVaVWNmlB1jgTas37Q3egVuCO1EJ3hBYBKp9iRVBiW58RTdpS707GW0z6Osmo2z5VVP/Je91VlkfiObdqhg/T3Zm9cSYCi0PdTzwCsjUuibGu+9TGuqPymMvHdarR1Dp7TDB1vsH2mUBdJ8dKkUcSbshMoC4Tn4n7MSXTi0AT68urEpDIvlWjbc7lJc7JaCrQNtveQHcF9qDaY6my3B4lq0mHqMH6Q5ajQzce1Ato4HBQb2A4aClgGGhp4OLQWsDFoJnAG9q59myzvDpn3aWA1fbo0sDi0CjAYtBoQHdoVKAbNDpwNhSgTtfbfg+6XyYs8anDTb45N/VPlzVm0hu/qRIGaBuEZHOuo+1bkm1HFjOsmHmsU+uWuveezyYs0blDQVnGFaEuk6GyIu+X1scz1rkUFijRpldPL/aql2+otC5Dng20CA20fLdAT6ydHtDovwlOiQdC76P/IP59IbZrHXOEfPVi8jmh/OX4Soz9CcZEzMnqEU7PqFsjX5HVAAAAAElFTkSuQmCC");
  }
}

@media screen and (min-width: 1024px) and (max-width: 1229px) {
  .homePageModalContentBody {
    position: relative;
    padding: 45px 0 45px 40px;
  }
  .homePageModalContent {
    position: fixed;
    z-index: 21;
    top: 25%;
    left: calc(50% - 427px);
    margin-right: auto;
    width: 855px;
    height: 484px;
    border: solid 2px #2e2721;
    background-color: #2e2721;
  }
  .modalContentBody {
    height: 331px;
    position: relative;
  }
  .modalTitle.Large {
    height: 63px;
    font-family: Roboto;
    font-size: 40px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0px;
    color: #ffffff;
  }
  .modalTitle.Small {
    height: 63px;
    font-family: Roboto;
    font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0px;
    color: #ffffff;
  }
  .modalImageContainer {
    width: 385px;
    height: 254px;
    top: 0;
    float: right;
    position: relative;
  }
  .bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
  }
  .modalButton {
    width: 381px;
    height: 55px;
    background-color: #008938;
    padding-top: 16px;
    text-align: center;
  }
  .modalButton a {
    width: 381px;
    height: 24px;
    font-family: Roboto;
    font-size: 21px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.5px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
  }
  .modalDescription.Large {
    width: 381px;
    height: 114px;
    font-family: Roboto;
    font-size: 28px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: 0px;
    color: #ffb100;
    display: inline-block;
  }
  .modalDescription.Small {
    width: 381px;
    height: 114px;
    font-family: Roboto;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: 0px;
    color: #ffb100;
    display: inline-block;
  }
  .modalDisclaimer {
    width: 381px;
    font-family: Roboto;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: 0px;
    color: #fefffe;
    margin-bottom: 40px;
  }
  .modalCloseButton {
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 21;
    top: 0;
    width: 46px;
    height: 46px;
    border: none;
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 19px;
    right: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAA5CAYAAACMGIOFAAAAAXNSR0IArs4c6QAAAsNJREFUaAXl209r1EAYx/FGqeJBLwVFehCvvv+jh0JBqO9AKJQK9daTYP9Qd/v9hX1STJPZyeaZybM48GyymUnyfJI0yU7Sg4P/pazX64b4TvwlVsQF8Xaf/OR7RPwklL8c34imM/BFwH65ZcJR1yjwCHkeE/d9AN9Pu7T5IvlQCQ8l6TGgPA9CvthIn3ZrR29HXvN5ReOQe1RA8rsgDttsn3+0LkNePq/vpoSEZgAFOO8UzPCOuCNSJcyhS5KpQ9QMfxh50yE1wgSdncJDyTEXOHx1iA6dDbTdGhXqBowKdQdGgxYDRoEWBy4NrQZcClodWBu6GLAWdHFgaSjAj8TQzyUmd0W3asN3Mpag15AVud4CsrxYQNtQXtCwQC9oeOBc6N4Ad4XuHXAH6BeQVc+iY307lvukIcmrL+gX8Sox45q61HpvqP/QNM3vxDImVaVWNmlB1jgTas37Q3egVuCO1EJ3hBYBKp9iRVBiW58RTdpS707GW0z6Osmo2z5VVP/Je91VlkfiObdqhg/T3Zm9cSYCi0PdTzwCsjUuibGu+9TGuqPymMvHdarR1Dp7TDB1vsH2mUBdJ8dKkUcSbshMoC4Tn4n7MSXTi0AT68urEpDIvlWjbc7lJc7JaCrQNtveQHcF9qDaY6my3B4lq0mHqMH6Q5ajQzce1Ato4HBQb2A4aClgGGhp4OLQWsDFoJnAG9q59myzvDpn3aWA1fbo0sDi0CjAYtBoQHdoVKAbNDpwNhSgTtfbfg+6XyYs8anDTb45N/VPlzVm0hu/qRIGaBuEZHOuo+1bkm1HFjOsmHmsU+uWuveezyYs0blDQVnGFaEuk6GyIu+X1scz1rkUFijRpldPL/aql2+otC5Dng20CA20fLdAT6ydHtDovwlOiQdC76P/IP59IbZrHXOEfPVi8jmh/OX4Soz9CcZEzMnqEU7PqFsjX5HVAAAAAElFTkSuQmCC");
  }
}

@media screen and (max-width: 1023px) {
  .modalDescription.Large {
    font-family: Roboto;
    font-size: 1.5em;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: 0px;
    text-align: center;
    color: #ffbf00;
    padding: 0 25px 10px;
  }
  .modalDescription.Small {
    font-family: Roboto;
    font-size: 1.0em;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: 0px;
    text-align: center;
    color: #ffbf00;
    padding: 0 25px 10px;
  }
  .modalImageContainer {
    height: 260px;
    position: relative;
  }
  .modalTitle.Large {
    padding: 0 25px 10px;
    font-family: Roboto;
    font-size: 2em;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
  }
  .modalTitle.Small {
    padding: 0 25px 10px;
    font-family: Roboto;
    font-size: 1.5em;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
  }
  .homePageModal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .homePageModalContent {
    height: 98%;
    width: 95%;
    background-color: #2e2721;
    position: absolute;
    bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
    max-height: 580px;
    max-width: 530px;
  }
  .homePageModalContentBody {
    overflow-y: scroll;
    height: calc(100% - 160px);
  }
  .modalCloseButton {
    width: 100%;
    height: 55px;
    width: 55px;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAA5CAYAAACMGIOFAAAAAXNSR0IArs4c6QAAAsNJREFUaAXl209r1EAYx/FGqeJBLwVFehCvvv+jh0JBqO9AKJQK9daTYP9Qd/v9hX1STJPZyeaZybM48GyymUnyfJI0yU7Sg4P/pazX64b4TvwlVsQF8Xaf/OR7RPwklL8c34imM/BFwH65ZcJR1yjwCHkeE/d9AN9Pu7T5IvlQCQ8l6TGgPA9CvthIn3ZrR29HXvN5ReOQe1RA8rsgDttsn3+0LkNePq/vpoSEZgAFOO8UzPCOuCNSJcyhS5KpQ9QMfxh50yE1wgSdncJDyTEXOHx1iA6dDbTdGhXqBowKdQdGgxYDRoEWBy4NrQZcClodWBu6GLAWdHFgaSjAj8TQzyUmd0W3asN3Mpag15AVud4CsrxYQNtQXtCwQC9oeOBc6N4Ad4XuHXAH6BeQVc+iY307lvukIcmrL+gX8Sox45q61HpvqP/QNM3vxDImVaVWNmlB1jgTas37Q3egVuCO1EJ3hBYBKp9iRVBiW58RTdpS707GW0z6Osmo2z5VVP/Je91VlkfiObdqhg/T3Zm9cSYCi0PdTzwCsjUuibGu+9TGuqPymMvHdarR1Dp7TDB1vsH2mUBdJ8dKkUcSbshMoC4Tn4n7MSXTi0AT68urEpDIvlWjbc7lJc7JaCrQNtveQHcF9qDaY6my3B4lq0mHqMH6Q5ajQzce1Ato4HBQb2A4aClgGGhp4OLQWsDFoJnAG9q59myzvDpn3aWA1fbo0sDi0CjAYtBoQHdoVKAbNDpwNhSgTtfbfg+6XyYs8anDTb45N/VPlzVm0hu/qRIGaBuEZHOuo+1bkm1HFjOsmHmsU+uWuveezyYs0blDQVnGFaEuk6GyIu+X1scz1rkUFijRpldPL/aql2+otC5Dng20CA20fLdAT6ydHtDovwlOiQdC76P/IP59IbZrHXOEfPVi8jmh/OX4Soz9CcZEzMnqEU7PqFsjX5HVAAAAAElFTkSuQmCC");
  }
  div.closeButtonDiv {
    height: 55px;
  }
  .bottom {
    background-color: #2e2721;
    position: absolute;
    bottom: 0;
    z-index: 21;
    padding-bottom: 10px;
    width: 100%;
  }
  .modalButton {
    opacity: 0.9;
    background-color: #2e2721;
    text-align: center;
    z-index: 50;
  }
  .modalButton a {
    background-color: #008938;
    padding: 17px;
    display: block;
    height: 55px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
  }
  .modalDisclaimer {
    padding: 20px 25px;
    font-family: Roboto;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    background-color: #2e2721;
  }
}

@media screen and (max-width: 1023px) and (min-width: 550px) {
  .homePageModalContent {
    margin-left: calc(50% - 265px);
  }
}

div.sw-hero__logo {
  display: none;
}

.lockModal {
  overflow: hidden;
}

/******************************************************  
/******************************************************
*  CSS for ContactUsV3 Development Only.  
*  These styles must eventually be placed into the css bundle / gulp
*
*  IMPORTANT: Do not use any global styles as they will affect every sub-domain of *.subway.com
*/
.contactusv3-mainlistbutton {
  background: green;
  text-align: center;
  color: white;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  margin-bottom: 7px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  font-size: 20px;
  height: 50px;
  text-decoration: none;
}

.contactusv3-mainlistbutton:hover,
.contactusv3-mainlistbutton:focus {
  color: #fff;
}

.contactusv3-sublistbutton {
  /*background: #048c3c;*/
  background-color: #ffffff;
  text-align: center;
  color: #048c3c;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  /*border: none;*/
  margin-bottom: 7px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  font-size: 20px;
  height: 50px;
  border-color: #048c3c;
  border-bottom-width: 5px;
  border-top-width: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
  text-transform: none;
}

.contactusv3-mainpanel {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  background-color: #04acec;
  margin-bottom: 40px;
}

.contactusv3-subpanel {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  /*background-color: #04acec;*/
  margin-bottom: 40px;
}

.contactusv3-header {
  display: block;
  background: #8ccc2c;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: xxx-large;
  text-align: center;
  font-weight: bold;
}

.contactusv3-header2 {
  display: block;
  background: #048c3c;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: x-large;
  text-align: left;
  font-weight: bold;
  padding-left: 5%;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.contactusv3-subheader {
  display: block;
  background: #04acec;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: x-large;
  text-align: center;
}

.contactusv3-subheader2 {
  display: block;
  /*background: #048c3c;*/
  margin-bottom: 5px;
  font-weight: bold;
  font-size: large;
  text-align: left;
  padding-left: 7%;
  color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
}

.contactv3-header-right {
  padding-left: 50px;
}

.contactusv3-stub {
  background-color: #04acec;
  color: #ffffff;
  font-weight: bold;
  font-size: xx-large;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contactusv3-form {
  /*background-color: #8ccc2c;*/
  background-color: #fff;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.guestcare-formfield {
  display: block;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: left;
  padding: 10px;
  font-weight: 800;
}

.guestcare-textInput {
  display: block;
  width: 100%;
  height: 30px;
  border: 1px solid #767676;
}

.guestcare-formfield input,
.guestcare-formfield select,
.guestcare-formfield textarea {
  color: #545454;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.contactusv3-formHeader {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #ffffff;
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.contactusv3-formSubHeader {
  display: block;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: x-large;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.contactusv3-formSubHeader2 {
  display: block;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #ffffff;
  padding-bottom: 20px;
}

.contactusv3-formSubHeader2Inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 98%;
  text-align: left;
}

.contactusv3-formHeaderInner {
  display: block;
  background: #048c3c;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 500;
  font-size: large;
  text-align: left;
  padding-left: 20px;
}

.guestcare-IdkMargin {
  margin-top: 4px;
  display: inline-block;
}

/*for Toggle switch*/
.guestcare-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-top: 4px;
}

.guestcare-switch input {
  opacity: 0;
}

.guestcare-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.guestcare-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .guestcare-slider {
  background-color: #048c3c;
}

input:focus + .guestcare-slider {
  -webkit-box-shadow: 0 0 1px #048c3c;
          box-shadow: 0 0 1px #048c3c;
}

input:checked + .guestcare-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.guestcare-slider.round {
  border-radius: 34px;
}

.guestcare-slider.round:before {
  border-radius: 50%;
}

.guestcare-pad-right-0 {
  padding-right: 0;
}

.guestcare-formsubmit {
  text-align: center;
}

.guestcare-formsubmit .btn-gray {
  width: 20%;
  color: #fff !important;
  background: #048c3c;
  border-color: #048c3c;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.guestcare-formsubmit .btn-gray:focus,
.guestcare-formsubmit .btn-gray:hover {
  color: #fff !important;
  background: #048c3c;
  border-color: #048c3c;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contactusv3-form .guestcare-textInput.dateVisit {
  width: 90%;
}

.guestcare-formfield .ui-datepicker-trigger {
  right: 20px;
  top: 0px;
  width: 30px;
  height: 30px;
  position: absolute;
}

.contactusv3-form .errorFieldNew {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: red;
}

.guestcare-formfield .requiredFieldIndicator {
  color: red;
}

.guestcare-formfield #cs_comments {
  border: 1px solid #767676;
}

.guestcare-searchIcon {
  width: 25px;
  height: 25px;
}

.contactusv3-Success {
  background-image: none;
  display: block;
  background-color: #048c3c;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: x-large;
  text-align: center;
  font-weight: bold;
  padding-left: 0%;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.contactusv3-CloseButton {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  border: 1px solid #048C3C;
  width: 120px;
  height: 30px;
  background: #048C3C;
  font-weight: bold;
}

.guestcare-FieldLabel {
  text-transform: none;
  color: #545454;
  font-weight: 400;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-align: left;
}

.guestcare-countryStateField .col-md-6.FieldLabel {
  text-align: left !important;
  font-weight: 800;
  font-size: 14px;
}

.guestcare-countryStateField .col-md-6.field {
  height: 30px;
}

.guestcare-countryStateField .fieldRow .col-md-6.field {
  margin-bottom: 20px;
}

.guestcare-countryStateField .col-md-6.FieldLabel span.requiredFieldIndicator {
  position: relative;
  left: 3px;
  top: -3px;
}

.guestcare-countryStateField .col-md-6.field select {
  width: 100% !important;
  height: 30px !important;
  display: block;
  border: 1px solid #767676;
  margin-bottom: 20px;
}

.guestcare-countryStateField .col-md-6.FieldLabel span:last-child {
  float: left;
}

.guestcare-countryStateField .col-md-6.field select#ddlState {
  margin-bottom: 0px;
}

.guestcare-formfield #giftCardEntryArea label {
  font-weight: 800;
}

.contactusv3-subheader {
  text-transform: uppercase;
}

.guestcare-formfield .last-four {
  width: 70px;
  border: 1px solid #767676;
  height: 30px;
}

.contactusv3-form .errorFieldCol {
  text-align: left;
}

.contactusv3-form .errorFieldCol span.errorFieldNew {
  padding-left: 5px;
  position: relative;
  top: -10px;
}

.guestcare-formfield .restaurantTextBelowLbl {
  display: block;
}

.guestcare-formfield input:-webkit-autofill,
.guestcare-formfield input:-webkit-autofill:hover,
.guestcare-formfield input:-webkit-autofill:focus,
.guestcare-formfield textarea:-webkit-autofill,
.guestcare-formfield textarea:-webkit-autofill:hover,
.guestcare-formfield textarea:-webkit-autofill:focus,
.guestcare-formfield select:-webkit-autofill,
.guestcare-formfield select:-webkit-autofill:hover,
.guestcare-formfield select:-webkit-autofill:focus {
  background-color: #fff !important;
  font-weight: 400 !important;
  color: #545454 !important;
  -webkit-text-fill-color: #545454;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.contactusv3-nonFormSubTitle {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 20px;
}

.contactusv3-nonFormSubTitle span {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.contactusv3-NonFormComtent {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
}

.contactusv3-NonFormComtent p {
  color: #545454;
  font-weight: 400;
  font-size: 14px;
}

.contactusv3-NonFormComtent p a {
  color: #048c3c;
  text-decoration: none;
}

.guestcare-btnQuestionMark {
  background-color: #028940;
  margin-left: 4px;
  width: 20px;
  height: 20px;
}

.guestcare-receiptArea {
  width: 250px;
  border: 1px solid #999999;
  -webkit-box-shadow: 5px 5px #ccc;
          box-shadow: 5px 5px #ccc;
  z-index: 1001;
  position: absolute;
  right: 70px;
  top: -120px;
  background-color: white;
}

.guestcare-pad-left-10 {
  padding-left: 10px;
}

/* Small devices */
@media only screen and (max-width: 767px) {
  .contactusv3-form {
    background-color: #fff;
  }
  .contactusv3-formHeader,
  .contactusv3-formSubHeader,
  .contactusv3-formSubHeader2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .contactusv3-formHeaderInner,
  .contactusv3-formSubHeader2Inner,
  .contactusv3-mainpanel {
    width: 100%;
  }
  .contactusv3-form .guestcare-formfield {
    width: 100% !important;
    padding: 10px 0;
  }
  .contactusv3-form .guestcare-textInput {
    display: block;
    width: 100%;
    height: 30px;
    border: 1px solid #767676;
  }
  .guestcare-textInput.txtDateVisit {
    width: 90%;
  }
  .guestcare-formfield .ui-datepicker-trigger {
    right: 15px;
  }
  .guestcare-formfield #cs_comments {
    border: 1px solid #767676;
    padding: 3px 5px;
  }
  .guestcare-formsubmit .btn-gray {
    width: 50%;
  }
  .contactusv3-subpanel,
  .contactusv3-Success {
    width: 100%;
  }
  .contactusv3-Success {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
  .contactusv3-nonFormSubTitle {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .contactusv3-NonFormComtent {
    padding-left: 20px;
    width: 100%;
  }
  .guestcare-receiptArea {
    width: 250px;
    border: 1px solid #999999;
    -webkit-box-shadow: 5px 5px #ccc;
            box-shadow: 5px 5px #ccc;
    z-index: 1001;
    position: absolute;
    right: 60px;
    top: -120px;
  }
}

@media only screen and (max-width: 991px) {
  .guestcare-formfield .guestcare-textInput.dateVisit {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) {
  .guestcare-countryStateField .col-md-6.FieldLabel {
    width: 25%;
    text-align: left !important;
    font-weight: 800;
    font-size: 14px;
  }
  .guestcare-countryStateField .col-md-6.field {
    width: 41.66666666666667%;
  }
  .contactusv3-form .mainContainerContactUsSmall .guestcare-locatorContainer {
    overflow-y: hidden;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .guestcare-countryStateField .col-md-6.FieldLabel {
    width: 33.33333333333333%;
  }
}

/*locator-specific styles*/
@media screen and (max-width: 767px) {
  .contactusv3-form .mainContainerContactUsSmall {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: white;
    z-index: 1050;
    overflow: hidden;
  }
  #subwayLocator_CloseButton {
    display: none;
  }
  .guestcare-locatorContainer {
    overflow-y: auto;
    height: auto;
    bottom: 0;
    height: 100%;
    height: calc(100% - 30px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .guestcare-locatorContainer #locatorIframe {
    height: 98%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    overflow: hidden;
  }
}

/*generic for ipad portrait*/
@media screen and (min-width: 768px) {
  /*.backLink {
        display: none;
    }*/
  .contactusv3-form .mainContainerContactUsSmall {
    z-index: 1050;
    position: fixed;
    width: 700px;
    height: 700px;
    margin: 0;
    top: 50px;
    left: 50px;
    left: calc(50% - 350px);
    right: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: white;
  }
  #subwayLocator_CloseButton {
    top: -20px;
    left: auto;
    right: -20px;
    height: 21px;
    width: 21px;
    position: absolute;
  }
  .guestcare-locatorContainer {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 700px;
    overflow-y: auto;
  }
  .iFrameLocator .guestcare-locatorContainer {
    overflow-y: hidden;
  }
  .guestcare-locatorContainer #locatorIframe {
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 2000;
  }
}

/*various styles to make it look decent in all resolutions*/
@media screen and (min-width: 992px) {
  .contactusv3-form .mainContainerContactUsSmall {
    width: 900px;
    left: 40px;
    left: calc(50% - 450px);
  }
}

@media screen and (min-height: 480px) and (min-width: 480px) {
  .contactusv3-form .mainContainerContactUsSmall {
    top: 30px;
    height: 440px;
  }
  .guestcare-locatorContainer {
    height: 440px;
  }
}

@media screen and (min-height: 600px) and (min-width: 600px) {
  .contactusv3-form .mainContainerContactUsSmall {
    top: 30px;
    height: 550px;
  }
  .guestcare-locatorContainer {
    height: 550px;
  }
}

@media screen and (min-height: 768px) and (min-width: 600px) {
  .contactusv3-form .mainContainerContactUsSmall {
    top: 30px;
    height: 720px;
  }
  .guestcare-locatorContainer {
    height: 720px;
  }
}

@media screen and (min-height: 1024px) and (min-width: 600px) {
  .contactusv3-form .mainContainerContactUsSmall {
    top: 50px;
    height: 950px;
  }
  .guestcare-locatorContainer {
    height: 950px;
  }
}

.contactusv3-form .cta-startorder-text {
  font-size: 28px;
  font-weight: 900;
  color: #008938;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
  height: 35px;
  margin-top: 12px;
  float: left;
}

.contactusv3-form .cta-startorder-text li {
  list-style-type: none;
}

.contactusv3-form .cta-startorder-text ul {
  padding-left: 20px;
}

.contactusv3-form div#cta-startorder-close {
  float: right;
}

.contactusv3-form .mainContainerContactUsSmall {
  top: 135px;
}

.contactusv3-form .mainContainerContactUsSmall iframe {
  border: 0;
}

.contactusv3-form div#cta-startorder-close button {
  cursor: pointer;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  line-height: normal;
  font-size: 12px;
  color: green;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  font-weight: 800;
  margin-top: 12px;
  margin-right: 10px;
}

.contactusv3-form div#cta-startorder-close button span {
  font-size: 20px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-1up {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .sw-1up {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-1up {
    margin-top: 30px;
  }
}

.sw-1up:first-child, .sw-1up.sw-1up--no-margin {
  margin-top: 0;
}

.sw-1up__col.bg-blue {
  background-color: #00a7e9;
}

.sw-1up__col.bg-orange {
  background-color: #ff8200;
}

.sw-1up__col.bg-green {
  background-color: #8bcd32;
}

.sw-1up__col.bg-yellow {
  background-color: #f2b700;
}

.sw-1up__col.bg-purple {
  background-color: #4c006a;
}

.sw-1up__col.bg-gray {
  background-color: #f4f5f4;
}

.sw-1up__col.bg-black {
  background-color: #000000;
}

.is-page-editor .sw-1up__col {
  min-height: 50px;
}

.sw-1up__col .sw-textblock__content {
  text-align: center;
}

.sw-1up__col.has-link {
  cursor: pointer;
}

.is-page-editor .sw-1up .scEmptyPlaceholder {
  min-width: 90%;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-2up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .sw-2up {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up {
    margin-top: 30px;
  }
}

.sw-2up:first-child {
  margin-top: 0;
}

.sw-catering-block .sw-2up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-2up__col {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
  position: relative;
  width: 100%;
}

.sw-2up > .sw-2up__col:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-2up__col {
    margin-top: 0;
  }
}

.sw-2up__col.has-link {
  cursor: pointer;
}

@media screen and (min-width: 480px) {
  .sw-2up__col:first-child, .sw-2up__col:first-of-type {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-2up__col.hide-on-mobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sw-2up__col.hide-on-mobile + .sw-2up__col {
    margin-top: 0;
  }
}

.sw-2up__col.bg-blue {
  background-color: #00a7e9;
}

.sw-2up__col.bg-orange {
  background-color: #ff8200;
}

.sw-2up__col.bg-green {
  background-color: #8bcd32;
}

.sw-2up__col.bg-yellow {
  background-color: #f2b700;
}

.sw-2up__col.bg-purple {
  background-color: #4c006a;
}

.sw-2up__col.bg-gray {
  background-color: #f4f5f4;
}

.sw-2up__col.bg-black {
  background-color: #000000;
}

@media screen and (min-width: 768px) {
  .sw-2up__col:nth-last-child(2):first-child,
  .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up__col:nth-last-child(2):first-child,
  .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 30px/ 2);
  }
}

.sw-catering-block .sw-2up__col:nth-last-child(2):first-child, .sw-catering-block
.sw-2up__col:nth-last-child(2):first-child ~ * {
  width: calc(50% - 15px/ 2);
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-catering-block .sw-2up__col:nth-last-child(2):first-child, .sw-catering-block
  .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-catering-block .sw-2up__col:nth-last-child(2):first-child, .sw-catering-block
  .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 30px/ 2);
  }
}

.sw-2up__col.scEnabledChrome {
  max-width: 50%;
}

.is-page-editor .sw-2up__col {
  min-height: 50px;
}

.sw-2up__col .sw-2up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .sw-2up__col .sw-2up {
    height: calc(50% - 10px);
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up__col .sw-2up {
    height: calc(50% - 15px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-2up__col .sw-2up.hide-on-tablet {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-2up__col .sw-2up.hide-on-tablet + .split50-on-tablet {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-2up__col .sw-2up.split50-on-tablet {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sw-2up__col .sw-2up.hide-on-mobile {
    display: none;
  }
}

.sw-2up__col .sw-2up__col {
  margin-top: 0;
}

.sw-2up__col .sw-2up__col:nth-last-child(2):first-child,
.sw-2up__col .sw-2up__col:nth-last-child(2):first-child ~ * {
  width: calc(50% - 15px/ 2);
}

@media screen and (min-width: 768px) {
  .sw-2up__col .sw-2up__col:nth-last-child(2):first-child,
  .sw-2up__col .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up__col .sw-2up__col:nth-last-child(2):first-child,
  .sw-2up__col .sw-2up__col:nth-last-child(2):first-child ~ * {
    width: calc(50% - 30px/ 2);
  }
}

.sw-2up__col > a:not(.sw-imgblock__mainlink) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-decoration: none;
}

@supports (grid-gap: 20px) {
  @media screen and (min-width: 768px) {
    .sw-2up--80x20 {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: calc(75.676% - 20px/ 2) calc(24.325% - 20px/ 2);
          grid-template-columns: calc(75.676% - 20px/ 2) calc(24.325% - 20px/ 2);
    }
  }
  @media screen and (min-width: 1024px) {
    .sw-2up--80x20 {
      -ms-grid-columns: calc(75.676% - 30px/ 2) calc( 24.325% - 30px/ 2);
          grid-template-columns: calc(75.676% - 30px/ 2) calc( 24.325% - 30px/ 2);
    }
  }
}

@media screen and (min-width: 768px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:first-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    width: calc(75.676% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:first-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    width: calc(75.676% - 30px/ 2);
  }
}

@media screen and (max-width: 768px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:first-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    margin-bottom: 0;
    width: 100%;
  }
}

@supports (grid-gap: 20px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:first-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    width: 100%;
  }
}

.sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:first-child, .sw-catering-block
.sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
  width: calc(50% - 15px/ 2);
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:first-child, .sw-catering-block
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    width: calc(75.676% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:first-child, .sw-catering-block
  .sw-2up--80x20 .sw-2up .sw-2up__col:first-child {
    width: calc(75.676% - 30px/ 2);
  }
}

@media screen and (min-width: 768px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:last-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    width: calc(24.325% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:last-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    width: calc(24.325% - 30px/ 2);
  }
}

@media screen and (max-width: 767px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:last-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    display: none;
  }
}

@supports (grid-gap: 20px) {
  .sw-2up--80x20.sw-2up .sw-2up__col:last-child,
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    width: 100%;
  }
}

.sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:last-child, .sw-catering-block
.sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
  width: calc(50% - 15px/ 2);
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:last-child, .sw-catering-block
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    width: calc(24.325% - 20px/ 2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:last-child, .sw-catering-block
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    width: calc(24.325% - 30px/ 2);
  }
}

@media screen and (max-width: 767px) {
  .sw-catering-block .sw-2up--80x20.sw-2up .sw-2up__col:last-child, .sw-catering-block
  .sw-2up--80x20 .sw-2up .sw-2up__col:last-child {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .sw-catering-block #catering-contact {
    text-decoration: underline;
  }
}

.sw-2up__col.sw-up__col--25 {
  margin-top: 15px;
  width: calc(25% - 30px/ 2);
}

.sw-2up__col.sw-up__col--25:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 480px) {
  .sw-2up__col.sw-up__col--25 {
    margin-top: 0;
  }
}

.sw-2up__col.sw-up__col--25 .sw-up__copy {
  padding: 0 10px !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .sw-2up__col.sw-up__col--25 .sw-up__copy {
    font-size: 16px;
    line-height: 24px;
  }
}

.sw-2up__col.sw-up__col--25 .sw-up__copy .sw-up__paragraph {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.sw-2up__col.sw-up__col--25 .object-fit-polyfill img {
  position: relative !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 479px) {
  .sw-2up__col.sw-up__col--25 {
    width: 100%;
  }
}

.sw-2up__col.sw-up__col--25.scEnabledChrome {
  max-width: 25%;
}

.sw-2up__col.sw-up__col--33 {
  width: calc(33% - 30px/ 2) !important;
  margin-top: 15px;
}

.sw-2up__col.sw-up__col--33:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 480px) {
  .sw-2up__col.sw-up__col--33 {
    margin-top: 0;
  }
}

.sw-2up__col.sw-up__col--33 .sw-up__copy {
  padding: 0 10px !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .sw-2up__col.sw-up__col--33 .sw-up__copy {
    font-size: 16px;
    line-height: 24px;
  }
}

.sw-2up__col.sw-up__col--33 .sw-up__copy .sw-up__paragraph {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.sw-2up__col.sw-up__col--33 .object-fit-polyfill img {
  position: relative !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 479px) {
  .sw-2up__col.sw-up__col--33 {
    width: 100% !important;
  }
}

.sw-2up__col.sw-up__col--33.scEnabledChrome {
  max-width: 33%;
}

.sw-2up__col.sw-up__col--66 {
  margin-top: 15px;
  width: calc(67% - 30px/ 2) !important;
}

.sw-2up__col.sw-up__col--66:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 480px) {
  .sw-2up__col.sw-up__col--66 {
    margin-top: 0;
  }
}

.sw-2up__col.sw-up__col--66 .object-fit-polyfill img {
  position: relative !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 479px) {
  .sw-2up__col.sw-up__col--66 {
    width: 100% !important;
  }
}

.sw-2up__col.sw-up__col--66.scEnabledChrome {
  max-width: 66%;
}

@media screen and (min-width: 480px) {
  div.sw-2up__col:first-of-type {
    margin-top: 0;
  }
}

.is-page-editor .sw-2up .scEmptyPlaceholder {
  min-width: 45%;
}

.sw-2up div.sw-imgblock div.sw-imgblock__content {
  position: absolute;
}

.sw-2up .cta50new div.sw-imgblock__content, .sw-2up .cta50new .has-copy div.sw-imgblock__content {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute !important;
  right: 0;
  top: 0;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle {
  position: absolute;
  width: 100%;
  display: inline-block;
  padding: 23px;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle, .sw-2up .cta50new .Large h2 {
  font-size: 65px;
  line-height: 64px;
  /*white-space: nowrap;*/
}

.sw-2up .cta50new div.sw-imgblock__copyTitle, .sw-2up .cta50new .Small h2 {
  font-size: 55px;
  line-height: 64px;
  /*white-space: nowrap;*/
}

.sw-2up .cta50new .is-aligned-bottomcenter .sw-imgblock__copy .sw-imgblock__text, .sw-2up .cta50new .Large {
  font-size: 30px;
}

.sw-2up .cta50new .is-aligned-bottomcenter .sw-imgblock__copy .sw-imgblock__text, .sw-2up .cta50new .Small {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .sw-2up .cta50new div.sw-imgblock__copyTitle {
    position: absolute;
    width: 100%;
    display: inline-block;
    padding: 23px;
  }
}

@media screen and (max-width: 480px) {
  .sw-2up .cta50new div.sw-imgblock__copyTitle {
    position: absolute;
    width: 100%;
    display: inline-block;
    padding: 16px;
  }
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-topcenter {
  top: 0;
  text-align: center;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-topleft {
  top: 0;
  text-align: left;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-topright {
  top: 0;
  text-align: right;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-centerleft {
  text-align: left;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-center {
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-centerright {
  text-align: right;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-bottomleft {
  bottom: 0;
  text-align: left;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-bottomcenter {
  bottom: 0;
  text-align: center;
}

.sw-2up .cta50new div.sw-imgblock__copyTitle.is-aligned-bottomright {
  bottom: 0;
  text-align: right;
}

.sw-2up .cta50new .is-aligned-bottomleft .sw-imgblock__copy, .sw-2up .cta50new .is-aligned-bottomcenter .sw-imgblock__copy, .sw-2up .cta50new .is-aligned-bottomright .sw-imgblock__copy {
  margin-bottom: 20px !important;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.is-page-editor .sw-3up .scEmptyPlaceholder {
  min-width: 32%;
}

.sw-3up {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 15px;
}

@media screen and (min-width: 480px) {
  .sw-3up:not(.sw-3up--friyay) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .sw-3up.sw-3up--friyay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-3up {
    margin-top: 30px;
  }
}

.sw-3up:first-child {
  margin-top: 0;
}

.sw-3up__col {
  margin-top: 15px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sw-3up__col {
    margin-top: 0;
  }
}

.sw-3up__col:first-child, .sw-3up__col.has-link {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-3up--friyay .sw-3up__col:nth-child(1) {
    width: 13.514%;
  }
}

@media screen and (min-width: 768px) {
  .sw-3up--blockquote .sw-3up__col:nth-child(1) {
    width: 22.974%;
  }
}

@media screen and (min-width: 768px) {
  .sw-3up--friyay .sw-3up__col:nth-child(2) {
    width: 50%;
  }
}

.sw-3up--blockquote .sw-3up__col:nth-child(2) {
  background-color: #8bcd32;
}

@media screen and (min-width: 768px) {
  .sw-3up--blockquote .sw-3up__col:nth-child(2) {
    width: 48.65%;
  }
}

@media screen and (min-width: 768px) {
  .sw-3up--friyay .sw-3up__col:nth-child(3) {
    width: 31.172%;
  }
}

@media screen and (min-width: 768px) {
  .sw-3up--blockquote .sw-3up__col:nth-child(3) {
    width: 22.974%;
  }
}

.sw-3up__col.hide-on-mobile + .sw-3up__col {
  margin-top: 0;
}

.is-page-editor .sw-3up__col {
  min-height: 50px;
}

.sw-3up__col.has-link {
  cursor: pointer;
}

.sw-3up__col > a:not(.sw-imgblock__mainlink) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-decoration: none;
}

.sw-3up--blockquote blockquote {
  color: #00572d;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (min-width: 1024px) {
  .sw-3up--blockquote blockquote {
    font-size: 30px;
    line-height: 34px;
  }
}

.contrast-on .sw-3up--blockquote blockquote {
  color: #4c006a;
}

.sw-3up--blockquote cite {
  color: #006230;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}

@media screen and (min-width: 1024px) {
  .sw-3up--blockquote cite {
    font-size: 20px;
    line-height: 28px;
    margin-top: 25px;
  }
}

.contrast-on .sw-3up--blockquote cite {
  color: #4c006a;
}

.executive-chef cite {
  color: #4c006a;
}

.sw-3up--blockquote .sw-imgblock__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: static;
}

.contrast-on .sw-3up--blockquote .sw-imgblock__content {
  background-color: transparent;
}

@media screen and (min-width: 1024px) {
  .sw-3up--blockquote.sw-3up .sw-imgblock__copy {
    margin: 20px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.is-page-editor .sw-4up .scEmptyPlaceholder {
  min-width: 25%;
}

.sw-4up {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .sw-4up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-4up {
    margin-top: 30px;
  }
}

.sw-4up:first-child {
  margin-top: 0;
}

.sw-4up__col {
  margin-top: 15px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sw-4up__col {
    margin-top: 0;
  }
}

.sw-4up__col:first-child, .sw-4up__col.has-link {
  margin-top: 0;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-accordion {
  font-size: 18px;
}

.sw-accordion__item {
  background-color: #f4f5f4;
  margin: 10px 0 0;
}

.sw-accordion__trigger {
  color: #00572d;
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  padding: 15px 50px 15px 15px;
  position: relative;
  text-align: left;
  width: 100%;
}

.sw-accordion__icon {
  display: block;
  height: 23px;
  width: 23px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sw-accordion__icon:before, .sw-accordion__icon:after {
  background-color: #008938;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 23px;
}

.sw-accordion__icon:after {
  margin-top: -1px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

[aria-expanded="true"] .sw-accordion__icon:after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.sw-accordion__panel {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  padding: 5px 15px 15px;
}

.sw-accordion__downloads {
  margin-top: 30px;
}

.sw-accordion__download-item {
  margin: 10px 0 0;
  list-style-type: none;
}

.sw-accordion__download-link {
  color: #008938;
  font-weight: 700;
  text-decoration: none;
}

.sw-accordion__download-link svg,
.sw-accordion__download-link img {
  fill: #00572d;
  height: 13px;
  width: 15px;
}

.sw-accordion__copy ol,
.sw-accordion__copy ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.sw-accordion__copy ul li {
  list-style-type: disc;
}

.sw-notice {
  width: 90%;
  margin: 30px auto 30px auto;
  padding: 20px;
  background-color: #eef8e0;
}

/* bounce */
@-webkit-keyframes bounce {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes bounce {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-alert {
  color: #ffffff;
  padding: 9px 0;
  text-align: center;
  -webkit-transition: padding-bottom .2s ease;
  transition: padding-bottom .2s ease;
}

.sw-container--alert:hover .sw-alert {
  padding-bottom: 20px;
}

.sw-alert a {
  color: #ffffff;
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .sw-alert__mobile {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sw-alert__desktop {
    display: none;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-download-app [class$="-block"]:focus-within {
  outline: #940053 dotted 2px;
}

/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-download-app [class$="-block"]:focus-within {
  outline: #940053 dotted 2px;
}

.sw-mobile-app {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}

@media screen and (min-width: 1024px) {
  .sw-mobile-app {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-mobile-app {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.sw-hero .sw-mobile-app {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .sw-hero .sw-mobile-app {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .sw-mobile-app {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.is-aligned-center .sw-mobile-app {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-mobile-app span.sw-mobile-app__link {
  width: 148px;
  margin-right: 11px;
  height: 44px;
}

@media screen and (max-width: 767px) {
  .sw-mobile-app span.sw-mobile-app__link {
    width: 118px;
    height: 34px;
  }
}

.sw-mobile-app span.sw-mobile-app__link .sw-hero__cta {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .sw-mobile-app span.sw-mobile-app__link .sw-hero__cta {
    margin-bottom: 15px;
  }
}

.has-darkcolor .sw-mobile-app span.sw-mobile-app__link {
  color: #09602b;
}

.sw-mobile-app span.sw-mobile-app__link a {
  color: #ffffff;
}

.sw-mobile-app span.sw-mobile-app__link svg {
  width: 100%;
  height: 100%;
}

.sw-mobile-app span.sw-mobile-app__link.sw-mobile-app__link--btn {
  width: auto;
  min-width: 91px;
}

.sw-hero .sw-mobile-app span.sw-mobile-app__link:first-of-type {
  height: auto;
}

@media screen and (max-width: 767px) {
  .sw-hero .sw-mobile-app span.sw-mobile-app__link:first-of-type {
    width: 100%;
    margin-right: 0;
  }
}

.is-aligned-center .sw-hero .sw-mobile-app span.sw-mobile-app__link:first-of-type {
  width: 100%;
  margin-bottom: 15px;
}

.sw-download-app {
  max-width: 1000px;
  margin: 0 auto;
  /******************************************
*               hero section              *
******************************************/
  /******************************************
*     override default carousel rules     *
******************************************/
  /******************************************************************************
*     MOBILE copy blocks and images for "See more great features" section     *
******************************************************************************/
  /*******************************************************************************
*     DESKTOP copy blocks and images for "See more great features" section     *
*******************************************************************************/
  /*********************************************************
*                legal terms and conditions              *
*********************************************************/
  /******************************************
*              media queries              *
******************************************/
  /* Prevent hand-phone-img from getting too big on tablet */
  /* @media screen and (min-width: 515px) and (max-width: 767px) {
    #app-landing-hand-phone-img {
        width: 65%;
    }
} */
  /* Next two media queries adjust carousel for especially small screens */
  /******************************************
*              sprite rules               *
******************************************/
  /*app-landing-sprites.png*/
}

.sw-download-app .app-landing-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("~/media/CED23AC7C09E47DC87B64A686AF26DA9.ashx") no-repeat;
  /*hero-background.jpg*/
  background-size: cover;
}

.sw-download-app .app-landing-hero-left-div {
  padding: 40px 20px 120px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-download-app .app-landing-hero-right-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 0;
}

.sw-download-app #app-landing-logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  /* prevent image from stretching to fill div */
  margin-bottom: 10px;
}

.sw-download-app h2,
.sw-download-app h3,
.sw-download-app .copy-text {
  line-height: 1.2;
}

.sw-download-app .app-landing-page h1,
.sw-download-app .app-landing-page h3,
.sw-download-app .app-landing-page h2,
.sw-download-app #app-landing-more-features h1,
.sw-download-app #app-landing-more-features h3,
.sw-download-app #app-landing-more-features h2,
.sw-download-app .app-landing-page .copy-text,
.sw-download-app #app-landing-more-features .copy-text {
  font-family: "Roboto";
  font-weight: 700;
}

.sw-download-app #app-landing-TCs > p,
.sw-download-app #app-landing-store-TCs > p,
.sw-download-app #app-landing-features-link > a {
  font-family: "Roboto";
  font-weight: 300;
}

.sw-download-app .app-landing-page h1,
.sw-download-app #app-landing-more-features h1 {
  font-size: 58px;
  line-height: 1;
}

.sw-download-app #app-landing-features-link,
.sw-download-app #app-landing-features-link > a:hover {
  color: #ffcc00 !important;
  /* override !important on h2 a:hover in bundle-mainLayout.css */
}

.sw-download-app #app-landing-features-link > a {
  text-decoration: underline;
  /* override rule on h2 a:hover in bundle-mainLayout.css */
}

.sw-download-app #app-landing-features-link {
  margin-top: 0px;
}

.sw-download-app .app-landing-page h3,
.sw-download-app #app-landing-more-features h3,
.sw-download-app .app-landing-page .copy-text {
  font-size: 22px;
}

.sw-download-app #app-landing-store-badges {
  margin-top: 10px;
}

.sw-download-app #app-landing-store-badges > a > img {
  max-height: 40px;
}

.sw-download-app #app-landing-hand-phone-img {
  width: 100%;
  margin-top: 40px;
  padding-top: 113%;
  background: url("~/media/56BA2E29236B4903942EAB4D0A8F1E5E.ashx") no-repeat right bottom;
  /*hand-smartphone.png*/
  background-size: 100%;
}

.sw-download-app #app-landing-carousel-indicators {
  bottom: -50px;
}

.sw-download-app #app-landing-carousel-inner {
  margin-bottom: 50px;
}

.sw-download-app #app-landing-carousel-inner > .item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-download-app #app-landing-mobile-carousel .carousel-indicators li,
.sw-download-app #app-landing-mobile-carousel .carousel-indicators .active {
  width: 20px;
  height: 20px;
  margin: 3px;
  border: none;
  background-color: #dedede;
}

.sw-download-app #app-landing-mobile-carousel .carousel-indicators .active {
  background-color: #009131;
}

.sw-download-app #app-landing-mobile-carousel {
  padding-top: 30px;
}

.sw-download-app #app-landing-more-features [class$="-block"],
.sw-download-app #see-more-great-features [class$="-block"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
  padding-top: 15%;
}

.sw-download-app #app-landing-more-features [class$="-block"] h2,
.sw-download-app #see-more-great-features [class$="-block"] h2 {
  color: #009131;
  font-size: 30px;
}

.sw-download-app #app-landing-more-features [class$="-block"] h3,
.sw-download-app #app-landing-more-features [class$="-block"] .copy-text,
.sw-download-app #see-more-great-features [class$="-block"] h3,
.sw-download-app #see-more-great-features [class$="-block"] .copy-text {
  color: #009131;
  font-size: 16px;
  margin-top: 10px;
}

.contrast-on .sw-download-app #app-landing-more-features [class$="-block"] .copy-text, .contrast-on
.sw-download-app #see-more-great-features [class$="-block"] .copy-text {
  color: #000000;
}

.sw-download-app .app-landing-page a,
.sw-download-app #app-landing-more-features a {
  color: inherit;
}

.sw-download-app .phone-frame {
  position: relative;
  background: url("~/media/8D44F5399050480886953D23F14B5930.ashx") no-repeat;
  /*phone-shell.png*/
  background-size: 100%;
  width: 55%;
}

.sw-download-app .phone-frame:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 200%;
}

.sw-download-app .phone-frame img {
  position: absolute;
  width: 77%;
  top: 14.02985%;
  left: 10.59552%;
}

@media screen and (min-width: 768px) {
  .sw-download-app #app-landing-more-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
  }
  .sw-download-app .more-features-left-div {
    text-align: right;
    margin-left: -15px;
    margin-top: 15px;
    margin-right: -50px;
  }
  .sw-download-app .more-features-center-div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1.1 !important;
        -ms-flex: 1.1 !important;
            flex: 1.1 !important;
  }
  .sw-download-app .more-features-right-div {
    margin-right: -15px;
    margin-top: 15px;
    margin-left: -50px;
  }
  .sw-download-app [class^="more-features-"][class$="-div"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-download-app #app-landing-more-features [class$="-block"] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    height: 210px;
    z-index: 0;
    margin: 10px 0;
    cursor: pointer;
  }
  .sw-download-app #app-landing-more-features [class$="-block"]:hover {
    opacity: 0.8;
  }
  .sw-download-app #app-landing-more-features .more-features-active[class$="-block"]:hover {
    opacity: 1;
  }
  .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] {
    background-color: #008938;
    opacity: 1;
    cursor: default;
  }
  .sw-v2.contrast-on .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] h3,
  .sw-v2.contrast-on .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] h2,
  .sw-v2.contrast-on .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] .copy-text,
  .sw-v2.contrast-on .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] a {
    color: #ffffff !important;
  }
  .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] h2,
  .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] h3,
  .sw-download-app #app-landing-more-features .more-features-active[class$="-block"] .copy-text {
    color: white;
  }
  .sw-download-app .more-features-left-div [class$="-block"] {
    margin-left: -15px;
  }
  .sw-download-app .more-features-right-div [class$="-block"] {
    margin-right: -15px;
  }
  .sw-download-app .more-features-left-div [class$="-block"] [class$="-copy"] {
    margin-right: 50px;
  }
  .sw-download-app .more-features-right-div [class$="-block"] [class$="-copy"] {
    margin-left: 50px;
  }
  .sw-download-app #app-landing-more-features [class$="-block"] h2 {
    font-size: 23px;
    margin-bottom: 0px;
  }
  .sw-download-app #app-landing-more-featurese [class$="-block"] h3,
  .sw-download-app #app-landing-more-featurese [class$="-block"] .copy-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
  }
  .sw-download-app #app-landing-more-features .phone-frame {
    background-size: 100%;
    width: 100%;
    z-index: 1;
  }
  .sw-download-app #app-landing-more-features .phone-frame:before {
    padding-top: 200%;
  }
  .sw-download-app #app-landing-more-features .phone-frame > img {
    width: 76%;
    top: 120px;
    left: 11.45%;
  }
  .sw-download-app .more-features-left-div [class^="app-landing-sprites"] {
    margin-right: 2.5%;
    margin-top: 10px;
    /* aligns tops of icons with tops of h2s */
  }
  .sw-download-app .more-features-right-div [class^="app-landing-sprites"] {
    margin-left: 2.5%;
    margin-top: 10px;
  }
}

.sw-download-app #app-landing-TCs {
  margin: 60px auto;
}

.sw-download-app #app-landing-TCs p {
  color: black;
  margin-bottom: 15px;
}

.sw-download-app #app-landing-store-TCs {
  margin-top: 30px;
}

.sw-download-app #googleTC,
.sw-download-app #appleTC {
  display: inline;
}

@media screen and (max-width: 767px) {
  .sw-download-app {
    /* fill horizontal viewport */
  }
  .sw-download-app [class$="-block"] h3,
  .sw-download-app [class$="-block"] .copy-text {
    font-weight: 300;
  }
  .sw-download-app .app-landing-page,
  .sw-download-app #app-landing-more-features {
    margin-left: -15px;
    margin-right: -15px;
  }
  .sw-download-app .app-landing-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sw-download-app .app-landing-hero-left-div {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
  }
  .sw-download-app .app-landing-hero-right-div {
    display: block;
  }
  .sw-download-app #app-landing-hand-phone-img {
    margin-top: -50px;
    background-position: right bottom -90px;
  }
  .sw-download-app .app-landing-page h2,
  .sw-download-app #app-landing-more-features h2 {
    font-size: 22px;
    margin-top: 0px;
  }
  .sw-download-app .app-landing-page h1,
  .sw-download-app #app-landing-more-features h1 {
    font-size: 46px;
  }
  .sw-download-app #app-landing-store-badges > a > img {
    max-height: 65px;
    margin: 5px;
  }
  .sw-download-app #app-landing-more-features {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sw-download-app #app-landing-mobile-carousel {
    display: none;
  }
  .sw-download-app #app-landing-TCs p {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .sw-download-app #app-landing-more-features .phone-frame > img {
    top: 82px;
  }
  .sw-download-app .more-features-left-div [class$="-block"] [class$="-copy"] {
    margin-right: 40px;
  }
  .sw-download-app .more-features-right-div [class$="-block"] [class$="-copy"] {
    margin-left: 40px;
  }
}

@media screen and (max-width: 424px) {
  .sw-download-app .app-landing-page [class$="-block"] > h2,
  .sw-download-app #app-landing-more-features [class$="-block"] > h2 {
    font-size: 22px;
  }
  .sw-download-app .app-landing-page [class$="-block"] > h3,
  .sw-download-app #app-landing-more-features [class$="-block"] > h3,
  .sw-download-app .app-landing-page [class$="-block"] > .copy-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 424px), (max-width: 991px) and (min-width: 768px) {
  .sw-download-app {
    /* Firefox support for this scaling is finicky */
  }
  .sw-download-app [class$="-block"] h2 {
    font-size: 20px !important;
  }
  .sw-download-app .app-landing-page [class$="-block"] h3,
  .sw-download-app #app-landing-more-features [class$="-block"] h3,
  .sw-download-app .app-landing-page [class$="-block"] .copy-text {
    font-size: 12px;
  }
  .sw-download-app .app-landing-page [class$="-block"],
  .sw-download-app #app-landing-more-features [class$="-block"] {
    padding-top: 10%;
  }
  .sw-download-app .app-landing-page [class^="app-landing-sprites"],
  .sw-download-app #app-landing-more-features [class^="app-landing-sprites"] {
    zoom: 0.7;
    -moz-transform: scale(0.7);
    -moz-transform-origin: bottom left;
  }
  .sw-download-app .app-landing-page .earn-block,
  .sw-download-app #app-landing-more-features .earn-block {
    padding-top: 5%;
  }
  .sw-download-app #app-landing-more-features [class$="-block"] {
    height: 200px;
    /* for tablet view */
  }
}

@media screen and (min-width: 425px) and (max-width: 767px) {
  .sw-download-app [class$="-block"] h2 {
    font-size: 30px;
  }
  .sw-download-app [class$="-block"] h3,
  .sw-download-app [class$="-block"] .copy-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
  .sw-download-app h1 {
    font-size: 38px;
  }
  .sw-download-app h2 {
    font-size: 18px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .sw-download-app h1 {
    font-size: 40px;
  }
  .sw-download-app h2 {
    font-size: 18px;
  }
}

.sw-download-app .app-landing-sprites {
  background: url("~/media/A56B56A6AE9C40DFA8FE316B63BFC9D8.ashx") no-repeat;
}

.sw-download-app .active-customize-icon {
  min-width: 42px;
  width: 42px;
  height: 72px;
  background-position: -336px 0;
}

.sw-download-app .active-deals-icon {
  min-width: 71px;
  width: 71px;
  height: 72px;
  background-position: -73px 0;
}

.sw-download-app .active-earn-icon {
  min-width: 62px;
  width: 62px;
  height: 71px;
  background-position: -215px 0;
}

.sw-download-app .active-faves-icon {
  min-width: 69px;
  width: 69px;
  height: 71px;
  background-position: -145px 0;
}

.sw-download-app .active-order-ahead-icon {
  min-width: 72px;
  width: 72px;
  height: 68px;
  background-position: 0 0;
}

.sw-download-app .active-scan-icon {
  min-width: 57px;
  width: 57px;
  height: 72px;
  background-position: -278px 0;
}

.sw-download-app .customize-icon {
  min-width: 42px;
  width: 42px;
  height: 72px;
  background-position: -203px -72px;
}

.sw-download-app .deals-icon {
  min-width: 71px;
  width: 71px;
  height: 72px;
  background-position: 0 -72px;
}

.sw-download-app .earn-icon {
  min-width: 62px;
  width: 62px;
  height: 71px;
  background-position: -246px -73px;
}

.sw-download-app .faves-icon {
  min-width: 69px;
  width: 69px;
  height: 71px;
  background-position: -309px -73px;
}

.sw-download-app .order-ahead-icon {
  min-width: 72px;
  width: 72px;
  height: 68px;
  background-position: -72px -76px;
}

.sw-download-app .scan-icon {
  min-width: 57px;
  width: 57px;
  height: 72px;
  background-position: -145px -72px;
}

.sw-download-app #content-wrap {
  padding-left: 0;
  padding-right: 0;
}

.sw-download-app #main_0_centercolumn_0_centercolumnrow0_0_RichTextContainer {
  margin-top: 0px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
[class*='sw-ar-']:before {
  content: "";
  float: left;
  height: 0;
  margin-left: -1px;
  width: 1px;
}

[class*='sw-ar-']:after {
  content: "";
  clear: both;
  display: table;
}

.sw-ar-1x1:before {
  padding-top: 100%;
}

.sw-ar-36x17:before {
  padding-top: calc(17/36 * 100%);
}

.sw-ar-55x17:before {
  padding-top: calc(17/55 * 100%);
}

.sw-ar-74x17:before {
  padding-top: 100%;
}

@media screen and (min-width: 768px) {
  .sw-ar-74x17:before {
    padding-top: calc(17/74 * 100%);
  }
}

.sw-ar-75x173:before {
  padding-top: calc(173/75 * 100%);
}

.sw-ar-555x346:before {
  padding-top: calc(346/555 * 100%);
}

.sw-ar-767x959:before {
  padding-top: calc(959/767 * 100%);
}

@media screen and (min-width: 768px) {
  .sw-ar-767x959:before {
    content: none;
  }
}

@media screen and (min-width: 768px) {
  .sw-ar-767x959:after {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .sw-ar-1x1--mobile:before {
    content: "";
    float: left;
    height: 0;
    margin-left: -1px;
    padding-top: 100%;
    width: 1px;
  }
}

@media screen and (max-width: 767px) {
  .sw-ar-1x1--mobile:after {
    content: "";
    clear: both;
    display: table;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-bio {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.is-page-editor .sw-bio {
  min-height: 50px;
}

@media screen and (max-width: 1023px) {
  .sw-bio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sw-bio__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
  .sw-bio__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .sw-bio__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) and (min-width: 479px) {
  .sw-bio__row:nth-child(n + 3) {
    margin-top: 15px;
  }
}

div.sw-bio__row:last-of-type {
  margin-bottom: 0;
}

.sw-bio__copy,
.sw-bio__headshot {
  color: #fff;
  width: calc(50% - 20px / 2);
}

@media screen and (max-width: 1023px) {
  .sw-bio__copy,
  .sw-bio__headshot {
    width: calc(100% - 20px / 2);
  }
}

@media screen and (max-width: 479px) {
  .sw-bio__copy,
  .sw-bio__headshot {
    width: 100%;
  }
}

.sw-bio__headshot {
  margin-right: 30px;
}

.sw-bio__headshot .sw-up__img {
  max-width: 100%;
}

@media screen and (max-width: 479px) {
  .sw-bio__headshot {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.sw-bio__copy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .sw-bio__copy {
    height: 100%;
  }
}

.sw-bio__copy.bg-blue {
  background-color: #00a7e9;
}

.sw-bio__copy.bg-orange {
  background-color: #ff8200;
}

.sw-bio__copy.bg-green {
  background-color: #8bcd32;
}

.sw-bio__copy.bg-yellow {
  background-color: #f2b700;
}

.sw-bio__copy.bg-purple {
  background-color: #4c006a;
}

.sw-bio__copy.bg-gray {
  background-color: #f4f5f4;
}

.sw-bio__copy.bg-blue, .sw-bio__copy.bg-orange, .sw-bio__copy.bg-green, .sw-bio__copy.bg-yellow, .sw-bio__copy.bg-purple, .sw-bio__copy.bg-gray {
  color: #ffffff;
}

.contrast-on .sw-bio__copy.bg-blue, .contrast-on .sw-bio__copy.bg-orange, .contrast-on .sw-bio__copy.bg-green, .contrast-on .sw-bio__copy.bg-yellow, .contrast-on .sw-bio__copy.bg-purple, .contrast-on .sw-bio__copy.bg-gray {
  color: #4c006a;
}

.sw-bio__copy .sw-bio__copy__block {
  margin: 30px;
}

@media screen and (min-width: 1024px) {
  .sw-bio__copy .sw-bio__copy__block {
    height: calc(100% - 90px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sw-bio__copy .sw-bio__name,
.sw-bio__copy .sw-bio__position,
.sw-bio__copy .sw-bio__text {
  color: inherit;
}

.sw-bio__copy .sw-bio__name {
  line-height: 32px;
  font-size: 24px;
  font-weight: 900;
}

@media screen and (min-width: 480px) {
  .sw-bio__copy .sw-bio__name {
    font-size: 30px;
    line-height: 38px;
  }
}

.sw-bio__copy .sw-bio__title {
  display: block;
  line-height: 27px;
}

.sw-bio__copy .sw-bio__position {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 10px;
}

@media screen and (min-width: 480px) {
  .sw-bio__copy .sw-bio__position {
    font-size: 30px;
    line-height: 38px;
  }
}

.sw-bio__copy .sw-bio__text {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.sw-bio__copy .sw-bio__text p {
  font-weight: inherit;
}

@media screen and (min-width: 768px) {
  .sw-bio__copy .sw-bio__text {
    font-size: 20px;
    line-height: 28px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-btn {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px 8px;
  text-decoration: none;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .sw-btn {
    font-size: 18px;
    padding: 14px 15px 13px;
  }
}

.sw-btn--primary {
  background-color: #008938;
  color: #ffffff;
}

.sw-btn--primary:hover, .sw-btn--primary:focus, a:focus > .sw-btn--primary {
  background-color: #006230;
  color: #ffffff;
}

.sw-btn--secondary {
  background-color: #4c006a;
  color: #ffffff;
}

.sw-btn.sw-goto-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 0;
}

.contrast-on .sw-btn--primary:hover,
.contrast-on .sw-btn--primary:focus, .contrast-on a:focus > .sw-btn--primary {
  color: #006230;
  background-color: #ffffff;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
@media screen and (min-width: 768px) {
  .sw-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sw-cards:after {
  content: "";
  display: block;
}

@media screen and (min-width: 768px) {
  .sw-cards:after {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (min-width: 1024px) {
  .sw-cards:after {
    width: calc(100% / 3 - 20px);
  }
}

.sw-cards__item {
  margin-bottom: 15px;
  /* perspective: 1000px;
    transform-style: preserve-3d;

    &:hover,
    &:focus,
    &.is-focused {
        .sw-imgblock__content {
            transform: rotateY(0deg);
        }

        .sw-imgblock__media {
            transform: rotateY(180deg);
        }
    }

    .sw-imgblock--category {
        transition: 0.6s;
        transform-style: preserve-3d;
    }
    
    .sw-imgblock__media,
    .sw-imgblock__content {
        backface-visibility: hidden;
        transition: 0.6s;
        transform-style: preserve-3d;
    }

    .sw-imgblock__media {
        z-index: 2;
        transform: rotateY(0deg);
    }

    .sw-imgblock__content {
        transform: rotateY(-180deg);
    }

    //flip style for modern browsers
    @supports (backface-visibility: hidden) {
        perspective: 1000px;
        transform-style: none;

        &:hover,
        &:focus,
        &.is-focused {

            .sw-imgblock--category {
                transform: rotateY(180deg);
            }

            .sw-imgblock__media {
                transform: none;
                z-index: 2;
            }
    
            .sw-imgblock__content {
                transform: rotateY(180deg);
            }
        }

        .sw-imgblock--category {
            transition: 0.6s;
            transform-style: preserve-3d;
        }

        .sw-imgblock__media,
        .sw-imgblock__content {
            backface-visibility: hidden;
            transition: none;
            transform-style: none;
        }       
    } */
}

@media screen and (min-width: 768px) {
  .sw-cards__item {
    margin-bottom: 20px;
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (min-width: 1024px) {
  .sw-cards__item {
    margin-bottom: 30px;
    width: calc(100% / 3 - 20px);
  }
}

.sw-cards__item .sw-imgblock__content {
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.no-slideup .sw-cards__item .sw-imgblock__content {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.sw-cards__item:hover .sw-imgblock__content, .sw-cards__item:focus .sw-imgblock__content, .sw-cards__item.is-focused .sw-imgblock__content {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .sw-cards--2up .sw-cards__item {
    width: calc(100% / 2 - 15px);
  }
}

.sw-cards__title {
  font-size: 20px;
  font-weight: 900;
  margin-top: 8px;
  text-align: center;
  line-height: 1.2;
}

.sw-cards__title a {
  text-decoration: none;
}

.sw-cards__meta {
  color: #4c006a;
  display: block;
  text-transform: uppercase;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-contact__panel {
  font-size: 18px;
  margin-bottom: 40px;
}

.sw-contact__panel--separator {
  border-bottom: #c6c6c6 solid 1px;
  padding-bottom: 35px;
}

.sw-contact-us-panel__heading {
  font-size: 24px;
  line-height: 28px;
  margin-top: 30px;
  margin-bottom: 26px;
  color: #00572d;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .sw-contact-us-panel__heading {
    font-size: 30px;
    line-height: 34px;
  }
}

.sw-contact__panel__title {
  color: #00572d;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .sw-contact__panel__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-contact__panel__copy {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .sw-contact__panel__copy {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-contact__panel__link {
  display: block;
}

.sw-contact__panel__link a {
  color: #008938;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .sw-contact__panel__link a {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-contact__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 20px;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 480px) {
  .sw-contact__dropdown {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 48px;
  }
}

.sw-contact__dropdown__select {
  background-color: #008938;
  border: 0;
  background-image: url("/SubwayV2/build/img/icons/caret-down-solid-white.svg");
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 10px;
  color: #ffffff;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  height: 48px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-right: 20px;
  flex-grow: 2;
  padding: 10px 35px 10px 10px;
  border-radius: 0;
}

.sw-contact__dropdown__select::-ms-expand {
  display: none;
}

@media all and (max-width: 767px) {
  .sw-contact__dropdown__select {
    width: 80%;
  }
}

@media all and (max-width: 479px) {
  .sw-contact__dropdown__select {
    width: 100%;
    margin-right: auto;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sw-contact__dropdown__select {
    background-image: url("../img/caret-down-white.png");
  }
}

.sw-contact__dropdown__select option {
  background-color: #ffffff;
  padding: 14px 15px 13px;
  color: #222222;
  margin-bottom: 20px;
  min-height: 30px;
  text-transform: uppercase;
  position: relative;
  display: block;
  height: 48px;
}

.sw-contact__dropdown__select option:hover {
  -webkit-box-shadow: 0 0 10px 100px #f4f5f4 inset;
          box-shadow: 0 0 10px 100px #f4f5f4 inset;
}

.sw-contact__dropdown__button {
  margin-top: 20px;
  height: 45px;
  width: 75px;
}

@media all and (max-width: 1024px) {
  .sw-contact__dropdown__button {
    padding-top: 16px;
  }
}

@media screen and (min-width: 480px) {
  .sw-contact__dropdown__button {
    margin-top: 0;
    width: 70px;
    height: 48px;
    font-size: 18px;
  }
}

.sw-v2 #v2main_0_insetcontainer_8c8640a04aaa4948b34451118ab9bb3e_0_subwayV1ContactUsForm_MainForm {
  width: 98%;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-content-block h3 {
  color: #008938;
}

a .sw-content-block h3 {
  color: #12582e;
}

.sw-content-block .sw-content-block__subheading {
  font-size: 30px;
  font-weight: 400;
  display: block;
}

.sw-content-block p {
  margin-top: 8px;
}

.sw-content-block .sw-content-block__btn {
  margin-top: 8px;
}

.sw-up__col.sw-up__col--content-block {
  padding-bottom: 0;
}

.sw-up__col.sw-up__col--content-block[class*="bg-"] {
  padding-bottom: 42px;
}

.sw-up__col.sw-up__col--content-block .sw-up__img {
  margin-top: -42px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-up__col.sw-up__col--content-block .sw-up__copy {
  padding: 0 42px;
}

@media screen and (max-width: 479px) {
  .sw-up__col.sw-up__col--content-block .sw-up__copy {
    padding: 0 20px;
  }
}

.sw-up__col.sw-up__col--content-block .sw-up__copy .sw-up__paragraph {
  margin-top: 5px;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerleft {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerleft .sw-up__copy {
  text-align: left;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerleft .sw-imgblock__mainlink {
  margin-left: 42px;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerright {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerright .sw-up__copy {
  text-align: right;
}

.sw-up__col.sw-up__col--content-block.is-aligned-centerright .sw-imgblock__mainlink {
  margin-right: 42px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-contrast {
  color: #777777;
  display: inline-block;
  font-weight: 700;
  padding: 0 0 0 15px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: top;
}

@media screen and (max-width: 479px) {
  .sw-contrast {
    text-align: left;
  }
}

[dir="rtl"] .sw-contrast {
  padding: 0 15px 0 0;
}

.sw-mainnav .sw-contrast {
  font-size: 18px;
}

.language-dd-on .sw-mainnav .sw-contrast {
  display: none;
}

.sw-contrast:before {
  background-color: #777777;
  content: "";
  display: block;
  height: 11px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}

[dir="rtl"] .sw-contrast:before {
  left: auto;
  right: 0;
}

.sw-mainnav .sw-contrast:before {
  content: none;
}

.contrast-on .sw-contrast {
  color: #000000;
}

.sw-contrast__button {
  background-color: #ffffff;
  border: 1px solid #006230;
  border-radius: 10px;
  display: inline-block;
  height: 18px;
  margin: -2px 0 0 5px;
  position: relative;
  vertical-align: top;
  width: 32px;
}

[dir="rtl"] .sw-contrast__button {
  margin: -2px 5px 0 0;
}

.contrast-on .sw-contrast__button {
  background-color: #006230;
  border-color: #006230;
}

.sw-mainnav .sw-contrast__button {
  border-radius: 14px;
  height: 25px;
  margin-left: 11px;
  width: 45px;
}

[dir="rtl"] .sw-mainnav .sw-contrast__button {
  margin: -2px 11px 0 0;
}

.sw-contrast__button:before {
  background-color: #006230;
  border-radius: 50%;
  content: "";
  display: block;
  height: 11px;
  left: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 11px;
}

[dir="rtl"] .sw-contrast__button:before {
  left: auto;
  right: 3px;
}

.contrast-on .sw-contrast__button:before {
  background-color: #ffffff;
  -webkit-transform: translate(13px, -50%);
      -ms-transform: translate(13px, -50%);
          transform: translate(13px, -50%);
}

[dir="rtl"] .contrast-on .sw-contrast__button:before {
  -webkit-transform: translate(-13px, -50%);
      -ms-transform: translate(-13px, -50%);
          transform: translate(-13px, -50%);
}

.sw-mainnav .sw-contrast__button:before {
  height: 16px;
  left: 4px;
  width: 16px;
}

.contrast-on .sw-mainnav .sw-contrast__button:before {
  -webkit-transform: translate(19px, -50%);
      -ms-transform: translate(19px, -50%);
          transform: translate(19px, -50%);
}

[dir="rtl"] .contrast-on .sw-mainnav .sw-contrast__button:before {
  -webkit-transform: translate(-19px, -50%);
      -ms-transform: translate(-19px, -50%);
          transform: translate(-19px, -50%);
}

@media screen and (max-width: 479px) {
  .sw-contrast__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    margin-left: 0;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/* Webfont: SubwaySansCond-Black */
@font-face {
  font-family: 'SubwaySansCondBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Bold */
@font-face {
  font-family: 'SubwaySansCondBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Medium */
@font-face {
  font-family: 'SubwaySansCondMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Black */
@font-face {
  font-family: 'SubwaySansLCGBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Bold */
@font-face {
  font-family: 'SubwaySansLCGBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-BoldItalic */
@font-face {
  font-family: 'SubwaySansLCGBoldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Medium */
@font-face {
  font-family: 'SubwaySansLCGMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-MediumItalic */
@font-face {
  font-family: 'SubwaySansLCGMediumItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Regular */
@font-face {
  font-family: 'SubwaySansLCGRegular';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-RegularItalic */
@font-face {
  font-family: 'SubwaySansLCGRegularItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Semibold */
@font-face {
  font-family: 'SubwaySansLCGSemibold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-SemiboldItalic */
@font-face {
  font-family: 'SubwaySansLCGSemiboldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Super */
@font-face {
  font-family: 'SubwaySansLCGSuper';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

#onetrust-consent-sdk #onetrust-pc-btn-handler, #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link {
  width: 160px;
  font-size: 13px;
  font-family: 'SubwaySansLCGBold';
}

#onetrust-consent-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler {
  width: 170px;
  font-size: 13px;
  color: #008938;
  font-family: 'SubwaySansLCGBold';
  padding: 10px 8px;
}

#onetrust-consent-sdk #onetrust-banner-sdk {
  font-size: large;
  font-family: 'SubwaySansLCGRegular';
  padding: 10px 8px;
}

#onetrust-button-group {
  font-family: 'SubwaySansLCGRegular';
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#onetrust-pc-btn-handler {
  width: 160px;
}

#onetrust-accept-btn-handler {
  width: 160px;
}

#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button {
  width: 30%;
  font-family: 'SubwaySansLCGRegular';
  font-size: small;
  letter-spacing: .83008px;
  display: block;
}

#onetrust-banner-sdk #onetrust-button-group {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media only screen and (min-width: 1280px) {
  #onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent {
    font-size: .913em;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media only screen and (min-width: 1280px) {
  #onetrust-banner-sdk #onetrust-button-group {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    padding-left: 150px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  #onetrust-banner-sdk #onetrust-button-group {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    padding-left: 100px;
  }
}

@media only screen and (min-width: 991px) and (max-width: 1023px) {
  #onetrust-banner-sdk #onetrust-button-group {
    position: relative;
    right: 69%;
  }
}

@media only screen and (min-device-width: 1px) and (max-width: 990px) {
  #onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent {
    font-size: .913em;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  #onetrust-banner-sdk #onetrust-button-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    right: 130px;
    position: relative;
    padding-left: 0px;
  }
}

@media only screen and (min-device-width: 1px) and (max-width: 896px) {
  #onetrust-banner-sdk #onetrust-button-group {
    margin-left: auto;
    margin-right: auto !important;
    position: static;
  }
  #onetrust-pc-btn-handler {
    width: 160px;
  }
  #onetrust-accept-btn-handler {
    width: 160px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-country_headline {
  color: #00572d;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 45px auto;
  width: 100%;
  max-width: 965px;
}

@media (max-width: 768px) {
  .sw-country__column {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .sw-country__column ~ .sw-country__column .sw-country__row--header {
    display: none;
  }
}

.sw-country__column table {
  width: 100%;
  max-width: 100%;
}

.sw-country__column table thead th {
  padding: 13px 15px 10px 15px;
}

.sw-country__column table thead th ~ th {
  text-align: right;
  width: 40%;
}

.sw-country__column table td {
  padding: 23px 15px 10px 15px;
}

.sw-country__column table td ~ td {
  text-align: right;
}

.sw-country__row {
  border-bottom: #c7c6c6 solid 1px;
}

.sw-country__row--header {
  background-color: #f4f5f4;
  border-bottom: 0;
  color: #00572d;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  padding: 15px 15px 10px 15px;
  position: relative;
  right: 15px;
}

@media only screen and (max-width: 768px) {
  .sw-country__row--header {
    right: 0px;
  }
}

.sw-country__row_v2 {
  padding: 23px 15px 10px 15px;
  border-bottom: #c7c6c6 solid 1px;
  width: 99%;
}

.sw_country__row--header-text-v2 {
  width: 50%;
  display: inline-block;
}

.sw-country__name {
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-country__name a {
  text-decoration: none;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.sw-country__name a:hover {
  text-decoration: underline;
}

.sw-country__name .sw-country__flag {
  margin-right: 10px;
  height: 13px;
  width: auto;
}

.sw-country__back {
  display: block;
  clear: both;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .sw-country__back {
    padding-top: 10px;
  }
}

.sw-country__lang {
  margin-left: 13px;
  display: inline;
}

.sw-country__lang:before {
  content: "(";
  color: #008938;
  display: inline;
}

.sw-country__lang:after {
  content: ")";
  color: #008938;
  display: inline;
}

.sw-country__lang span:after {
  content: " | ";
  display: inline;
}

.sw-country__lang span:last-of-type:after {
  content: "";
}

.sw-country__lang a {
  color: #008938;
  text-decoration: none;
  display: inline;
  text-transform: none;
}

.sw-country__lang a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 722px) {
  .modal-header .close-deliverytype {
    font-size: 30px;
    color: green;
    margin-right: 5px;
    opacity: 1;
    position: relative;
    bottom: 10px;
    left: 10px;
    float: right !important;
    font-weight: bold;
    text-shadow: 0 1px 0 #ffffff;
    filter: alpha(opacity=20);
  }
  .modal-content-deliverytype {
    height: auto !important;
  }
  .modal-deliverytype-header-text {
    text-align: center;
    font-family: sans-serif;
    line-height: normal;
    font-size: 16px !important;
    margin-left: 10px;
    font-weight: 800;
  }
  .cta-deliverytype-text {
    position: relative;
    top: 0px !important;
    text-align: center;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 10% !important;
  }
  ul.delivery-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .modal-dialog-deliverytype {
    position: fixed;
    bottom: -1%;
    width: 95% !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    height: auto;
  }
  div.delivery-type-ul {
    float: left;
    margin: 2px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
    padding-left: 0px !important;
    width: auto !important;
  }
  .delivery-type-ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  li.delivery-type {
    float: left;
    width: 100%;
  }
  button#btnDelivery, button#btnCurbsidePickup, button#btnInStorePickup {
    width: 100%;
  }
  /* NEVER EVER EVER!!! USE A GLOBAL DIV STYLE!!!!
    div p {
        text-align: left !important;
        font-family: sans-serif;
        line-height: normal;
        font-size: 100%;
        padding-top: 25px !important;
        margin-left: 25px;
        font-weight :800 !important;
    }
    */
  /* Bug Fix TW */
  .cta-deliverytype-text1 {
    display: block;
    margin-left: 25px;
    margin-top: 20px;
  }
  .cta-deliverytype-text2 {
    display: block;
    margin-left: 25px;
    margin-top: 20px;
  }
  .cta-deliverytype-text3 {
    display: block;
    margin-left: 25px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 723px) {
  .modal-header-deliverytype {
    height: 55px;
  }
  .modal-header .close-deliverytype {
    margin-top: -2px;
    font-size: 40px;
    color: green;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 21;
    top: 0;
    width: 48px;
    height: 48px;
    border: none;
    background-position: center;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 19px;
    right: 2px;
  }
}

.modal-dialog-deliverytype {
  width: 675px;
  margin-left: auto;
  margin-right: auto;
}

.modal-deliverytype-header-text {
  text-align: center;
  font-family: sans-serif;
  line-height: normal;
  font-size: 18px;
  /* margin-top: 43px; */
  font-weight: 800;
}

.modal-content-deliverytype {
  background-color: #ffffff;
  border-radius: 0px;
  height: 250px;
}

#deliverytypeModal {
  height: 100%;
}

.modal-body-deliverytype, .modal-header-deliverytype, .modal-footer-deliverytype {
  background-color: #ffffff;
}

.modal-header-close-button {
  font-size: 20px;
  position: relative;
  top: 2px;
}

.cta-deliverytype {
  position: relative;
  left: 0px;
  top: 10px;
  text-align: center;
  font-family: sans-serif;
  line-height: normal;
  font-size: 100%;
}

.cta-deliverytype-header {
  position: relative;
  left: 15px;
  top: 10px;
  text-align: center;
  font-family: sans-serif;
  line-height: normal;
  font-size: 15px !important;
}

.cta-deliverytype-img {
  vertical-align: bottom;
  border: 0;
}

.cta-deliverytype-text {
  position: relative;
  top: 20px;
  text-align: center;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 10%;
}

delivery-type-li-hr {
  display: none;
}

.modal-body-deliverytype {
  position: relative;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.pac-container {
  z-index: 1051 !important;
}

div.delivery-type-ul {
  float: left;
  margin: 10px;
  overflow-wrap: break-word;
  width: 140px;
}

/* NEVER EVER EVER!!! USE A GLOBAL DIV STYLE!!!!
/*
div p {
    text-align: center;
    font-family: sans-serif;
    line-height: normal;
    font-size: 100%;
    padding-top: 5px;
    font-weight: 800 !important;
}
*/
li.delivery-type {
  float: left;
}

/* Bug Fix TW */
.cta-deliverytype-text1 {
  display: block;
  font-family: sans-serif;
  padding-top: 5px;
  font-weight: 800;
}

.cta-deliverytype-text2 {
  display: block;
  font-family: sans-serif;
  padding-top: 5px;
  font-weight: 800;
}

.cta-deliverytype-text3 {
  display: block;
  font-family: sans-serif;
  padding-top: 5px;
  font-weight: 800;
}

ul.delivery-ul {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-disclaimer {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.sw-disclaimer.has-spacing {
  padding: 30px;
}

[class*="bg-"] .sw-disclaimer {
  color: #ffffff;
}

.bg-none .sw-disclaimer {
  color: #444343;
  padding: 0;
}

.contrast-on .sw-disclaimer {
  color: #4c006a;
}

.sw-disclaimer.sw-disclaimer--anchored {
  color: #ffffff;
  padding-top: 10px;
  text-align: inherit;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .sw-disclaimer.sw-disclaimer--anchored {
    margin-bottom: -10px;
  }
}

.sw-disclaimer.sw-disclaimer--anchored [role="button"] {
  cursor: pointer;
  text-decoration: underline;
}

.sw-disclaimer.sw-disclaimer--fixed {
  color: #ffffff;
  position: absolute;
  left: 10px;
  right: 10px;
  padding: 0;
  text-align: inherit;
  text-decoration: none;
  z-index: 3;
  line-height: 14px;
  margin-top: 5px;
  bottom: 20px;
}

.sw-disclaimer.sw-disclaimer--fixed [role="button"] {
  cursor: pointer;
  text-decoration: underline;
}

.sw-disclaimer--footer {
  color: #444343;
  line-height: 18px;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

@media screen and (min-width: 1024px) {
  .sw-disclaimer--footer {
    width: 63%;
  }
}

.sw-disclaimer--footer .sw-disclaimer__item {
  margin: 0 0 5px;
}

.sw-disclaimer--footer .sw-disclaimer__item:last-child {
  margin: 0;
}

.sw-disclaimer--footer .sw-disclaimer__item p:first-of-type {
  display: inline;
}

.sw-nutrition-disclaimer {
  border-top: 1px solid #dcdee3;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 35px 0 0;
  padding: 30px 0 0;
}

.sw-disclaimer__item {
  margin-top: 15px;
}

.sw-disclaimer__item:first-child {
  margin-top: 0;
}

.sw-disclaimer--hidden {
  display: none;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-container__donotsell {
  background-color: #ffffff;
  padding-bottom: 1px;
}

.sw-container__donotsell.center {
  text-align: center;
}

.sw-container__donotsell .cell {
  margin-bottom: 10px;
}

.sw-container__donotsell .cell label {
  color: #008938;
}

.sw-container__donotsell .cell button {
  width: 156px;
}

.sw-container__donotsell__col {
  margin-left: 215px;
  max-width: 1024px;
}

@media screen and (max-width: 767px) {
  .sw-container__donotsell__col {
    margin-left: 15px;
  }
}

.sw-title__donotsell {
  font-weight: 700;
  font-family: 'Roboto';
  font-size: 14pt;
}

.sw-description__donotsell {
  font-size: 10pt;
}

.sw-container__privacylink {
  display: inline-block;
  padding-right: 5px;
}

.subwayCopyright {
  color: #333;
  font-family: Arial, serif;
  text-align: center;
  font-size: 12px;
  padding-bottom: 15px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
#cookieMessageBox {
  background-color: #e8f5d6;
  border-bottom: 1px solid #8bcd32;
}

.sw-eucookie {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#AllowCookie,
#DisallowCookie {
  background-color: #4c006a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

#AllowCookie:hover, #AllowCookie:focus,
#DisallowCookie:hover,
#DisallowCookie:focus {
  background-color: #4c006a;
  color: #ffffff;
}

.cookieMessageBoxTop {
  float: none;
  margin: 17px 0 0;
  max-width: none;
}

.cookieMessageBoxBottom {
  float: none;
  margin: 17px 0 0;
}

#CookieMessage {
  color: #444343;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-eyebrow__nav {
  font-size: 0;
  text-transform: none;
}

.sw-eyebrow__navitem {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.25px;
  margin: 0 15px 0 0;
  padding: 0 15px 0 0;
  position: relative;
}

[dir="rtl"] .sw-eyebrow__navitem {
  margin: 0 0 0 15px;
  padding: 0 0 0 15px;
}

.sw-eyebrow__navitem:after {
  border-left: 1px solid #777777;
  content: '';
  display: block;
  height: 11px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}

[dir="rtl"] .sw-eyebrow__navitem:after {
  left: 0;
  right: auto;
}

.sw-eyebrow__navitem:last-child {
  margin-right: 0;
  padding-right: 0;
}

[dir="rtl"] .sw-eyebrow__navitem:last-child {
  margin-left: 0;
  padding-left: 0;
}

.sw-eyebrow__navitem:last-child:after {
  content: none;
}

.sw-eyebrow__navitem a {
  color: #777777;
  text-decoration: none;
}

.contrast-on .sw-eyebrow__navitem a {
  color: #000000;
}

.sw-eyebrow__navitem.sw-eyebrow__navitem--authentication > a {
  text-decoration: underline;
}

.sw-eyebrow__navitem.sw-eyebrow__navitem--authentication .sw-sign-up-separator {
  padding: 0 5px 0 2px;
}

@media screen and (min-width: 1024px) {
  .sw-eyebrow__navitem.sw-eyebrow__navitem--authentication .sw-sign-up-separator.hide-on-mobile {
    display: inline;
  }
}

@media screen and (max-width: 1024px) {
  .sw-eyebrow__navitem.sw-eyebrow__navitem--authentication .sw-sign-up-separator.hide-on-mobile {
    display: none;
  }
}

.sw-eyebrow__navlink {
  color: #777777;
  display: inline-block;
  text-decoration: none;
  text-transform: none;
}

.sw-eyebrow__navlink svg {
  color: #006230;
  fill: #006230;
  height: 13px;
  margin-right: 5px;
  width: 13px;
}

[dir="rtl"] .sw-eyebrow__navlink svg {
  margin-left: 5px;
  margin-right: 0;
}

.sw-eyebrow__navlink img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top;
}

[dir="rtl"] .sw-eyebrow__navlink img {
  margin-left: 5px;
  margin-right: 0;
}

.sw-eyebrow__navitem--location .sw-eyebrow__navlink {
  text-decoration: underline;
}

.sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink {
  font-size: 0;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink {
    display: none;
  }
}

.sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink.sw-eyebrow__navlink--user {
  font-size: 14px;
}

.sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink.sw-eyebrow__navlink--user svg {
  height: 18px;
  margin-bottom: -3px;
  margin-right: 5px;
  width: 16px;
}

[dir="rtl"] .sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink.sw-eyebrow__navlink--user svg {
  margin-left: 5px;
  margin-right: 0;
}

.sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink:after {
  content: none;
}

.sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink svg {
  height: 23px;
  margin: 0;
  width: 23px;
}

@media screen and (max-width: 1024px) {
  .sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink.hide-on-mobile {
    display: none;
  }
}

.sw-eyebrow__navlink.is-hidden {
  display: none;
}

.contrast-on .sw-eyebrow__navlink {
  color: #000000;
}

@media screen and (min-width: 1024px) {
  .sw-eyebrow__navlink.for-mobile {
    display: none;
  }
}

.sw-eyebrow__navlink--user {
  padding: 0;
}

.sw-eyebrow__tokenpane {
  margin-left: 10px;
}

[dir="rtl"] .sw-eyebrow__tokenpane {
  margin-left: 0;
  margin-right: 10px;
}

.sw-userpane-mobile .sw-eyebrow__tokenpane {
  display: none;
}

.sw-eyebrow__token {
  text-decoration: none;
}

.sw-eyebrow__usermenu {
  background-color: #f4f5f4;
  left: -15px;
  padding: 10px 15px;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: calc(100% + 10px);
  z-index: 2;
}

[dir="rtl"] .sw-eyebrow__usermenu {
  left: 0;
  right: -15px;
}

.sw-eyebrow__usermenu[aria-hidden="true"] {
  visibility: hidden;
}

.sw-eyebrow__usermenu.sw-eyebrow__userloginsignup-menu {
  left: inherit;
}

.sw-eyebrow__usermenu-item {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
  white-space: nowrap;
}

.sw-eyebrow__usermenu-item:first-child {
  border-top: none;
}

.sw-eyebrow__usermenu-item.is-current,
.sw-eyebrow__usermenu-item a:hover {
  font-weight: 700;
}

.sw-eyebrow__usermenu-item a {
  color: #777777;
  display: block;
  padding: 13px 0 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.sw-eyebrow__greeting,
.sw-eyebrow__token {
  text-decoration: underline;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  text-transform: uppercase;
}

.sw-eyebrow__language-contrast {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

.sw-mainnav .sw-eyebrow__language-contrast {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px auto;
  padding: 30px 0;
}

@media screen and (min-width: 480px) {
  .sw-mainnav .sw-eyebrow__language-contrast {
    width: 80%;
  }
}

@media screen and (max-width: 1023px) {
  .sw-mainnav .sw-eyebrow__language-contrast {
    position: relative;
    top: 0;
    padding: 5px 0;
    width: 90%;
    width: calc(100% - 40px);
  }
}

.dropdown-active .sw-mainnav .sw-eyebrow__language-contrast {
  display: none;
}

.language-dd-on .sw-eyebrow__language-contrast {
  position: relative;
}

.sw-eyebrow__language {
  position: relative;
}

.language-dd-on .sw-mainnav .sw-eyebrow__language {
  position: static;
}

.sw-eyebrow__language-selector {
  margin-right: 10px;
  padding: 0;
  text-align: left;
}

[dir="rtl"] .sw-eyebrow__language-selector {
  margin-left: 10px;
  margin-right: 0;
  text-align: right;
}

.sw-eyebrow__language-selector .sw-eyebrow__language-selector__label {
  color: #777777;
  font-weight: 700;
  padding-right: 4px;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .sw-eyebrow__language-selector .sw-eyebrow__language-selector__label {
    display: inline-block;
    font-size: 18px;
  }
}

.contrast-on .sw-eyebrow__language-selector .sw-eyebrow__language-selector__label {
  color: #000000;
}

.language-dd-on .sw-mainnav .sw-eyebrow__language-selector {
  font-size: 0;
  left: -35px;
  position: relative;
}

[dir="rtl"] .language-dd-on .sw-mainnav .sw-eyebrow__language-selector {
  left: auto;
  right: -35px;
}

.sw-eyebrow__language-selector img {
  margin-right: 9px;
}

[dir="rtl"] .sw-eyebrow__language-selector img {
  margin-left: 9px;
  margin-right: 0;
}

.language-dd-on .sw-mainnav .sw-eyebrow__language-selector:before {
  border-bottom: 2px solid #006230;
  border-left: 2px solid #006230;
  content: "";
  display: inline-block;
  height: 17px;
  margin-right: 17px;
  position: relative;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 17px;
}

[dir="rtl"] .language-dd-on .sw-mainnav .sw-eyebrow__language-selector:before {
  margin-left: 17px;
  margin-right: 0;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

.language-dd-on .sw-mainnav .sw-eyebrow__language-selector:after {
  color: #006230;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
}

.sw-eyebrow__language-current {
  color: #777777;
  font-weight: 700;
  padding-right: 4px;
}

@media screen and (max-width: 479px) {
  .sw-eyebrow__language-current {
    margin-top: 15px;
    display: block;
  }
}

.sw-mainnav .sw-eyebrow__language-current {
  font-size: 18px;
}

.language-dd-on .sw-mainnav .sw-eyebrow__language-current {
  display: none;
}

.contrast-on .sw-eyebrow__language-current {
  color: #000000;
}

[dir="rtl"] .sw-eyebrow__language-current {
  padding-left: 4px;
  padding-right: 0;
}

.sw-eyebrow__language-current:after {
  border-bottom: 1.5px solid #006230;
  border-left: 1.5px solid #006230;
  content: "";
  display: inline-block;
  height: 6px;
  margin: 0 0 0 6px;
  position: relative;
  top: -3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
}

[dir="rtl"] .sw-eyebrow__language-current:after {
  margin: 0 6px 0 0;
}

.is-open .sw-eyebrow__language-current:after {
  top: 0;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.sw-mainnav .sw-eyebrow__language-current:after {
  height: 10px;
  top: -2px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  width: 10px;
}

[dir="rtl"] .sw-mainnav .sw-eyebrow__language-current:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sw-eyebrow__language-dropdown {
  background-color: #f4f5f4;
  display: none;
  left: -15px;
  padding: 15px;
  position: absolute;
  top: calc(100% + 10px);
  z-index: 2;
}

[dir="rtl"] .sw-eyebrow__language-dropdown {
  left: auto;
  right: -15px;
}

.is-open .sw-eyebrow__language-dropdown {
  display: block;
}

.sw-mainnav .sw-eyebrow__language-dropdown {
  background-color: transparent;
  display: block;
  left: 100vw;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

[dir="rtl"] .sw-mainnav .sw-eyebrow__language-dropdown {
  left: auto;
  right: 100vw;
}

.language-dd-on .sw-mainnav .sw-eyebrow__language-dropdown {
  left: 0;
  right: 0;
}

.sw-eyebrow__language-dropdown[aria-hidden="true"] {
  visibility: hidden;
}

.sw-eyebrow__language-item {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 27px;
  position: relative;
  white-space: nowrap;
}

[dir="rtl"] .sw-eyebrow__language-item {
  padding-left: 0;
  padding-right: 27px;
}

.sw-eyebrow__language-item:first-child {
  border-top: none;
}

.sw-eyebrow__language-item.is-current:before {
  border-bottom: 1.5px solid #006230;
  border-left: 1.5px solid #006230;
  content: "";
  display: block;
  height: 5px;
  left: 8px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-55deg) translateY(-50%);
      -ms-transform: rotate(-55deg) translateY(-50%);
          transform: rotate(-55deg) translateY(-50%);
  width: 11px;
}

[dir="rtl"] .sw-eyebrow__language-item.is-current:before {
  left: auto;
  right: 8px;
}

.sw-mainnav .sw-eyebrow__language-item {
  border-color: #006230;
  font-size: 20px;
  font-weight: 400;
}

.sw-eyebrow__language-option {
  color: #777777;
  display: block;
  padding: 13px 0 10px;
  text-decoration: none;
}

.is-current .sw-eyebrow__language-option {
  font-weight: 700;
}

.contrast-on .sw-eyebrow__language-option {
  color: #000000;
}

.sw-eyebrow__country-selector {
  color: #777777;
  display: block;
  padding: 13px 0 10px;
  text-decoration: none;
}

.sw-eyebrow__country-selector img {
  height: auto;
  left: 0;
  max-width: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

[dir="rtl"] .sw-eyebrow__country-selector img {
  left: auto;
  right: 0;
}

.contrast-on .sw-eyebrow__country-selector {
  color: #000000;
}

.sw-mainnav .sw-eyebrow__country-selector {
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 479px) {
  .sw-eyebrow__country-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
@media screen and (min-width: 1230px) {
  .sw-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@supports (grid-gap: 30px) {
  @media screen and (min-width: 1230px) {
    .sw-footer {
      display: -ms-grid;
      display: grid;
      grid-gap: 30px;
      -ms-grid-columns: 74% 23.25%;
          grid-template-columns: 74% 23.25%;
    }
  }
}

.sw-footer__box {
  background-color: #8bcd32;
  padding: 30px;
}

@media screen and (min-width: 1230px) {
  .sw-footer__box {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 30px;
    width: 74%;
  }
}

@supports (grid-gap: 30px) {
  @media screen and (min-width: 1230px) {
    .sw-footer__box {
      margin-right: 0;
      width: auto;
    }
  }
}

.sw-footer__title {
  color: #00572d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contrast-on .sw-footer__title {
  color: #4c006a;
}

.contrast-on .sw-footer__title *:focus {
  outline: #4c006a solid 1px;
}

@media screen and (min-width: 768px) {
  .sw-footer__title br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sw-footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sw-footernav--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 480px) {
  .sw-footernav--mobile {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footernav--mobile {
    display: none;
  }
}

.sw-footernav--mobile .sw-footernav__list {
  margin-right: 20px;
}

@media screen and (min-width: 480px) {
  .sw-footernav--mobile .sw-footernav__list {
    margin-right: 95px;
  }
}

.sw-footernav--mobile .sw-footernav__list:last-child {
  margin-right: 0;
}

.sw-footernav--mobile .sw-footernav__item {
  margin-bottom: 20px;
}

.sw-footernav--mobile .sw-footernav__link {
  color: #00572d;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
}

.contrast-on .sw-footernav--mobile .sw-footernav__link {
  color: #4c006a;
}

.sw-footernav--desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-footernav--desktop {
    display: block;
    margin-bottom: 45px;
    width: 100%;
  }
}

.sw-footernav--desktop .sw-footernav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-footernav--desktop .sw-footernav__item {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  margin-right: 30px;
  padding-right: 30px;
}

.sw-footernav--desktop .sw-footernav__item:last-child {
  border-right: none;
  margin-right: 0;
  max-width: 125px;
  padding-right: 0;
}

.sw-footernav--desktop .sw-footernav__header {
  margin-bottom: 5px;
}

.sw-footernav--desktop .sw-footernav__header svg,
.sw-footernav--desktop .sw-footernav__header img {
  display: block;
  margin-bottom: 5px;
}

.sw-footernav--desktop .sw-footernav__link {
  color: #00572d;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.contrast-on .sw-footernav--desktop .sw-footernav__link {
  color: #4c006a;
}

.sw-footernav--desktop .sw-footernav__sublist + .sw-footernav__header {
  margin-top: 20px;
}

.sw-footernav--desktop .sw-footernav__subitem {
  margin-bottom: 3px;
}

.sw-footernav__header {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sw-footer__connect .sw-footernav__header {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .sw-footer__connect .sw-footernav__header {
    margin-bottom: 15px;
  }
}

.contrast-on .sw-footernav__header {
  color: #4c006a;
}

.sw-footernav__item .sw-footernav__header svg, .sw-footernav__item
.sw-footernav__header img {
  height: 41px;
  width: 41px;
}

.sw-footer__connect {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-footer__connect {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footer__connect {
    text-align: left;
  }
}

.sw-footer__connect svg {
  color: #00572d;
  fill: #00572d;
  height: 32px;
  width: 32px;
}

.contrast-on .sw-footer__connect svg {
  color: #4c006a;
  fill: #4c006a;
}

@media screen and (min-width: 480px) {
  .sw-footer__connect svg {
    height: 44px;
    width: 44px;
  }
}

@media screen and (min-width: 768px) {
  .sw-footer__connect svg {
    height: 34px;
    width: 34px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footer__connect svg {
    height: 21px;
    width: 21px;
  }
}

.sw-footer__connect-list {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.sw-footer__connect-item {
  display: inline-block;
  margin-right: 25px;
}

[dir="rtl"] .sw-footer__connect-item {
  margin-left: 25px;
  margin-right: 0;
}

@media screen and (min-width: 480px) {
  .sw-footer__connect-item {
    margin-right: 35px;
  }
  [dir="rtl"] .sw-footer__connect-item {
    margin-left: 35px;
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footer__connect-item {
    margin-right: 30px;
  }
}

.sw-footer__connect-item:last-child {
  margin-right: 0;
}

[dir="rtl"] .sw-footer__connect-item:last-child {
  margin-left: 0;
}

.sw-footer__getapp {
  display: none;
  margin: 35px 0 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-footer__getapp {
    margin: 30px 0 0;
  }
}

.sw-footer__getapp.is-mobile-device {
  display: block;
}

@media screen and (min-width: 1024px) {
  .sw-footer__getapp.is-mobile-device.for-mobile {
    display: none;
  }
}

.sw-footer__getapp-item {
  color: #006230;
  display: none;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.sw-footer__getapp-item:last-child {
  margin-bottom: 0;
}

.sw-footer__getapp-item.should-show {
  display: block;
}

.sw-footer__getapp-item svg,
.sw-footer__getapp-item img {
  vertical-align: middle;
}

.sw-footer__getapp-item--subway {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.sw-footer__getapp-item--subway svg,
.sw-footer__getapp-item--subway img {
  height: 41px;
  margin-right: 15px;
  width: 41px;
}

.sw-footer__getapp-item--subway svg [dir="rtl"],
.sw-footer__getapp-item--subway img [dir="rtl"] {
  margin-left: 15px;
  margin-right: 0;
}

.sw-footer__getapp-item--appstore svg,
.sw-footer__getapp-item--appstore img {
  color: #ffffff;
  fill: #000000;
  height: 67px;
  width: 189px;
}

.sw-footer__getapp-item--googleplay svg,
.sw-footer__getapp-item--googleplay img {
  height: 67px;
  width: 189px;
}

.sw-footer__getapp-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.sw-footer__getapp-title span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-transform: none;
}

.sw-footer__getapp-link {
  text-decoration: none;
}

.sw-footer__ctas {
  margin: 30px 0 0;
}

@media screen and (min-width: 768px) {
  .sw-footer__ctas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1230px) {
  .sw-footer__ctas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    width: calc(100% - 74% - 30px);
  }
}

@supports (grid-gap: 30px) {
  @media screen and (min-width: 1230px) {
    .sw-footer__ctas {
      width: auto;
    }
  }
}

.sw-footer__ctas-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4c006a;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 18px;
  font-weight: 400;
  min-height: 138px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  padding: 28px;
  text-align: center;
  text-decoration: none;
}

.sw-footer__ctas-link:focus {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .sw-footer__ctas-link {
    margin-bottom: 0;
    width: 48%;
  }
}

@media screen and (min-width: 1230px) {
  .sw-footer__ctas-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 47%;
    width: 100%;
  }
}

.sw-footer__ctas-link:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1230px) {
  .sw-footer__ctas-link:last-child {
    margin-top: auto;
  }
}

.sw-footer__ctas-link:hover {
  color: #ffffff;
}

.sw-footer__ctas-link svg,
.sw-footer__ctas-link img {
  display: block;
  height: 40px;
  max-width: 100%;
  width: 200px;
}

.sw-footer__ctas-link.sw-footer__ctas-link--subculture svg,
.sw-footer__ctas-link.sw-footer__ctas-link--subculture img {
  height: 37px;
  width: 158px;
}

.sw-footer__ctas-link.sw-footer__ctas-link--partners svg,
.sw-footer__ctas-link.sw-footer__ctas-link--partners img {
  height: 27px;
  width: 215px;
}

.sw-footer__ctas-text {
  display: block;
  width: 100%;
}

.sw-footerpane__bottom {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.contrast-on .sw-footerpane__bottom {
  color: #000000;
}

@media screen and (min-width: 1024px) {
  .sw-footerpane__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sw-footerpane__utility {
  font-size: 0;
  margin-bottom: 15px;
  text-align: center;
}

.sw-footerpane__utility-item {
  display: inline-block;
  font-size: 0;
  line-height: 1;
}

.sw-footerpane__utility-item:after {
  content: "|";
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.sw-footerpane__utility-item:last-child:after {
  content: none;
}

.sw-footerpane__utility-link, .sw-footerpane__utility-link a {
  color: #444343;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.contrast-on .sw-footerpane__utility-link, .contrast-on .sw-footerpane__utility-link a {
  color: #000000;
}

@media screen and (min-width: 480px) {
  .sw-footerpane__utility-link, .sw-footerpane__utility-link a {
    font-size: 13px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footerpane__utility-link, .sw-footerpane__utility-link a {
    font-size: 12px;
    padding: 0 3px;
  }
}

.sw-footerpane__legal {
  font-size: 13px;
  font-weight: 400;
}

.sw-footerpane__legal br {
  display: none;
}

@media screen and (min-width: 480px) {
  .sw-footerpane__legal br {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footerpane__legal br {
    display: none;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-footerlinks {
  margin: 50px auto;
}

@media screen and (min-width: 480px) {
  .sw-footerlinks {
    width: 80%;
  }
}

.dropdown-active .sw-footerlinks,
.language-dd-on .sw-footerlinks {
  display: none;
}

.sw-footerlinks__trigger {
  color: #008938;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-freshfit {
  background-color: #8bcd32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .sw-freshfit {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-freshfit {
    margin-top: 30px;
  }
}

.sw-freshfit:first-child {
  margin-top: 0;
}

.sw-freshfit__graphic {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .sw-freshfit__graphic {
    text-align: left;
  }
}

.sw-freshfit__logo {
  height: 56px;
  margin: 25px auto;
  width: 200px;
}

@media screen and (min-width: 1024px) {
  .sw-freshfit__logo {
    margin: 25px 30px;
  }
}

.sw-freshfit__logo svg,
.sw-freshfit__logo img {
  color: #ffffff;
  fill: #ffffff;
  height: 100%;
  width: 100%;
}

.contrast-on .sw-freshfit__logo svg, .contrast-on
.sw-freshfit__logo img {
  color: #4c006a;
  fill: #4c006a;
}

@media screen and (min-width: 1024px) {
  .sw-freshfit__copy-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
}

.sw-freshfit__copy {
  margin: 0 30px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .sw-freshfit__copy {
    text-align: left;
  }
}

.sw-freshfit__title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 28px;
  margin-bottom: 10px;
}

.contrast-on .sw-freshfit__title {
  color: #4c006a;
}

.sw-freshfit__blurb {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.contrast-on .sw-freshfit__blurb {
  color: #4c006a;
}

.sw-freshfit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 45px 20px;
}

@media screen and (min-width: 1024px) {
  .sw-freshfit__list {
    margin: -85px 20px 0 0;
  }
}

.sw-freshfit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 10px;
  max-width: 115px;
}

@media screen and (min-width: 768px) {
  .sw-freshfit__item {
    margin: 0 20px;
  }
}

.sw-freshfit__item:first-child {
  margin-left: 0;
}

.sw-freshfit__item:last-child {
  margin-right: 0;
}

.sw-freshfit__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 85px;
  width: 85px;
}

.sw-freshfit__icon svg,
.sw-freshfit__icon img {
  height: 47px;
  width: 58px;
}

.sw-freshfit__info {
  color: #00572d;
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}

.contrast-on .sw-freshfit__info {
  color: #4c006a;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-grid__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .sw-grid__cell:nth-last-child(2):first-child,
  .sw-grid__cell:nth-last-child(2):first-child ~ * {
    width: calc(50% - 20px/2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-grid__cell:nth-last-child(2):first-child,
  .sw-grid__cell:nth-last-child(2):first-child ~ * {
    width: calc(50% - 30px/2);
  }
}

.sw-grid__cell:nth-last-child(2):first-child:nth-child(2),
.sw-grid__cell:nth-last-child(2):first-child ~ *:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sw-grid__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .sw-grid__inner:nth-last-child(2):first-child:nth-child(1),
  .sw-grid__inner:nth-last-child(2):first-child ~ *:nth-child(1) {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-grid__inner:nth-last-child(2):first-child:nth-child(1),
  .sw-grid__inner:nth-last-child(2):first-child ~ *:nth-child(1) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .sw-grid__core:nth-last-child(2):first-child,
  .sw-grid__core:nth-last-child(2):first-child ~ * {
    width: calc(50% - 20px/2);
  }
}

@media screen and (min-width: 1024px) {
  .sw-grid__core:nth-last-child(2):first-child,
  .sw-grid__core:nth-last-child(2):first-child ~ * {
    width: calc(50% - 30px/2);
  }
}

/* .sw-grid {

    @media screen and (min-width: $bp-medium-min) {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: calc(25% - 20px/1.5) calc(25% - 20px/1.5) calc(25% - 20px/1.5) calc(25% - 20px/1.5);
        -ms-grid-columns: calc(25% - 20px/1.5) 20px calc(25% - 20px/1.5) 20px calc(25% - 20px/1.5) 20px calc(25% - 20px/1.5);
        -ms-grid-rows: auto 20px auto;
    }
    
}

.sw-grid__cell {
    &:nth-child(1) {
        @media screen and (min-width: $bp-medium-min) {
            grid-row: 1/3;
            grid-column: 1/3;
            -ms-grid-column: 1;
            -ms-grid-row: 1;
            -ms-grid-row-span: 3;
        }
    }

    &:nth-child(4) {
        @media screen and (min-width: $bp-medium-min) {
            grid-column: 3/5;
            -ms-grid-column: 3;
            -ms-grid-row: 2;
            -ms-grid-column-span: 5;
        }
    }
} */

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-hamburger {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .sw-hamburger {
    display: none;
  }
}

.sw-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #006230;
  margin: 5px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile-nav-open .sw-hamburger span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
      -ms-transform: rotate(-45deg) translate(-6px, 6px);
          transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-nav-open .sw-hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-open .sw-hamburger span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
      -ms-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

.sw-universal-header .sw-hamburger.sw-universal-hamburger {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1080px) {
  .sw-universal-header .sw-hamburger.sw-universal-hamburger {
    display: none;
  }
}

@media screen and (max-width: 1079px) {
  .sw-universal-header .sw-hamburger.sw-universal-hamburger {
    display: block !important;
  }
}

.sw-universal-header .sw-hamburger.sw-universal-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #006230;
  margin: 5px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mobile-nav-open .sw-universal-header .sw-hamburger.sw-universal-hamburger span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
      -ms-transform: rotate(-45deg) translate(-6px, 6px);
          transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-nav-open .sw-universal-header .sw-hamburger.sw-universal-hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-open .sw-universal-header .sw-hamburger.sw-universal-hamburger span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
      -ms-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (min-width: 1024px) {
  .sw-hamburger.sw-universal-hamburger {
    display: block;
  }
  .sw-hamburger.sw-universal-hamburger span {
    background-color: #aaa !important;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-headerpane {
  position: relative;
}

.sw-headerpane.sw-headerpane--sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8;
}

.sw-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.sw-logo {
  height: 25px;
  margin: 0 auto;
  width: 125px;
}

@media screen and (min-width: 1024px) {
  .sw-logo {
    height: 48px;
    margin: 0;
    width: 239px;
  }
}

.contrast-on .sw-logo .sw-logo__regular {
  display: none;
}

.sw-logo .sw-logo__contrast {
  display: none;
}

.contrast-on .sw-logo .sw-logo__contrast {
  display: block;
}

.sw-logo img,
.sw-logo svg {
  height: 25px;
  width: 125px;
}

@media screen and (min-width: 1024px) {
  .sw-logo img,
  .sw-logo svg {
    height: 48px;
    width: 239px;
  }
}

.contrast-on .sw-logo img, .contrast-on
.sw-logo svg {
  color: #000000;
  fill: #000000;
}

.sw-mainnav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mobile-nav-open .sw-mainnav {
  background-color: #ffffff;
  bottom: -1px;
  display: block;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0px 20px 20px;
  position: fixed;
  right: 0;
  top: 59px;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1024px) {
  .mobile-nav-open .sw-mainnav {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: inherit;
    padding: 0;
    position: static;
  }
}

.sw-mainnav__list {
  margin: 50px auto;
  position: relative;
}

@media screen and (min-width: 480px) {
  .sw-mainnav__list {
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    position: static;
    width: auto;
  }
}

.language-dd-on .sw-mainnav__list {
  display: none;
}

@media screen and (min-width: 1024px) {
  .language-dd-on .sw-mainnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sw-mainnav__item {
  border-bottom: 1px solid #006230;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item {
    border: none;
    font-size: 14px;
    font-weight: 700;
  }
}

.sw-mainnav__item.sw-mainnav__item--order {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item.sw-mainnav__item--order {
    display: inherit;
    margin-left: 15px;
  }
}

.sw-mainnav__item:last-child {
  margin-right: 0;
}

[dir="rtl"] .sw-mainnav__item:last-child {
  margin-left: 0;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item.dropdown-open .sw-mainnav__dropdown {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item.dropdown-open .sw-mainnav__link:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.sw-mainnav__item.dropdown-open .sw-mainnav__dropdown-content {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
}

.sw-mainnav__dropdown {
  background-color: #ffffff;
  bottom: -2px;
  left: 130%;
  padding-top: 50px;
  position: absolute;
  right: -2px;
  top: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: calc(100% + 4px);
  z-index: 1;
}

[dir="rtl"] .sw-mainnav__dropdown {
  left: auto;
  right: 100vw;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown {
    background-color: rgba(255, 255, 255, 0.95);
    bottom: auto;
    left: 0;
    margin-left: -30px;
    margin-right: -30px;
    padding: 60px 30px 30px;
    right: 0px;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
    top: 100%;
    width: auto;
  }
  [dir="rtl"] .sw-mainnav__dropdown {
    left: 0;
    right: 0;
  }
}

.contrast-on .sw-mainnav__dropdown {
  background-color: #ffffff;
}

.dropdown-open .sw-mainnav__dropdown {
  left: -2px;
  visibility: visible;
}

[dir="rtl"] .dropdown-open .sw-mainnav__dropdown {
  right: -2px;
}

@media screen and (min-width: 1024px) {
  .dropdown-open .sw-mainnav__dropdown {
    left: 0;
  }
}

.sw-mainnav__link {
  color: #006230;
  display: block;
  font-family: "Roboto";
  font-weight: 500;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.sw-mainnav__link:focus {
  outline: none;
}

[dir="rtl"] .sw-mainnav__link {
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__link {
    font-weight: inherit;
    padding: 10px 15px 8px;
    position: static;
    text-align: inherit;
    text-transform: uppercase;
    width: auto;
  }
}

.sw-mainnav__link:after {
  border-bottom: 2px solid #006230;
  border-left: 2px solid #006230;
  content: "";
  display: block;
  height: 17px;
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
      -ms-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  width: 17px;
}

[dir="rtl"] .sw-mainnav__link:after {
  left: 4px;
  right: auto;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__link:after {
    border: none;
    border-bottom: 1px solid #006230;
    content: "";
    display: block;
    height: auto;
    margin: 2px 0 0;
    position: static;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: auto;
  }
  [dir="rtl"] .sw-mainnav__link:after {
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.sw-mainnav__item--order .sw-mainnav__link {
  background-color: #008938;
  color: #ffffff;
}

.sw-mainnav__item--order .sw-mainnav__link:after {
  content: none;
}

.sw-mainnav__item--order .sw-mainnav__link:hover, .sw-mainnav__item--order .sw-mainnav__link:focus {
  background-color: #006230;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__link:hover:after, .sw-mainnav__link:focus:after,
  .is-current .sw-mainnav__link:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-menu {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-menu {
    margin-right: auto;
    width: 380px;
  }
  [dir="rtl"] .sw-mainnav__item--menu .sw-mainnav__dropdown-menu {
    margin-right: 0;
    margin-left: auto;
  }
}

.sw-mainnav__dropdown-content {
  padding: 0 0 50px 0;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-content {
    opacity: 0;
    padding: 0;
    -webkit-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
  }
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sw-mainnav__dropdown-title {
  color: #008938;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: none;
}

.sw-mainnav__dropdown-title svg {
  fill: #8bcd32;
  height: 19px;
  margin-right: 5px;
  width: 20px;
}

[dir="rtl"] .sw-mainnav__dropdown-title svg {
  margin-left: 5px;
  margin-right: 0;
}

.sw-mainnav__dropdown-title a {
  color: #008938;
  text-decoration: none;
}

.sw-mainnav__dropdown-title a:link, .sw-mainnav__dropdown-title a:active, .sw-mainnav__dropdown-title a:visited {
  color: #008938;
}

.sw-mainnav__dropdown-title .sw-meta {
  color: #006230;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
  margin-top: 0;
  text-transform: none;
}

[dir="rtl"] .sw-mainnav__dropdown-title .sw-meta {
  margin-left: 0;
  margin-right: 10px;
}

.sw-mainnav__dropdown-title__featured {
  margin-top: 8px !important;
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-links {
  font-size: 0;
}

.sw-mainnav__dropdown-links .sw-mainnav__dropdown-item:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-item {
    max-width: 226px;
  }
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-item {
  border-bottom: 1px solid #006230;
  display: block;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-item {
    border-bottom: none;
    border-top: 1px solid #006230;
    display: inline-block;
    font-size: 18px;
    margin-right: 45px;
    max-width: none;
    width: calc(50% - 45px / 2);
  }
  [dir="rtl"] .sw-mainnav__item--menu .sw-mainnav__dropdown-item {
    margin-left: 45px;
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-item:nth-child(1), .sw-mainnav__item--menu .sw-mainnav__dropdown-item:nth-child(2) {
    border-top: none;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-item:last-child {
    margin-right: 0;
  }
  [dir="rtl"] .sw-mainnav__item--menu .sw-mainnav__dropdown-item:last-child {
    margin-left: 0;
  }
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-item a {
  color: #006230;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-item a:hover, .sw-mainnav__item--menu .sw-mainnav__dropdown-item a.is-current {
  font-weight: 900;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-item a.sw-mainnav__dropdown-cta {
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-item a.sw-mainnav__dropdown-cta:hover {
    font-weight: 400;
  }
}

.sw-mainnav__item--menu .sw-mainnav__dropdown-item .sw-status {
  color: #006230;
  font-weight: 500;
}

.sw-mainnav__dropdown-media {
  max-height: 226px;
  max-width: 226px;
  overflow: hidden;
  position: relative;
}

.sw-mainnav__dropdown-item--featured .sw-mainnav__dropdown-media {
  max-width: 436px;
}

.sw-mainnav__dropdown-media img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.sw-mainnav__dropdown-media:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.sw-mainnav__dropdown-media:hover img.no-zoom {
  -webkit-transform: inherit;
      -ms-transform: inherit;
          transform: inherit;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-tiles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1023px) {
  .sw-mainnav__dropdown-tiles a:hover, .sw-mainnav__dropdown-tiles a.is-current {
    font-weight: 900;
  }
}

@media screen and (min-width: 1024px) and (-ms-high-contrast: active), screen and (min-width: 1024px) and (-ms-high-contrast: none) {
  .sw-mainnav__dropdown-menu + .sw-mainnav__dropdown-tiles {
    width: calc(100% - 400px);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item {
  border-bottom: 1px solid #006230;
  display: block;
  font-size: 20px;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item {
    border: none;
    margin-right: 10px;
    max-width: 226px;
    width: calc(100% / 5);
  }
  [dir="rtl"] .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item {
    margin-left: 10px;
    margin-right: 0;
  }
}

.sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item:last-child {
  margin-right: 0;
}

[dir="rtl"] .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item:last-child {
  margin-left: 0;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item {
    width: auto;
  }
}

.sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item.sw-mainnav__dropdown-item--featured {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item.sw-mainnav__dropdown-item--featured {
    display: block;
    margin-left: 0px;
    max-width: 80%;
  }
  .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-item.sw-mainnav__dropdown-item--featured .sw-mainnav__dropdown-title__featured {
    margin-top: 6px;
  }
}

.sw-mainnav__dropdown-cta {
  color: #008938;
  display: block;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-cta {
    font-size: 16px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
  }
}

.sw-mainnav__dropdown-cta img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-cta span {
    display: block;
    margin-top: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__item--menu .sw-mainnav__dropdown-cta {
    padding: 0;
  }
}

.sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-cta {
  color: #006230;
}

.sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-cta:hover {
  font-weight: 900;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-tiles .sw-mainnav__dropdown-cta:hover {
    font-weight: 400;
  }
}

.sw-mainnav__dropdown-media {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-media {
    display: block;
  }
}

.sw-mainnav__dropdown-close {
  color: #008938;
  /*font-size: 0;*/
  padding: 0;
  left: 0px;
  position: absolute;
  top: 0;
}

[dir="rtl"] .sw-mainnav__dropdown-close {
  left: auto;
  right: 0;
}

@media screen and (min-width: 480px) {
  .sw-mainnav__dropdown-close {
    left: -35px;
  }
  [dir="rtl"] .sw-mainnav__dropdown-close {
    left: auto;
    right: -35px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-close {
    font-size: 12px;
    left: auto;
    right: 30px;
    text-transform: uppercase;
    top: 15px;
  }
  [dir="rtl"] .sw-mainnav__dropdown-close {
    left: 30px;
    right: auto;
  }
}

.sw-mainnav__dropdown-close:after {
  color: #006230;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-close:after {
    content: none;
  }
}

.sw-mainnav__dropdown-close:before {
  border-bottom: 2px solid #006230;
  border-left: 2px solid #006230;
  content: "";
  display: inline-block;
  height: 17px;
  margin-right: 17px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 17px;
}

@media screen and (min-width: 1024px) {
  .sw-mainnav__dropdown-close:before {
    content: none;
  }
}

[dir="rtl"] .sw-mainnav__dropdown-close:before {
  margin-left: 17px;
  margin-right: 0;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

@media screen and (min-width: 1024px) {
  button.sw-mainnav__dropdown-close.backBtnMobile {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  button.sw-mainnav__dropdown-close.backBtnDesktop {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sw-mainnav__link:focus {
    outline: #4c006a dotted 1px;
  }
}

@media screen and (max-width: 1024px) {
  li.sibling-open {
    display: none;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-hero__text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}

@media screen and (min-width: 1024px) {
  .sw-hero__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw__hero__controls__btn {
  max-width: 1230px;
  margin-top: 40px;
  margin-left: auto;
  position: relative;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .sw__hero__controls__btn {
    padding-right: 60px;
  }
}

.sw-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .sw-hero.sw-hero--menu-detail .sw-hero__media img {
    height: 125%;
    margin-top: -50px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-hero.sw-hero--menu-detail .sw-hero__media img {
    height: 130%;
    margin-top: -50px;
  }
}

@media screen and (max-width: 479px) {
  .sw-hero.sw-hero--menu-detail .sw-hero__media img {
    height: 100%;
    margin-top: 0;
    margin-bottom: 100px;
  }
}

.sw-hero--crossfade .slick-slider .sw-hero__media {
  min-height: 220px;
}

@media screen and (max-width: 767px) {
  .sw-hero--crossfade {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sw-hero--crossfade [aria-hidden="true"] {
  visibility: visible;
}

.sw-hero--crossfade .sw-hero__static-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sw-hero--crossfade .sw-hero__static-content {
    background-color: #8bcd32;
    display: block;
    height: 100%;
    position: relative;
    text-align: center;
  }
}

.sw-hero--crossfade .sw-hero__static-content .sw-hero__media {
  display: none;
}

.contrast-on .sw-hero--crossfade .sw-hero__static-content .sw-hero__content {
  background-color: transparent;
}

.sw-hero__controls {
  width: 100%;
  position: absolute;
}

.sw-hero__pause {
  border: 0;
  background-color: #008938;
  color: #ffffff;
  font-size: 18px;
  height: 30px;
  width: 45px;
  /*display: none;*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}

.sw-hero__pause .sw-hero__pause__play {
  display: none;
}

.paused .sw-hero__pause .sw-hero__pause__play {
  display: block;
}

.slick-dots > .sw-hero__pause .sw-hero__pause__play {
  position: relative;
  top: -2px;
}

.sw-hero__pause .sw-hero__pause__pause {
  display: block;
}

.paused .sw-hero__pause .sw-hero__pause__pause {
  display: none;
}

.slick-dots > .sw-hero__pause .sw-hero__pause__pause {
  position: relative;
  top: -2px;
}

.slick-dots > .sw-hero__pause {
  background: transparent;
}

.sw-hero__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.sw-hero__slider.slick-slider {
  display: block;
}

.sw-hero--main .sw-hero__slider,
.sw-hero--secondary .sw-hero__slider {
  display: block;
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__slider,
  .sw-hero--secondary .sw-hero__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sw-hero--main .sw-hero__slider .sw-hero__slide .dotSlider,
.sw-hero--secondary .sw-hero__slider .sw-hero__slide .dotSlider {
  display: none;
}

@media screen and (max-width: 768px) {
  .sw-hero--main .sw-hero__slider .sw-hero__slide .dotSlider,
  .sw-hero--secondary .sw-hero__slider .sw-hero__slide .dotSlider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    height: 45px;
  }
}

@media screen and (max-width: 768px) {
  .sw-hero--main .sw-hero__slider .sw-hero__slide .dotSlider ul,
  .sw-hero--secondary .sw-hero__slider .sw-hero__slide .dotSlider ul {
    position: static;
    padding: 15px 0 0 0;
  }
}

.show-play-controls button.sw-hero__pause {
  display: block;
}

.hide-play-controls button.sw-hero__pause {
  display: none;
}

.sw-hero__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

.slick-slider .sw-hero__slide {
  display: block;
}

.sw-hero--main .sw-hero__slide,
.sw-hero--secondary .sw-hero__slide {
  display: block;
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__slide,
  .sw-hero--secondary .sw-hero__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sw-hero__media {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.slick-slider .sw-hero__media {
  position: static;
}

.sw-hero--main .sw-hero__media,
.sw-hero--secondary .sw-hero__media {
  position: static;
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__media,
  .sw-hero--secondary .sw-hero__media {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.sw-hero__media picture {
  width: 100%;
  height: 270px;
}

@media screen and (min-width: 768px) {
  .sw-hero__media picture {
    min-height: 420px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero__media picture {
    min-height: 650px;
  }
}

.sw-footerpane .sw-hero--slim .sw-hero__media picture {
  min-height: 200px;
}

@media screen and (min-width: 768px) {
  .sw-footerpane .sw-hero--slim .sw-hero__media picture {
    min-height: 220px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footerpane .sw-hero--slim .sw-hero__media picture {
    min-height: 380px;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero--secondary .sw-hero__media picture {
    min-height: 366px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero--secondary .sw-hero__media picture {
    min-height: 480px;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__media picture {
    min-height: 420px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero--main .sw-hero__media picture {
    min-height: 650px;
  }
}

.sw-hero__media img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.sw-hero:not(.sw-hero--main) .sw-hero__media img,
.sw-hero:not(.sw-hero--secondary) .sw-hero__media img {
  position: absolute;
}

.sw-hero.sw-hero--main .sw-hero__media img,
.sw-hero.sw-hero--secondary .sw-hero__media img {
  position: static;
}

@media screen and (min-width: 768px) {
  .sw-hero.sw-hero--main .sw-hero__media img,
  .sw-hero.sw-hero--secondary .sw-hero__media img {
    position: absolute;
  }
}

.sw-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sw-hero__content {
    min-height: 420px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero__content {
    min-height: 650px;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero--secondary .sw-hero__content {
    min-height: 366px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero--secondary .sw-hero__content {
    min-height: 480px;
  }
}

.sw-footerpane .sw-hero--slim .sw-hero__content {
  min-height: 200px;
}

@media screen and (min-width: 768px) {
  .sw-footerpane .sw-hero--slim .sw-hero__content {
    min-height: 220px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-footerpane .sw-hero--slim .sw-hero__content {
    min-height: 380px;
  }
}

@media screen and (min-width: 768px) {
  .slick-slider .sw-hero__content {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
  }
}

.contrast-on .sw-hero__content {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.sw-hero__slide--dark .sw-hero__content {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__slide--dark .sw-hero__content,
  .sw-hero--secondary .sw-hero__slide--dark .sw-hero__content {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .contrast-on .sw-hero--main .sw-hero__slide--dark .sw-hero__content, .contrast-on
  .sw-hero--secondary .sw-hero__slide--dark .sw-hero__content {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.contrast-on .sw-hero__slide--dark .sw-hero__content {
  background-color: rgba(0, 0, 0, 0.5);
}

.sw-hero--main .sw-hero__content,
.sw-hero--secondary .sw-hero__content {
  background-color: #8bcd32;
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sw-hero--main .sw-hero__content,
  .sw-hero--secondary .sw-hero__content {
    min-height: auto;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__content,
  .sw-hero--secondary .sw-hero__content {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contrast-on .sw-hero--main .sw-hero__content, .contrast-on
.sw-hero--secondary .sw-hero__content {
  background-color: #8bcd32;
}

@media screen and (min-width: 768px) {
  .contrast-on .sw-hero--main .sw-hero__content, .contrast-on
  .sw-hero--secondary .sw-hero__content {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.sw-hero__slide--dark .sw-hero--main .sw-hero__content, .sw-hero__slide--dark
.sw-hero--secondary .sw-hero__content {
  background-color: #8bcd32;
}

@media screen and (min-width: 768px) {
  .sw-hero__slide--dark .sw-hero--main .sw-hero__content, .sw-hero__slide--dark
  .sw-hero--secondary .sw-hero__content {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
}

@media screen and (max-width: 767px) {
  .sw-hero__content {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero__content.is-aligned-topleft .sw-container__centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-topleft .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-topleft .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-topleft .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-topleft .sw-container__centered {
    text-align: left;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-topleft .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-topleft .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-topleft .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-topleft .sw-container__centered {
    text-align: right;
  }
  .sw-hero__content.is-aligned-topcenter {
    text-align: center;
  }
  .sw-hero__content.is-aligned-topcenter .sw-container__centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-hero__content.is-aligned-topright .sw-container__centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-topright .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-topright .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-topright .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-topright .sw-container__centered {
    text-align: right;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-topright .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-topright .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-topright .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-topright .sw-container__centered {
    text-align: left;
  }
  .sw-hero__content.is-aligned-centerleft .sw-container__centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-centerleft .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-centerleft .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-centerleft .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-centerleft .sw-container__centered {
    text-align: left;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-centerleft .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-centerleft .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-centerleft .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-centerleft .sw-container__centered {
    text-align: right;
  }
  .sw-hero__content.is-aligned-center {
    text-align: center;
  }
  .sw-hero__content.is-aligned-center .sw-container__centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-hero__content.is-aligned-centerright .sw-container__centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-centerright .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-centerright .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-centerright .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-centerright .sw-container__centered {
    text-align: right;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-centerright .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-centerright .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-centerright .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-centerright .sw-container__centered {
    text-align: left;
  }
  .sw-hero__content.is-aligned-bottomleft .sw-container__centered {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-bottomleft .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-bottomleft .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-bottomleft .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-bottomleft .sw-container__centered {
    text-align: left;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-bottomleft .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-bottomleft .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-bottomleft .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-bottomleft .sw-container__centered {
    text-align: right;
  }
  .sw-hero__content.is-aligned-bottomcenter {
    text-align: center;
  }
  .sw-hero__content.is-aligned-bottomcenter .sw-container__centered {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-hero__content.is-aligned-bottomright .sw-container__centered {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-container--rewarded .sw-hero__content.is-aligned-bottomright .sw-container__centered,
  .sw-hero--menu-detail .sw-hero__content.is-aligned-bottomright .sw-container__centered,
  .sw-hero--secondary .sw-hero__content.is-aligned-bottomright .sw-container__centered,
  .sw-hero--main .sw-hero__content.is-aligned-bottomright .sw-container__centered {
    text-align: right;
  }
  [dir="rtl"] .sw-container--rewarded .sw-hero__content.is-aligned-bottomright .sw-container__centered, [dir="rtl"]
  .sw-hero--menu-detail .sw-hero__content.is-aligned-bottomright .sw-container__centered, [dir="rtl"]
  .sw-hero--secondary .sw-hero__content.is-aligned-bottomright .sw-container__centered, [dir="rtl"]
  .sw-hero--main .sw-hero__content.is-aligned-bottomright .sw-container__centered {
    text-align: left;
  }
}

.sw-hero__content .sw-container__centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .sw-hero__content .sw-container__centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sw-hero__copy {
  font-weight: 400;
  margin: 30px 0;
  max-width: 584px;
}

@media screen and (min-width: 768px) {
  .sw-hero__copy {
    margin: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-hero__copy {
    margin: 45px 0;
  }
}

.slick-slider .sw-hero__copy {
  margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .slick-slider .sw-hero__copy {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__copy,
  .sw-hero--secondary .sw-hero__copy {
    max-width: 340px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero--main .sw-hero__copy,
  .sw-hero--secondary .sw-hero__copy {
    max-width: 584px;
  }
}

@media screen and (min-width: 768px) {
  .has-hero .sw-hero--main .sw-hero__copy, .has-hero
  .sw-hero--secondary .sw-hero__copy {
    margin-top: 87px;
  }
}

@media screen and (min-width: 1024px) {
  .has-hero .sw-hero--main .sw-hero__copy, .has-hero
  .sw-hero--secondary .sw-hero__copy {
    margin-top: 89px;
  }
}

.has-hero .hero__content--text-only .sw-hero--main .sw-hero__copy, .has-hero .hero__content--text-only
.sw-hero--secondary .sw-hero__copy {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .sw-hero--plump .sw-hero__copy {
    margin: 90px 0;
  }
}

@media screen and (min-width: 768px) {
  .has-hero .sw-hero--main .is-aligned-topleft .sw-hero__copy, .has-hero
  .sw-hero--secondary .is-aligned-topleft .sw-hero__copy, .has-hero .sw-hero--main
  .is-aligned-topcenter .sw-hero__copy, .has-hero
  .sw-hero--secondary
  .is-aligned-topcenter .sw-hero__copy, .has-hero .sw-hero--main
  .is-aligned-topright .sw-hero__copy, .has-hero
  .sw-hero--secondary
  .is-aligned-topright .sw-hero__copy {
    margin-top: 107px;
  }
}

@media screen and (min-width: 1024px) {
  .has-hero .sw-hero--main .is-aligned-topleft .sw-hero__copy, .has-hero
  .sw-hero--secondary .is-aligned-topleft .sw-hero__copy, .has-hero .sw-hero--main
  .is-aligned-topcenter .sw-hero__copy, .has-hero
  .sw-hero--secondary
  .is-aligned-topcenter .sw-hero__copy, .has-hero .sw-hero--main
  .is-aligned-topright .sw-hero__copy, .has-hero
  .sw-hero--secondary
  .is-aligned-topright .sw-hero__copy {
    margin-top: 119px;
  }
}

.sw-hero__title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
  line-height: 56px;
  text-transform: uppercase;
}

.sw-hero--slim .sw-hero__title {
  font-size: 30px;
  line-height: 1;
  text-transform: none;
}

.sw-hero--plump .sw-hero__title {
  font-size: 40px;
  line-height: 1;
  text-transform: none;
}

@media screen and (min-width: 768px) {
  .sw-hero--plump .sw-hero__title {
    font-size: 50px;
  }
}

.sw-hero--menu-detail .sw-hero__title {
  line-height: 1;
  text-transform: none;
}

.has-darkcolor .sw-hero__title {
  color: #09602b;
}

.contrast-on .has-darkcolor .sw-hero__title {
  color: #ffffff;
}

@media screen and (max-width: 1023px) {
  .sw-hero--main .sw-hero__title,
  .sw-hero--secondary .sw-hero__title {
    font-size: 50px;
    line-height: 48px;
  }
}

@media screen and (max-width: 767px) {
  .contrast-on .sw-hero--main .sw-hero__title, .contrast-on
  .sw-hero--secondary .sw-hero__title {
    color: #4c006a;
  }
}

.sw-hero__meta {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: none;
}

@media screen and (max-width: 767px) {
  .contrast-on .sw-hero--main .sw-hero__meta, .contrast-on
  .sw-hero--secondary .sw-hero__meta {
    color: #4c006a;
  }
}

.sw-hero__subtitle {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
}

.has-darkcolor .sw-hero__subtitle {
  color: #09602b;
}

.contrast-on .has-darkcolor .sw-hero__subtitle {
  color: #ffffff;
}

.sw-hero__subtitle + .sw-hero__text {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .contrast-on .sw-hero--main .sw-hero__subtitle, .contrast-on
  .sw-hero--secondary .sw-hero__subtitle {
    color: #4c006a;
  }
}

.has-darkcolor .sw-hero__text {
  color: #444343;
}

.contrast-on .has-darkcolor .sw-hero__text {
  color: #ffffff;
}

.sw-hero--plump .sw-hero__text a:not(.sw-hero__cta) {
  color: #ffffff;
  text-decoration: underline;
}

.sw-hero--plump .sw-hero__text a:not(.sw-hero__cta):hover {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .contrast-on .sw-hero--main .sw-hero__text, .contrast-on
  .sw-hero--secondary .sw-hero__text {
    color: #4c006a;
  }
}

.sw-hero__text .for-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-hero__text .for-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero__text .for-mobile {
    display: none;
  }
}

.sw-hero__cta {
  margin-top: 30px;
}

.slick-slider .sw-hero__cta {
  margin-bottom: 0;
  margin-top: 30px;
}

.sw-hero__cta + .sw-hero__cta {
  margin-left: 40px;
}

.sw-hero__rewards-logo,
.sw-hero__logo {
  margin: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-logo,
  .sw-hero__logo {
    margin: 0 0 30px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-hero__rewards-logo,
  .sw-hero__logo {
    margin: 0 0 80px;
  }
}

.sw-hero__rewards-logo .for-desktop,
.sw-hero__logo .for-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-logo .for-desktop,
  .sw-hero__logo .for-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-logo .for-mobile,
  .sw-hero__logo .for-mobile {
    display: none;
  }
}

.sw-hero__rewards-logo svg,
.sw-hero__logo svg {
  width: 150px;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-logo svg,
  .sw-hero__logo svg {
    width: 250px;
  }
}

.sw-hero--main .sw-hero__rewards-logo svg, .sw-hero--main
.sw-hero__logo svg {
  width: 180px;
}

.sw-hero--main .sw-hero__rewards-logo, .sw-hero--main
.sw-hero__logo {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .sw-hero--main .sw-hero__rewards-logo, .sw-hero--main
  .sw-hero__logo {
    margin-bottom: 10px;
  }
}

.sw-hero__rewards-list {
  font-size: 0;
  margin: 5px 0;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-list {
    margin: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-hero__rewards-list ~ .sw-hero__text {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-hero__rewards-list ~ .sw-hero__text .sw-hero__cta {
    margin-top: 20px;
  }
}

.sw-hero__rewards-item {
  color: #ffffff;
  display: inline-block;
  font-weight: 900;
  font-size: 20px;
  margin: 0 10px 0 0;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-item {
    font-size: 24px;
    margin: 0 45px 0 0;
  }
}

[dir="rtl"] .sw-hero__rewards-item {
  margin: 0 0 0 45px;
}

[dir="rtl"] .sw-hero__rewards-item:last-child {
  margin-left: 0;
}

.sw-hero__rewards-item:last-child {
  margin-right: 0;
}

.sw-hero__rewards-item svg {
  display: none;
  height: 36px;
  margin: 0 auto 10px;
  width: 36px;
}

@media screen and (min-width: 768px) {
  .sw-hero__rewards-item svg {
    display: inline-block;
    height: 49px;
    margin: 0 20px 0 0;
    vertical-align: middle;
    width: 49px;
  }
}

[dir="rtl"] .sw-hero__rewards-item svg {
  margin: 0 0 0 20px;
}

.sw-hero__rewards__mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .sw-hero__rewards__mobile-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sw-hero__rewards__mobile-buttons .sw-hero__cta {
  margin-top: 0;
}

.sw-hero__rewards__mobile-buttons .should-show {
  margin-left: 10px;
}

.sw-hero__rewards__mobile-buttons .should-show svg {
  color: #ffffff;
  height: 33px;
  margin-top: 2px;
  width: auto;
}

.sw-getapp-link {
  display: none;
}

.sw-getapp-link.should-show {
  display: inline-block;
}

.sw-hero__text .sw-getapp-link {
  height: 43px;
  margin-left: 12px;
  vertical-align: middle;
}

.sw-getapp-link svg {
  height: 40px;
  width: 135px;
}

.sw-hero__menu-category {
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-decoration: underline;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .sw-hero__menu-category {
    margin-bottom: 50px;
  }
}

.sw-hero__menu-category:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.hero__content--text-only {
  min-height: 200px;
}

.hero__content--text-only .sw-hero__copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  margin: 0 !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .hero__content--text-only .sw-hero__copy {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .hero__content--text-only .sw-hero__title {
    margin-top: -20px;
  }
}

@media screen and (max-width: 479px) {
  .hero__content--text-only .sw-hero__title {
    font-size: 45px;
    line-height: 47px;
  }
}

.hero__content--text-only.bg-blue {
  background-color: #00a7e9;
}

.hero__content--text-only.bg-orange {
  background-color: #ff8200;
}

.hero__content--text-only.bg-green {
  background-color: #8bcd32;
}

.hero__content--text-only.bg-yellow {
  background-color: #f2b700;
}

.hero__content--text-only.bg-purple {
  background-color: #4c006a;
}

.hero__content--text-only.bg-gray {
  background-color: #f4f5f4;
}

.hero__content--logo-only {
  min-height: 100px;
  max-width: 100%;
  margin: 0 !important;
  width: 100%;
  text-align: center;
  display: block;
}

.hero__content--logo-only img {
  position: relative;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
}

.hero__content--logo-only.bg-blue {
  background-color: #00a7e9;
}

.hero__content--logo-only.bg-orange {
  background-color: #ff8200;
}

.hero__content--logo-only.bg-green {
  background-color: #8bcd32;
}

.hero__content--logo-only.bg-yellow {
  background-color: #f2b700;
}

.hero__content--logo-only.bg-purple {
  background-color: #4c006a;
}

.hero__content--logo-only.bg-gray {
  background-color: #f4f5f4;
}

.hero__content--logo-only.bg-white {
  background-color: #ffffff;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-imgblock {
  height: 100%;
  position: relative;
  width: 100%;
  /* &.sw-ar-1x1 {
        &:before {
            content: "";
            float: left;
            height: 0;
            margin-left: -1px;
            padding-top: 100%;
            width: 1px;
        }
    
        &:after {
            content: "";
            clear: both;
            display: table;
        }
    }

    &.sw-ar-36x17 {
        &:before {
            content: "";
            float: left;
            height: 0;
            margin-left: -1px;
            padding-top: calc(17/36 * 100%);
            width: 1px;
        }
    
        &:after {
            content: "";
            clear: both;
            display: table;
        }
    } */
}

.sw-imgblock.sw-imgblock--menu {
  height: auto;
}

.sw-imgblock.sw-imgblock--menu:not(.sw-imgblock--category) {
  overflow: hidden;
}

.sw-imgblock__media,
.sw-imgblock__content {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sw-imgblock__media {
  z-index: 1;
}

.has-copy .sw-imgblock__media {
  position: absolute;
}

.sw-imgblock__media picture {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.sw-imgblock__media picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sw-imgblock__media + .sw-imgblock__content {
    position: absolute;
  }
}

.contrast-on .sw-imgblock__media + .sw-imgblock__content {
  background-color: rgba(0, 0, 0, 0.5);
}

.contrast-on [class*="bg-"] .sw-imgblock__media + .sw-imgblock__content .sw-imgblock__title {
  color: #ffffff;
}

.contrast-on [class*="bg-"] .sw-imgblock__media + .sw-imgblock__content .sw-imgblock__text {
  color: #ffffff;
}

.sw-imgblock--menu .sw-imgblock__media {
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

a:hover .sw-imgblock--menu:not(.sw-imgblock--category) .sw-imgblock__media,
a:focus .sw-imgblock--menu:not(.sw-imgblock--category) .sw-imgblock__media {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.sw-imgblock__content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .no-image .sw-imgblock__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .sw-imgblock__content {
    position: relative;
  }
}

@media screen and (min-width: 768px), screen and (max-width: 767px) {
  .sw-imgblock__content.is-aligned-topleft {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-topleft {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-imgblock__content.is-aligned-topcenter {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-imgblock__content.is-aligned-topright {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-topright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-imgblock__content.is-aligned-centerleft {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-centerleft {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-imgblock__content.is-aligned-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-imgblock__content.is-aligned-centerright {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-centerright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-imgblock__content.is-aligned-bottomleft {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-bottomleft {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-imgblock__content.is-aligned-bottomcenter {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-imgblock__content.is-aligned-bottomright {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  [dir="rtl"] .sw-imgblock__content.is-aligned-bottomright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.sw-imgblock__content:only-child {
  position: relative;
}

.sw-imgblock__content.has-fixed-disclaimer {
  padding-bottom: 45px;
}

.has-copy .sw-imgblock__content {
  position: relative;
  z-index: 2;
}

.theme-dark .sw-imgblock__content {
  background-color: rgba(0, 0, 0, 0.3);
}

.sw-imgblock--menu .sw-imgblock__content {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(84%, rgba(0, 0, 0, 0.3)), to(black));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3) 84%, black 100%);
}

@media screen and (max-width: 767px) {
  .sw-3up--blockquote .sw-imgblock--menu .sw-imgblock__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
  }
}

.contrast-on .sw-imgblock--menu .sw-imgblock__content {
  background-color: transparent;
}

.sw-imgblock--category .sw-imgblock__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: none;
}

.sw-imgblock__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 28px;
  margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
  .sw-imgblock__title {
    font-size: 30px;
    line-height: 34px;
  }
}

.contrast-on [class*="bg-"]:not([class*="bg-purple"]) .sw-imgblock__title {
  color: #4c006a;
}

.sw-imgblock__copy {
  font-weight: 400;
  margin: 15px 10px;
}

.has-copy .sw-imgblock__copy {
  margin-bottom: 45px;
  margin-top: 45px;
}

.has-fixed-disclaimer.is-aligned-bottomcenter .sw-imgblock__copy,
.has-fixed-disclaimer.is-aligned-bottomleft .sw-imgblock__copy,
.has-fixed-disclaimer.is-aligned-bottomright .sw-imgblock__copy {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .sw-imgblock__copy {
    margin: 20px;
  }
  .sw-3up .sw-imgblock__copy {
    margin: 15px 10px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgblock__copy {
    margin: 30px;
  }
  .sw-3up .sw-imgblock__copy {
    margin: 30px;
  }
}

a:focus > .has-bar .sw-imgblock__copy {
  background-color: #006230;
}

.has-bar .sw-imgblock__copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #008938;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 10px 24px 10px 15px;
  text-align: left;
  width: 100%;
}

[dir="rtl"] .has-bar .sw-imgblock__copy {
  padding-left: 24px;
  padding-right: 15px;
}

.has-bar .sw-imgblock__copy .sw-icon,
.has-bar .sw-imgblock__copy svg {
  height: 16px;
  width: 16px;
}

.has-bar .sw-imgblock__copy .sw-icon {
  margin-left: 16px;
}

[dir="rtl"] .has-bar .sw-imgblock__copy .sw-icon {
  margin-left: 0;
  margin-right: 16px;
}

.has-link a:focus .has-bar .sw-imgblock__copy {
  background-color: #006230;
}

.sw-imgblock--menu:not(.sw-imgblock--category) .sw-imgblock__copy {
  margin: 0;
}

.sw-3up--blockquote .sw-imgblock--menu:not(.sw-imgblock--category) .sw-imgblock__copy {
  margin: 0;
}

.sw-imgblock--category .sw-imgblock__copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sw-imgblock__text {
  color: #ffffff;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 1024px) {
  .sw-imgblock__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-imgblock__text br {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-imgblock__text br {
    display: inline;
  }
}

.has-bar .sw-imgblock__text {
  font-size: 16px;
  line-height: 1;
}

.contrast-on [class*="bg-"]:not([class*="bg-purple"]) .sw-imgblock__text {
  color: #4c006a;
}

.sw-imgblock--category .sw-imgblock__text {
  font-size: 18px;
  line-height: 24px;
}

.sw-imgblock__btn {
  margin-top: 8px;
}

.has-copy .sw-imgblock__btn {
  margin-top: 25px;
}

.sw-imgblock--category .sw-imgblock__btn {
  display: block;
  margin-top: 20px;
  width: 160px;
}

.sw-imgblock--category .sw-imgblock__btn:first-child {
  margin-top: 0;
}

.sw-imgblock--category .sw-btn {
  display: block;
  margin-top: 20px;
  width: 160px;
}

.sw-imgblock--category .sw-btn:first-child {
  margin-top: 0;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-imgcopy-split {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  padding-top: 15px;
}

@media screen and (min-width: 768px) {
  .sw-imgcopy-split {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 48.65% 51.35%;
        grid-template-columns: 48.65% 51.35%;
    margin-top: 30px;
    padding-top: 30px;
  }
}

.sw-imgcopy-split:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

div:not(.sw-imgcopy-split) + .sw-imgcopy-split {
  border-top: none;
  padding-top: 0;
}

.sw-imgcopy-split + .sw-imgcopy-split + div:not(.sw-imgcopy-split) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .sw-imgcopy-split + .sw-imgcopy-split + div:not(.sw-imgcopy-split) {
    padding-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split + .sw-imgcopy-split + div:not(.sw-imgcopy-split) {
    padding-top: 30px;
  }
}

.sw-imgcopy-split picture {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .sw-imgcopy-split picture {
    margin-bottom: 0;
    width: 48.65%;
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split picture {
    grid-row: 1/3;
    width: auto;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
  }
}

.sw-imgcopy-split picture img {
  display: block;
  width: 100%;
}

.sw-imgcopy-split__copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-imgcopy-split__copy {
    padding: 0 0 0 20px;
    text-align: left;
    width: calc(51.35% - 20px);
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split__copy {
    -ms-flex-line-pack: end;
        align-content: flex-end;
    -ms-flex-item-align: start;
        align-self: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 18px;
    padding: 0 0 0 30px;
    width: auto;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }
}

.sw-imgcopy-split__copy strong,
.sw-imgcopy-split__copy b {
  font-weight: 700;
}

.sw-imgcopy-split__copy p {
  margin: 0 0 5px;
}

.sw-imgcopy-split__title,
.sw-rte .sw-imgcopy-split__title {
  color: #00572d;
  font-size: 30px;
  font-weight: 900;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split__title,
  .sw-rte .sw-imgcopy-split__title {
    font-size: 50px;
    line-height: 1;
    width: 100%;
  }
}

.sw-imgcopy-split__title:empty,
.sw-rte .sw-imgcopy-split__title:empty {
  display: none;
}

.sw-imgcopy-split__subtitle,
.sw-rte .sw-imgcopy-split__subtitle {
  color: #008938;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  margin: 0 0 20px;
}

.sw-imgcopy-split__subtitle:empty,
.sw-rte .sw-imgcopy-split__subtitle:empty {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split__subtitle,
  .sw-rte .sw-imgcopy-split__subtitle {
    font-size: 30px;
    line-height: 37px;
    width: 100%;
  }
}

.sw-imgcopy-split__disclaimer,
.sw-rte .sw-imgcopy-split__disclaimer {
  color: #444343;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.sw-imgcopy-split__disclaimer:empty,
.sw-rte .sw-imgcopy-split__disclaimer:empty {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-imgcopy-split__disclaimer,
  .sw-rte .sw-imgcopy-split__disclaimer {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .sw-imgcopy-split__disclaimer,
  .sw-rte .sw-imgcopy-split__disclaimer {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding: 0 0 0 30px;
    -ms-grid-column: 2;
    -ms-grid-row: 2;
    width: 100%;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-inset-section:first-child:before {
  content: none;
}

.sw-inset-section:before {
  background-color: #f4f5f4;
  content: '';
  display: block;
  height: 15px;
  margin: 15px -15px;
}

@media screen and (min-width: 768px) {
  .sw-inset-section:before {
    height: 20px;
    margin: 20px -20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-inset-section:before {
    height: 30px;
    margin: 30px -30px;
  }
}

.sw-inset-section__title {
  color: #00572d;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 25px;
}

.sw-inset-section__title.is-aligned-center {
  text-align: center;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
}

@media screen and (min-width: 768px) {
  .sw-modal__close {
    right: 20px;
    top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-modal__close {
    right: 30px;
    top: 30px;
  }
}

.sw-modal__close button {
  color: #00572d;
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.sw-modal__close--green {
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-modal__close--green button {
  height: 100%;
  width: 100%;
  color: #ffffff;
  background-color: #00572d;
}

.sw-modal__overlay,
#divYourBuild.sw-modal__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
}

.modal-open-sw-v2 .sw-modal__overlay, .modal-open-sw-v2
#divYourBuild.sw-modal__overlay {
  display: block;
}

.sw-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  overflow: auto;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  visibility: hidden;
  z-index: 9999;
}

.modal-open-sw-v2 .sw-modal.sw-modal-open-sesame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
}

.sw-modal__box,
#yourBuildContent.sw-modal__box {
  position: relative;
  padding: 15px;
  background-color: #ffffff;
  margin: auto;
  max-width: 1170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .sw-modal__box,
  #yourBuildContent.sw-modal__box {
    padding: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-modal__box,
  #yourBuildContent.sw-modal__box {
    padding: 30px;
  }
}

.modal-open-sw-v2 .sw-modal__box, .modal-open-sw-v2
#yourBuildContent.sw-modal__box {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

#yourBuildContent.sw-modal__box {
  border: none;
  min-height: auto;
  width: auto;
}

@media screen and (min-width: 1024px) {
  .sw-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
@media screen and (min-width: 1024px) {
  .sw-nutritional-allergens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sw-nutritional {
  margin: 30px 0;
}

@media screen and (min-width: 1024px) {
  .sw-nutritional {
    width: 70%;
  }
}

.sw-nutritional__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0 -5px;
}

.sw-nutritional__item {
  color: #00572d;
  margin: 0 5px 10px;
  width: calc(100%/2 - 10px);
}

@media screen and (min-width: 480px) {
  .sw-nutritional__item {
    width: calc(100%/3 - 10px);
  }
}

@media screen and (min-width: 768px) {
  .sw-nutritional__item {
    width: calc(100%/5 - 10px);
  }
}

.sw-nutritional__value {
  font-size: 16px;
  font-weight: 400;
}

.sw-nutritional__name {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sw-allergens {
  margin: 30px 0;
}

@media screen and (min-width: 1024px) {
  .sw-allergens {
    width: 30%;
  }
}

.sw-allergens__meta {
  font-size: 14px;
  font-weight: 400;
}

.sw-allergens__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0 0 -20px;
}

.sw-allergens__item {
  margin: 0 20px 10px;
}

.sw-allergens__contains {
  font-size: 14px;
  font-weight: 400;
  margin: 20px 0 0;
}

.sw-allergens__contains h5 {
  color: #00572d;
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-nutrition-calculator__trigger {
  color: #00572d;
  font-size: 16px;
  font-weight: 900;
  padding: 0 30px 0 0;
  position: relative;
  text-transform: uppercase;
}

.sw-nutrition-calculator__trigger:after, .sw-nutrition-calculator__trigger:before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sw-nutrition-calculator__trigger:after {
  background-color: #008938;
  border-radius: 50%;
  height: 18px;
  width: 18px;
}

.sw-nutrition-calculator__trigger:before {
  border-bottom: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  height: 6px;
  margin-top: -1px;
  right: 5px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
      -ms-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  width: 6px;
  z-index: 2;
}

#NutCalcModal body.modal-open {
  overflow: hidden;
}

#NutCalcModal .modal-header {
  padding: 30px 30px 0 30px;
}

#NutCalcModal .modal-header button {
  float: right;
  font-size: 12px;
  font-weight: 900;
  color: #00572d;
  text-transform: uppercase;
  vertical-align: baseline;
  margin-top: 10px;
}

#NutCalcModal .modal-content, #NutCalcModal .modal-body, #NutCalcModal .modal-footer {
  background-color: #ffffff;
}

#NutCalcModal .modal-body {
  padding-top: 0;
}

#NutCalcModal .calculateYours {
  border: none;
  height: auto;
  padding: 0 0 15px;
}

#NutCalcModal .nutritionCopy-MedGreen {
  color: #00572d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.modal-open #NutCalcModal .sw-modal {
  /* stupid IE11 hates display: flex with width: 100% or width: auto here */
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
}

#NutCalcModal .sw-modal {
  position: relative;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  #NutCalcModal .modal-dialog {
    width: 1200px;
  }
}

@media screen and (max-width: 1024px) {
  #NutCalcModal .modal-dialog {
    width: auto;
  }
}

.sw-modal__box,
#yourBuildContent.sw-modal__box {
  position: relative;
  padding: 15px;
  padding-top: 0;
  background-color: #ffffff;
  margin: auto;
  max-width: 1170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  z-index: 2;
}

.modal-open .sw-modal__box, .modal-open
#yourBuildContent.sw-modal__box {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

#yourBuildContent.sw-modal__box {
  border: none;
  min-height: auto;
  width: auto;
}

#yourBuildContent label.selectFavoriteLabel {
  padding: 0em 1.85em 0em 0.45em;
  font-weight: 400;
}

#yourBuildContent label.selectFavoriteLabel.pull-right {
  padding: 0em 0.45em 0em 1.85em;
}

.sw-modal__content .selectFavorite {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f5f4;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-bottom: 10px;
  padding: 15px 20px;
}

.sw-modal__content .greencolumn {
  background-color: #f4f5f4;
  height: 100%;
  padding: 15px 25px;
}

.sw-modal__content .ProductDisclaimerBelowPrintButton {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}

.sw-modal__content .copy-small {
  color: #006230;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.sw-modal__content .nutritionCopy-SmallGreen {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.sw-modal__content .NutritionCalculatorIngredients {
  margin-bottom: 20px;
  overflow: hidden;
}

.sw-modal__content .NutritionCalculatorIngredients label {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin-left: 4px;
  text-transform: none;
  vertical-align: top;
}

.sw-modal__content .NutritionCalculatorIngredients .nutritionCopy-SmallGreen {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 5px;
}

.sw-modal__content .NutritionCalculatorIngredients .copy-small {
  margin-bottom: 10px;
}

.sw-nutrition__calculator {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .sw-nutrition__calculator {
    width: 73.874%;
  }
}

.sw-nutrition__info {
  clear: both;
  margin-top: 30px;
}

@media screen and (min-width: 1024px) {
  .sw-nutrition__info {
    margin-bottom: -30px;
    margin-right: -30px;
    margin-top: 0;
    width: 26.78%;
  }
}

.sw-nutrition__info .greencolumn {
  height: 100%;
}

.sw-nutrition__info .default-nutritionInfo {
  color: #444343;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-bottom: 15px;
}

.sw-nutrition__info .nutrient-fact {
  border-bottom: 1px solid #ffffff;
  padding: 3px 0;
}

.sw-nutrition__info .nutrient-fact:last-child {
  border-bottom: none;
}

.sw-nutrition__info .nutritionTextBlack,
.sw-nutrition__info .nutritionTextGray {
  font-size: 12px;
  width: 120px;
}

.sw-nutrition__info .nutritionTextGray,
.sw-nutrition__info .nutritionValueGray {
  color: #000000;
  font-size: 12px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.nutritionClass {
  margin: 0 auto;
  max-width: 815px;
}

.nutrition-grid .sw-tabs__item, .nutrition-grid .horizontalTabs .sw-tabs__item {
  min-width: 170px;
  margin-right: 20px;
  padding: 0 20px;
  min-height: 68px;
}

.nutrition-grid .sw-tabs__item .nutritionGridButton,
.nutrition-grid .sw-tabs__item .nutritionGridButtonEnabled, .nutrition-grid .horizontalTabs .sw-tabs__item .nutritionGridButton,
.nutrition-grid .horizontalTabs .sw-tabs__item .nutritionGridButtonEnabled {
  background-color: transparent;
  border: 0;
  height: auto;
  display: inline;
  font-family: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

.nutrition-grid .sw-tabs__item :focus, .nutrition-grid .horizontalTabs .sw-tabs__item :focus {
  outline: 4px dotted #4c006a;
}

.nutrition-grid .sw-tabs__item--selected {
  color: #8bcd32;
  background-color: #00572d;
}

.nutrition-grid .sw-tabs__item--selected:after {
  content: "";
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #00572d;
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
}

.contrast-on .nutrition-grid .sw-tabs__item--selected {
  color: #ffffff;
}

.nutrition-grid .nut-grid-table {
  border: dotted 1px #ccc;
  width: 100%;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.nutrition-grid .nut-grid-table .tableHeader {
  background-color: #ffffff;
}

.nutrition-grid .nut-grid-table .tableHeader tr {
  background-color: #ffffff;
}

.nutrition-grid .nut-grid-table .HeadTitle {
  vertical-align: top;
  background-color: #ffffff;
}

.nutrition-grid .nut-grid-table .nut-row-header {
  width: 100px;
}

.nutrition-grid .nut-grid-table th.head, .nutrition-grid .nut-grid-table th.HeadTitle {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

.nutrition-grid .nut-grid-table .ingredients-row {
  border: dotted 1px #ccc;
  font-size: 11px;
}

.nutrition-grid .nut-grid-table .ingredients-row td {
  width: 100%;
  padding: 5px;
}

.nutrition-grid .nut-grid-table .category-row {
  font-size: 16px;
  background-color: #527a4b;
}

.nutrition-grid .nut-grid-table .category-row th.name {
  color: #ffffff;
}

.nutrition-grid .nut-grid-table .category-row th.name a {
  color: #ffffff;
}

.nutrition-grid .nut-grid-table .hide-me-sighted {
  font-size: 0;
}

.nutrition-grid .nut-grid-table .nut-footer-row td:first-of-type {
  vertical-align: top;
  text-align: left;
}

.nutrition-grid .nut-grid-table .nut-footer-row td:last-of-type {
  vertical-align: top;
  text-align: right;
}

.contrast-on .nutrition-grid .nut-grid-table .nut-row-header {
  color: #000000;
}

.contrast-on .nutrition-grid .nut-grid-table .nut-row-header .name {
  color: #000000;
}

.contrast-on .nutrition-grid .nut-grid-table .infoRowOver .name {
  color: #ffffff;
}

.contrast-on .nutrition-grid .nut-grid-table .infoRowOver .name a {
  color: #ffffff;
}

.nutrition-grid--desktop {
  display: none;
}

.nutrition-grid--desktop .sw-tabs__list {
  padding-bottom: 30px;
}

.nutrition-grid--desktop .sw-tabs__copy {
  text-align: center;
  margin: 0 auto 20px auto;
  max-width: 565px;
}

@media screen and (min-width: 480px) {
  .nutrition-grid--desktop {
    display: block;
  }
}

.nutrition-grid--desktop .nutritionClass {
  overflow: scroll;
  height: 550px;
  overflow-x: hidden;
}

.nutrition-grid--mobile {
  display: none;
}

@media screen and (max-width: 480px) {
  .nutrition-grid--mobile {
    display: block;
  }
}

.nutrition-grid__download-item {
  list-style-type: none;
  margin: 10px 0 0 0;
  text-align: center;
}

.nutrition-grid__download-link {
  color: #008938;
  font-weight: 700;
  text-decoration: none;
}

.nutrition-grid__download-link svg,
.nutrition-grid__download-link img {
  fill: #00572d;
  height: 13px;
  width: 15px;
}

.nutrition-grid-disclaimers {
  margin-top: 10px;
  text-align: center;
}

.nutrition-grid-disclaimers .Notes {
  color: inherit;
}

.nutrition-grid-disclaimers--hidden {
  display: none;
}

@media screen and (max-width: 479px) {
  .nutrition-grid-disclaimers--hidden {
    display: none;
  }
}

.nutrition-grid__copy {
  margin-bottom: 30px;
  border-bottom: 1px #dcdee3 solid;
  padding-bottom: 15px;
}

.nutrition-grid__copy .nutrition-grid__copy__heading {
  text-align: center;
  color: #006230;
  margin-bottom: 15px;
  font-size: 21px;
}

.nutrition-grid__copy .nutrition-grid__copy__paragraph {
  font-weight: 600;
  text-align: center;
  color: #006230;
}

.nutrition-grid__copy .nutrition-grid__copy__paragraph p {
  color: inherit;
  font-weight: inherit;
}

.sw-tabs__item input {
  height: 100% !important;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent !important;
}

.sw-tabs__item [aria-hidden="true"] {
  visibility: visible;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-ee-info {
  background-color: #dd3705;
  color: #ffffff;
  padding: 10px 10px 10px 35px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.sw-ee-info svg {
  color: #ffffff;
  fill: #ffffff;
  left: 5px;
  position: absolute;
  top: 5px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-press {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -60px;
}

@media screen and (min-width: 480px) {
  .sw-press {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

div.sw-press__item {
  display: none;
  margin-bottom: 50px;
  width: 100%;
}

div.sw-press__item:nth-of-type(-n + 6) {
  display: block;
}

div.sw-press__item a {
  text-decoration: none;
  display: block;
}

@media screen and (min-width: 480px) and (max-width: 1023px) {
  div.sw-press__item {
    width: calc(50% - 20px/ 2);
    margin-bottom: 37px;
    margin-right: 20px;
  }
  div.sw-press__item:nth-of-type(2n + 2) {
    margin-right: 0;
  }
}

@media screen and (min-width: 1024px) {
  div.sw-press__item {
    width: calc(33% - 17px);
    margin-bottom: 70px;
    margin-right: 30px;
  }
  div.sw-press__item:nth-of-type(2n + 2) {
    margin-right: 30px;
  }
  div.sw-press__item:nth-of-type(3n + 3) {
    margin-right: 0;
  }
}

.sw-press__photo img {
  width: 100%;
  height: auto;
}

.sw-press__copy {
  text-align: center;
  padding: 0 80px 0 70px;
}

.sw-press__photo + .sw-press__copy {
  margin-top: 17px;
}

@media screen and (min-width: 480px) {
  .sw-press__photo + .sw-press__copy {
    padding: 0 30px 0 20px;
  }
}

@media screen and (min-width: 768px) {
  .sw-press__photo + .sw-press__copy {
    margin-top: 22px;
  }
}

.sw-press__copy .sw-press__copy__heading {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

a .sw-press__copy .sw-press__copy__heading {
  color: #008938;
}

.sw-press__copy .sw-press__copy__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-style: italic;
}

a .sw-press__copy .sw-press__copy__date {
  color: #00572d;
}

.sw-press__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-product-intro .sw-product-intro__heading {
  font-size: 21px;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-quicknav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px -15px -15px;
  width: 100%;
  left: -15px;
  margin: 0;
  position: absolute;
  right: -15px;
  top: 59px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .sw-quicknav {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-quicknav {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sw-quicknav {
    left: -20px;
    right: -20px;
  }
}

.contrast-on .sw-quicknav {
  background-color: #ffffff;
}

.mobile-nav-open .sw-quicknav {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-homepage:not(.mobile-nav-open) .sw-quicknav {
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.75);
            box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    position: absolute;
    top: 100%;
    width: auto;
  }
}

.sw-quicknav__item {
  padding: 13px 0 9px;
}

.sw-quicknav__item:after {
  background-color: #006230;
  content: '';
  display: inline-block;
  height: 19px;
  margin: 0 20px 0 16px;
  vertical-align: text-bottom;
  width: 1px;
}

.sw-quicknav__item:last-child:after {
  content: none;
}

@media screen and (max-width: 767px) {
  .is-homepage .sw-quicknav__item {
    margin: 15px 0 0;
    padding: 0;
    position: relative;
    width: 100%;
  }
  .is-homepage .sw-quicknav__item:first-child {
    margin: 0;
  }
  .is-homepage .sw-quicknav__item:after {
    content: none;
  }
}

.sw-quicknav__item picture {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-homepage .sw-quicknav__item picture {
    display: block;
    height: 170px;
  }
}

.is-homepage .sw-quicknav__item picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.sw-quicknav__trigger {
  color: #006230;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .is-homepage .sw-quicknav__trigger {
    background-color: rgba(0, 137, 56, 0.7);
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    left: 50%;
    padding: 10px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 270px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-rte h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 28px;
}

@media screen and (min-width: 480px) {
  .sw-rte h2 {
    font-size: 30px;
    line-height: 34px;
  }
}

.sw-rte h3 {
  color: #006230;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px;
}

.sw-rte p {
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 15px;
}

.sw-rte .sw-rte__no-margin {
  margin: 0;
}

.sw-rte .sw-rte__faux-header {
  display: block;
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.sw-ingredient {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .sw-ingredient {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sw-ingredient__col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sw-ingredient__col {
    width: calc(50% - 20px);
  }
}

@media screen and (min-width: 1024px) {
  .sw-ingredient__col {
    width: calc(50% - 30px);
  }
}

h2.sw-ingredient__heading,
h3.sw-ingredient__heading,
.sw-ingredient__heading {
  background-color: #f4f5f4;
  color: #00572d;
  font-weight: 900;
  margin-bottom: 20px;
  padding: 12px 0 15px 13px;
  font-size: 20px;
}

@media screen and (min-width: 1024px) {
  h2.sw-ingredient__heading,
  h3.sw-ingredient__heading,
  .sw-ingredient__heading {
    padding: 15px 0 15px 15px;
  }
}

.sw-ingredient__list {
  margin-bottom: 45px;
}

@media screen and (min-width: 1024px) {
  .sw-ingredient__list:last-of-type {
    margin-bottom: 0;
  }
}

.sw-ingredient__list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  list-style-type: none;
  margin-left: 13px;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .sw-ingredient__list li {
    font-size: 20px;
    line-height: 28px;
    margin-left: 15px;
  }
}

.sw-catering {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-catering {
    text-align: left;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-catering--separator {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
  }
}

.sw-catering__image {
  width: 100%;
  margin-bottom: 15px;
}

.sw-catering__image img {
  width: 100%;
  height: auto;
}

.sw-catering__heading,
h2.sw-catering__heading,
h3.sw-catering__heading {
  color: #00572d;
  font-size: 30px;
  font-weight: 900;
  line-height: 35px;
}

@media screen and (min-width: 1024px) {
  .sw-catering__heading,
  h2.sw-catering__heading,
  h3.sw-catering__heading {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 0px;
  }
}

.sw-catering__serves {
  color: #00572d;
  font-size: 16px;
  font-weight: 400;
  display: block;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
  .sw-catering__serves {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-catering__copy {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .sw-catering__copy {
    font-size: 18px;
  }
}

.sw-catering__copy p {
  font-size: inherit;
  line-height: inherit;
}

.sw-catering__summary,
h4.sw-catering__summary,
h3.sw-catering__summary {
  color: #008938;
  font-size: 24px;
  line-height: 28px;
  font-weight: 900;
}

@media screen and (min-width: 1024px) {
  .sw-catering__summary,
  h4.sw-catering__summary,
  h3.sw-catering__summary {
    font-size: 30px;
    line-height: 34px;
  }
}

@media screen and (min-width: 768px) {
  .sw-catering__summary,
  h4.sw-catering__summary,
  h3.sw-catering__summary {
    margin-bottom: 25px;
  }
}

.sw-franchise-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .sw-franchise-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.sw-franchise-list ul, .sw-franchise-list ol {
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: -33px;
}

.sw-franchise-list ul:first-of-type, .sw-franchise-list ol:first-of-type {
  counter-reset: franchise-counter;
}

@media screen and (max-width: 767px) {
  .sw-franchise-list ul:first-of-type, .sw-franchise-list ol:first-of-type {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-franchise-list ul, .sw-franchise-list ol {
    width: calc(50% - 3 * 30px);
    margin-left: 30px;
    margin-right: 30px;
  }
}

.sw-franchise-list ul li, .sw-franchise-list ol li {
  color: #00572d;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1024px) {
  .sw-franchise-list ul li, .sw-franchise-list ol li {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-franchise-list ul li:before, .sw-franchise-list ol li:before {
  content: counter(franchise-counter, decimal);
  counter-increment: franchise-counter;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #8bcd32;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

@media screen and (min-width: 1024px) {
  .sw-franchise-list ul li:before, .sw-franchise-list ol li:before {
    font-size: 20px;
    line-height: 28px;
    margin-right: 25px;
  }
}

.isRightToLeft .sw-franchise-list ul li:before, .isRightToLeft .sw-franchise-list ol li:before {
  margin-left: 20px;
  margin-right: 0;
}

.sw-franchise-list ul li span, .sw-franchise-list ol li span {
  width: calc(100% - 58px);
}

.sw-franchise-list ul li a, .sw-franchise-list ol li a {
  color: #008938;
  text-decoration: underline;
}

.sw-rewards-deals .sw-rewards-deals__item {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 53px;
  border-bottom: #c6c6c6 solid 1px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .sw-rewards-deals .sw-rewards-deals__item {
    font-size: 18px;
  }
}

.sw-rewards-deals .sw-rewards-deals__item a {
  color: #008938;
  text-decoration: none;
  margin: auto 12px;
}

@media screen and (min-width: 1024px) {
  .sw-rewards-deals .sw-rewards-deals__item a {
    margin: auto 14px;
  }
}

.sw-rewards-deals .sw-rewards-deals__item a svg {
  fill: #00572d;
  margin-right: 12px;
  width: 15px;
  height: 13px;
}

.sw-catering-phone-link,
h3 a.sw-catering-phone-link {
  color: #ffffff;
  text-decoration: none;
}

.sw-catering-phone-link:hover,
h3 a.sw-catering-phone-link:hover {
  color: #ffffff;
  opacity: 0.9;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-shopnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1024px) {
  .sw-shopnav {
    display: none;
  }
}

.language-dd-on .sw-shopnav {
  display: none;
}

.sw-shopnav__item {
  padding: 4px 40px;
  position: relative;
}

.sw-shopnav__item:after {
  background-color: #006230;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

.sw-shopnav__item:after [dir="rtl"] {
  left: 0;
  right: auto;
}

.sw-shopnav__item:first-child {
  padding-left: 0;
}

[dir="rtl"] .sw-shopnav__item:first-child {
  padding-left: 40px;
  padding-right: 0;
}

.sw-shopnav__item:first-child:after {
  content: '';
}

[dir="rtl"] .sw-shopnav__item:first-child:after {
  content: none;
}

.sw-shopnav__item:last-child {
  padding-right: 0;
}

[dir="rtl"] .sw-shopnav__item:last-child {
  padding-left: 0;
  padding-right: 40px;
}

.sw-shopnav__item:last-child:after {
  content: none;
}

[dir="rtl"] .sw-shopnav__item:last-child:after {
  content: '';
}

.sw-shopnav__item .icon {
  display: block;
  margin-bottom: 24px;
}

.sw-shopnav__item .icon svg,
.sw-shopnav__item .icon img {
  color: #006230;
  display: block;
  fill: #006230;
  height: 47px;
  margin: 0 auto;
  width: auto;
}

.sw-shopnav__item .icon.--bag svg, .sw-shopnav__item .icon.--bag img {
  width: 37px;
}

.sw-shopnav__item .icon.--mappin svg, .sw-shopnav__item .icon.--mappin img {
  width: 32px;
}

.sw-shopnav__trigger {
  color: #006230;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-signup {
  margin-top: 37px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-signup {
    margin: 37px auto 0;
    text-align: center;
    width: 422px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup {
    margin: 37px 0 0;
    text-align: right;
    width: 600px;
  }
}

@media screen and (min-width: 1230px) {
  .sw-signup {
    width: 540px;
  }
}

.sw-signup.sw-signup--rewards {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #8bcd32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.sw-signup.sw-signup--rewards .sw-signup__graphic {
  bottom: 0;
  display: none;
  position: absolute;
  right: 15px;
}

@media screen and (min-width: 768px) {
  .sw-signup.sw-signup--rewards .sw-signup__graphic {
    display: block;
  }
}

.sw-signup__alternate {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .sw-signup__alternate {
    margin: 37px auto 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .sw-signup__alternate {
    margin: 0px auto 0;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup__alternate {
    margin: 0 0 0;
  }
}

.sw-signup__content__alternate {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sw-signup__content__alternate .sw-btn--primary + .sw-btn--primary {
  margin-top: 10px;
}

.isRightToLeft .sw-signup__content__alternate {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.isRightToLeft .sw-signup__content__alternate .sw-btn--primary + .sw-btn--primary {
  margin-top: 10px;
}

.sw-signup__header {
  color: #00572d;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.contrast-on .sw-signup__header {
  color: #4c006a;
}

@media screen and (min-width: 1024px) {
  .sw-signup__header {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.sw-signup--rewards .sw-signup__header {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 30px;
}

@media screen and (min-width: 768px) {
  .sw-signup--rewards .sw-signup__header {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup--rewards .sw-signup__header {
    margin-bottom: 5px;
  }
}

.contrast-on .sw-signup--rewards .sw-signup__header {
  color: #4c006a;
}

.sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__header {
  display: none;
}

.sw-signup--rewards .sw-signup__excerpt {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  margin: 0 auto 25px;
  max-width: 390px;
}

@media screen and (min-width: 1024px) {
  .sw-signup--rewards .sw-signup__excerpt {
    max-width: none;
  }
}

.contrast-on .sw-signup--rewards .sw-signup__excerpt {
  color: #4c006a;
}

.sw-signup__content {
  margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
  .sw-signup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.sw-signup--rewards .sw-signup__content {
  display: block;
}

.sw-signup__content__alternate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .sw-signup--rewards .sw-signup__fieldset {
    margin-top: 20px;
  }
  .sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__fieldset {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup__fieldset {
    margin-top: -10px;
    position: relative;
  }
}

.sw-signup--rewards .sw-signup__fieldset {
  margin-left: auto;
  margin-right: auto;
  max-width: 360px;
  text-align: center;
}

.sw-signup__fieldset label {
  color: #00572d;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .sw-signup--rewards .sw-signup__fieldset label {
    margin-bottom: 2px;
    position: static;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup__fieldset label {
    bottom: 107%;
    position: absolute;
  }
}

.contrast-on .sw-signup__fieldset label {
  color: #4c006a;
}

.sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__fieldset label {
  display: none;
}

.sw-signup__fieldset input {
  background-color: #ffffff;
  border: none;
  color: #00572d;
  font-size: 14px;
  font-weight: 400;
  height: 45px;
  margin: 0;
  width: 100%;
  padding: 0 18px;
  vertical-align: top;
}

@media screen and (min-width: 480px) {
  .sw-signup__fieldset input {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .sw-signup__fieldset input {
    width: 422px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-signup__fieldset input {
    width: 415px;
  }
}

@media screen and (min-width: 1230px) {
  .sw-signup__fieldset input {
    width: 350px;
  }
}

.sw-signup--rewards .sw-signup__fieldset input {
  width: 100%;
}

.sw-signup__fieldset input::-webkit-input-placeholder {
  color: #00572d;
}

.sw-signup__fieldset input::-moz-placeholder {
  color: #00572d;
}

.sw-signup__fieldset input:-ms-input-placeholder {
  color: #00572d;
}

.sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__fieldset input {
  display: none;
}

.sw-signup__fieldset button {
  cursor: pointer;
  height: 45px;
  margin-left: -4px;
  margin-top: 0;
  vertical-align: top;
  width: 114px;
}

.has-succeeded .sw-signup__fieldset {
  display: none;
}

.sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__fieldset {
  display: block;
}

.sw-signup__error {
  color: #dd3705;
  display: none;
}

.sw-signup__error.error-shown {
  display: block;
}

.sw-signup:not(.sw-signup--rewards).has-succeeded .sw-signup__error {
  display: none;
}

.sw-signup__disclaimer {
  color: #00572d;
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 16px;
  text-align: left;
}

.sw-signup__disclaimer.is-shown {
  display: block;
}

.contrast-on .sw-signup__disclaimer {
  color: #4c006a;
}

.sw-signup--rewards .sw-signup__disclaimer {
  max-width: 360px;
}

.sw-signup__disclaimer a {
  color: #00572d;
}

.contrast-on .sw-signup__disclaimer a {
  color: #4c006a;
}

.has-succeeded .sw-signup__disclaimer {
  display: none;
}

.has-succeeded .sw-signup__button {
  display: none;
}

.sw-signup__message {
  color: #00572d;
  display: none;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.sw-signup--rewards .sw-signup__message {
  text-align: center;
}

.contrast-on .sw-signup__message {
  color: #4c006a;
}

.has-failed .sw-signup__message,
.has-succeeded .sw-signup__message {
  display: block;
}

.has-failed .sw-signup__message {
  color: #4c006a;
  margin-bottom: 15px;
}

.sw-signup:not(.sw-signup--rewards).has-failed .sw-signup__message {
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .sw-signup:not(.sw-signup--rewards).has-failed .sw-signup__message {
    text-align: left;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-skip-to-content {
  padding: 6px;
  position: absolute;
  top: -200px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background-color: transparent;
  -webkit-transition: top 2s ease-out, background-color 2s linear;
  transition: top 2s ease-out, background-color 2s linear;
  z-index: 7;
}

[dir="rtl"] .sw-skip-to-content {
  left: auto;
  right: 0;
}

.sw-skip-to-content:focus {
  top: 0px;
  background-color: #f2b700;
  -webkit-transition: top .2s ease-in, background-color .5s linear;
  transition: top .2s ease-in, background-color .5s linear;
}

@charset "UTF-8";
/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/SubwayV2/build/img/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/SubwayV2/build/img/slick/fonts/slick.eot");
  src: url("/SubwayV2/build/img/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/SubwayV2/build/img/slick/fonts/slick.woff") format("woff"), url("/SubwayV2/build/img/slick/fonts/slick.ttf") format("truetype"), url("/SubwayV2/build/img/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-list {
  height: 100%;
  width: 100%;
}

.slick-track {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slick-track .slick-slide {
  background-color: #8bcd32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .slick-track .slick-slide {
    background-color: transparent;
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.slick-track .slick-slide[aria-hidden="true"] {
  visibility: hidden;
}

.app-page .mobile-phone-transition .phone-wrapper .phone-inner-wrapper .screen-wrapper .slick-track {
  display: block;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  height: auto;
  width: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: initial;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .slick-prev,
  .slick-next {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: #940053 dotted 2px;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  content: '';
  display: block;
  height: 40px;
  width: 40px;
}

[dir="rtl"] .slick-prev:before, [dir="rtl"]
.slick-next:before {
  content: '';
}

.slick-prev {
  left: 50px;
}

@media screen and (min-width: 1024px) and (max-width: 1229px) {
  .slick-prev {
    left: 10px;
  }
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: 50px;
}

@media screen and (min-width: 1024px) and (max-width: 1229px) {
  [dir="rtl"] .slick-prev {
    right: 10px;
  }
}

.slick-prev:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

[dir="rtl"] .slick-prev:before {
  content: '';
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.slick-next {
  right: 50px;
}

@media screen and (min-width: 1024px) and (max-width: 1229px) {
  .slick-next {
    right: 10px;
  }
}

[dir="rtl"] .slick-next {
  left: 50px;
  right: auto;
}

@media screen and (min-width: 1024px) and (max-width: 1229px) {
  [dir="rtl"] .slick-next {
    left: 10px;
  }
}

.slick-next:before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

[dir="rtl"] .slick-next:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 0 20px;
  margin: 0;
  width: 100%;
  left: 0;
}

@media screen and (min-width: 768px) {
  .slick-dots {
    padding: 0 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .slick-dots {
    top: 270px;
    bottom: auto;
    height: 45px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 14px;
  width: 14px;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li[aria-hidden="true"] {
  visibility: visible;
}

.slick-dots li:focus {
  outline: #940053 dotted 2px;
}

.slick-dots li button {
  border: 0;
  margin: 0;
  background: transparent;
  display: block;
  height: 14px;
  width: 14px;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:focus {
  outline: #940053 dotted 2px;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  text-align: center;
  opacity: 0.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

.slick-dots button {
  position: relative;
  display: inline-block;
  height: 14px;
  width: 14px;
  margin: 0 12px;
  padding: 0 0 15px 0;
  cursor: pointer;
}

.slick-dots button[aria-hidden="true"] {
  visibility: visible;
}

@media screen and (max-width: 722px) {
  .modal-header-startorder {
    height: 30px;
  }
  .modal-header .close-startorder {
    font-size: 12px;
    color: green;
    margin-right: 15px;
    opacity: 1;
    position: relative;
    bottom: 10px;
    right: 10px;
    float: right;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 0 #ffffff;
    filter: alpha(opacity=20);
  }
  #cta-startorder-image1 {
    display: none;
  }
  #cta-startorder-text1 {
    display: none;
  }
  #cta-startorder-image2 {
    display: none;
  }
  #cta-startorder-text2 {
    display: none;
  }
}

@media screen and (min-width: 723px) {
  .modal-header-startorder {
    height: 55px;
  }
  .modal-header .close-startorder {
    margin-top: -2px;
    font-size: 12px;
    color: green;
    margin-right: 15px;
    opacity: 1;
    position: relative;
    right: 10px;
  }
}

.modal-header .close-startorder {
  font-weight: 800;
  float: right;
}

.modal-content-startorder {
  background-color: #ffffff;
  border-radius: 0px;
}

.modal-dialog-startorder {
  width: 90%;
  max-width: 1117px;
  margin-left: auto;
  margin-right: auto;
}

#startOrderModal {
  height: 100%;
}

.modal-body-startorder, .modal-header-startorder, .modal-footer-startorder {
  background-color: #ffffff;
}

.modal-header-close-button {
  font-size: 20px;
  position: relative;
  top: 2px;
}

.cta-startorder {
  position: relative;
  left: 15px;
  top: 10px;
}

.cta-startorder-text {
  font-size: 28px;
  font-weight: 900;
  position: relative;
  top: 2px;
}

.cta-startorder-text1 {
  color: #008938;
}

.cta-startorder-text2 {
  color: #545454;
}

.modal-body-startorder {
  position: relative;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.pac-container {
  z-index: 1051 !important;
}

li.start-order {
  float: left;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-tabs > span:before {
  display: block;
  content: " ";
  margin-top: -117px;
  height: 117px;
  visibility: hidden;
  pointer-events: none;
}

.sw-tabs__list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20 20 20 20px;
}

@media screen and (max-width: 1023px) {
  .sw-tabs__list {
    overflow: hidden;
    overflow-x: scroll;
  }
}

.horizontalTabs .sw-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 50px;
}

@media screen and (max-width: 1023px) {
  .horizontalTabs .sw-tabs__list {
    overflow: hidden;
    overflow-x: scroll;
  }
}

.sw-tabs__title {
  width: 100%;
}

.sw-tabs__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #00572d;
  color: #00572d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 0 10px;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
  line-height: 110%;
}

@media screen and (max-width: 1023px) {
  .sw-tabs__item {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

@media screen and (min-width: 480px) {
  .sw-tabs__item {
    font-size: 25px;
  }
}

@media screen and (min-width: 768px) {
  .sw-tabs__item {
    /*width: 48%;*/
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sw-tabs__item {
    min-width: 170px;
    margin-bottom: 10px;
    min-height: 50px;
  }
}

.sw-tabs__item:hover {
  color: #8bcd32;
}

.sw-tabs__item[aria-selected="true"] {
  color: #8bcd32;
  background-color: #00572d;
}

.contrast-on .sw-tabs__item[aria-selected="true"] {
  color: #ffffff;
}

.contrast-on .sw-tabs__item {
  color: #00572d;
}

.sw-tabs__item svg {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #8bcd32;
  fill: #8bcd32;
}

@media screen and (max-width: 479px) {
  .sw-tabs__item svg {
    display: none;
  }
}

.sw-tabs__item svg + span {
  font-size: 20px;
  line-height: 25px;
}

.horizontalTabs .sw-tabs__item[aria-selected="true"] {
  color: #8bcd32;
  background-color: #00572d;
}

.horizontalTabs .sw-tabs__item[aria-selected="true"]:after {
  content: "";
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #00572d;
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
}

.contrast-on .horizontalTabs .sw-tabs__item[aria-selected="true"] {
  color: #ffffff;
}

.horizontalTabs .sw-tabs__item {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .horizontalTabs .sw-tabs__item {
    padding: 21px;
    /*width: 48%;*/
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .horizontalTabs .sw-tabs__item {
    min-width: 170px;
    margin-right: 20px;
    padding: 15px 20px;
    min-height: 110px;
  }
  .horizontalTabs .sw-tabs__item:last-of-type, .isRightToLeft .horizontalTabs .sw-tabs__item:first-of-type {
    margin-right: 0;
  }
  .isRightToLeft .horizontalTabs .sw-tabs__item:last-of-type {
    margin-right: 20px;
  }
}

.horizontalTabs .sw-tabs__item--small {
  min-width: 170px;
  margin-right: 20px;
  padding: 15px 20px;
  min-height: 110px;
}

.horizontalTabs .sw-tabs__item--small:last-of-type, .isRightToLeft .horizontalTabs .sw-tabs__item--small:first-of-type {
  margin-right: 0;
}

.isRightToLeft .horizontalTabs .sw-tabs__item--small:last-of-type {
  margin-right: 20px;
}

@media screen and (max-width: 1023px) {
  .horizontalTabs .sw-tabs__item--small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }
}

@media screen and (max-width: 767px) {
  .horizontalTabs .sw-tabs__item--small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }
}

.sw-tabs__item--small {
  min-width: 170px;
  margin-bottom: 10px;
  min-height: 50px;
}

@media screen and (max-width: 1023px) {
  .sw-tabs__item--small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }
}

@media screen and (max-width: 767px) {
  .sw-tabs__item--small {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }
}

.sw-tabs__copy {
  color: #00572d;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  text-align: left;
  width: 77%;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 1023px) {
  .sw-tabs__copy {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .sw-tabs__copy {
    width: 90%;
  }
}

.sw-tabs__section {
  margin: 0 0 50px;
}

.sw-tabs__section .sw-accordion__item:last-child {
  margin-bottom: 0;
}

.sw-tabs__section .sw-accordion__item:first-child {
  margin-top: -10px;
}

.sw-tabs__section-header {
  margin: 0 auto 20px;
  text-align: left;
}

.sw-tabs__section-title {
  color: #00572d;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 120%;
  display: inline;
}

.sw-tabs__section-title:empty {
  margin-top: -40px;
}

.sw-tabs__section-blurb {
  color: #444343;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.sw-tabs__panel--faq {
  margin-top: -20px;
}

.sw-tabs__section ul li {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0 !important;
}

.sw-tabs__section ol li {
  margin-left: 20px;
  padding-left: 0 !important;
}

.sw-tabs__section p,
.sw-tabs__section ol,
.sw-tabs__section ul {
  margin-bottom: 15px;
}

.sw-tabs__section--separator {
  border-bottom: #c6c6c6 solid 1px;
  padding-bottom: 35px;
}

.sw-tabs__goto-top {
  display: none;
  color: #00543D;
  padding: 0;
  margin-left: 10px;
}

div.sw-tabs__section ~ .sw-tabs__section .sw-tabs__goto-top {
  display: inline;
}

.sw-tabs__goto-top {
  font-size: 18px;
  font-weight: 500;
}

.sw-tabs__panel--hidden {
  display: none;
}

@media screen and (max-width: 479px) {
  .sw-tabs__panel--hidden {
    display: none;
  }
}

.is-page-editor .sw-tabs-tabaware-container {
  background-color: #c6c6c6;
  padding-top: 100px;
}

.is-page-editor .sw-tabs-tabaware-container .sw-tabs-tabaware-container__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  width: 100%;
  font-weight: 900;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  margin-bottom: 50px;
}

.is-page-editor .sw-tabs-tabaware-container .sw-tabs-tabaware-container__label div {
  background-color: #f4f5f4;
  border: #777777 solid 2px;
  max-width: 500px;
  padding: 30px;
  width: 100%;
}

.is-page-editor .sw-tabs-tabaware-container .sw-press {
  margin-top: 0;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-textblock {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-textblock.is-aligned-center .sw-textblock__content {
  text-align: center;
}

.sw-textblock.is-aligned-centerleft .sw-textblock__content {
  text-align: left;
}

.sw-textblock.is-aligned-centerright .sw-textblock__content {
  text-align: right;
}

.sw-textblock .sw-btn {
  margin-top: 12px;
}

.sw-textblock__content {
  margin: 45px 30px;
  width: 100%;
  max-width: 695px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sw-textblock__content {
    margin: 1.25em;
  }
}

.contrast-on .sw-textblock__content {
  color: #4c006a;
}

.sw-textblock__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .sw-textblock__title {
    font-size: 30px;
  }
}

.contrast-on .sw-textblock__title {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textblock__title {
  color: #ffffff;
}

.sw-textblock__excerpt {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 1024px) {
  .sw-textblock__excerpt {
    font-size: 20px;
    line-height: 28px;
  }
}

.contrast-on .sw-textblock__excerpt {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textblock__excerpt {
  color: #ffffff;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-textimgblock {
  height: 100%;
  position: relative;
  width: 100%;
}

.sw-textimgblock__media,
.sw-textimgblock__content {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.sw-textimgblock__media {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__media {
    position: absolute;
  }
}

.sw-textimgblock__media:only-child {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__media:only-child {
    position: relative;
  }
}

.sw-textimgblock__media:only-child:before {
  bottom: 0;
  content: none;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.contrast-on .sw-textimgblock__media:only-child:before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}

.has-copy .sw-textimgblock__media {
  position: absolute;
}

.sw-textimgblock__media picture {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.sw-textimgblock__media picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
}

.sw-textimgblock__content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__content:before {
    content: "";
    float: left;
    height: 0;
    padding-top: calc(255 / 1110 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__content:after {
    content: "";
    clear: both;
    display: table;
  }
}

.sw-textimgblock__content:only-child {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__content {
    position: relative;
  }
  .sw-textimgblock__content.is-aligned-topleft {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-topleft {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-textimgblock__content.is-aligned-topcenter {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-textimgblock__content.is-aligned-topright {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-topright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-textimgblock__content.is-aligned-centerleft {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-centerleft {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-textimgblock__content.is-aligned-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-textimgblock__content.is-aligned-centerright {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-centerright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sw-textimgblock__content.is-aligned-bottomleft {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-bottomleft {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sw-textimgblock__content.is-aligned-bottomcenter {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sw-textimgblock__content.is-aligned-bottomright {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  [dir="rtl"] .sw-textimgblock__content.is-aligned-bottomright {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.has-copy .sw-textimgblock__content {
  position: relative;
  z-index: 2;
}

.theme-dark .sw-textimgblock__content {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.sw-textimgblock__title {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.contrast-on .sw-textimgblock__title {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textimgblock__title {
  color: #ffffff;
}

.sw-textimgblock__title a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
}

.contrast-on .sw-textimgblock__title a {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textimgblock__title a {
  color: #ffffff;
}

.sw-textimgblock__title a:hover {
  color: #ffffff !important;
}

.contrast-on .sw-textimgblock__title a:hover {
  color: #4c006a !important;
}

.contrast-on .bg-purple .sw-textimgblock__title a:hover {
  color: #ffffff !important;
}

.sw-textimgblock__subtitle {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (min-width: 480px) {
  .sw-textimgblock__subtitle {
    font-size: 30px;
  }
}

.contrast-on .sw-textimgblock__subtitle {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textimgblock__subtitle {
  color: #ffffff;
}

.sw-textimgblock__copy {
  font-weight: 400;
  margin: 15px;
  max-width: 445px;
}

.sw-textimgblock__content:only-child .sw-textimgblock__copy {
  max-width: none;
}

.has-copy .sw-textimgblock__copy {
  margin-bottom: 45px;
  margin-top: 45px;
}

@media screen and (min-width: 480px) {
  .sw-textimgblock__copy {
    margin: 25px;
  }
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__copy {
    margin: 30px;
  }
  .sw-3up .sw-textimgblock__copy {
    margin: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-3up .sw-textimgblock__copy {
    margin: 30px;
  }
}

.has-bar .sw-textimgblock__copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #008938;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 10px 24px 10px 15px;
  text-align: left;
  width: 100%;
}

[dir="rtl"] .has-bar .sw-textimgblock__copy {
  padding-left: 24px;
  padding-right: 15px;
}

.has-bar .sw-textimgblock__copy .sw-icon,
.has-bar .sw-textimgblock__copy svg {
  height: 16px;
  width: 16px;
}

.has-bar .sw-textimgblock__copy .sw-icon {
  margin-left: 16px;
}

[dir="rtl"] .has-bar .sw-textimgblock__copy .sw-icon {
  margin-left: 0;
  margin-right: 16px;
}

.contrast-on .sw-textimgblock__copy {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textimgblock__copy {
  color: #ffffff;
}

.sw-textimgblock__excerpt {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 12px;
}

@media screen and (min-width: 1024px) {
  .sw-textimgblock__excerpt {
    font-size: 20px;
    line-height: 28px;
  }
}

.contrast-on .sw-textimgblock__excerpt {
  color: #4c006a;
}

.contrast-on .bg-purple .sw-textimgblock__excerpt {
  color: #ffffff;
}

.sw-textimgblock__excerpt br {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__excerpt br {
    display: inline;
  }
}

.has-bar .sw-textimgblock__excerpt {
  font-size: 16px;
  line-height: 1;
}

.sw-textimgblock__btn {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .sw-textimgblock__btn {
    margin-top: 30px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/* Webfont: SubwaySansCond-Black */
@font-face {
  font-family: 'SubwaySansCondBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Bold */
@font-face {
  font-family: 'SubwaySansCondBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Medium */
@font-face {
  font-family: 'SubwaySansCondMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Black */
@font-face {
  font-family: 'SubwaySansLCGBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Bold */
@font-face {
  font-family: 'SubwaySansLCGBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-BoldItalic */
@font-face {
  font-family: 'SubwaySansLCGBoldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Medium */
@font-face {
  font-family: 'SubwaySansLCGMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-MediumItalic */
@font-face {
  font-family: 'SubwaySansLCGMediumItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Regular */
@font-face {
  font-family: 'SubwaySansLCGRegular';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-RegularItalic */
@font-face {
  font-family: 'SubwaySansLCGRegularItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Semibold */
@font-face {
  font-family: 'SubwaySansLCGSemibold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-SemiboldItalic */
@font-face {
  font-family: 'SubwaySansLCGSemiboldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Super */
@font-face {
  font-family: 'SubwaySansLCGSuper';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

.sw-universal-container {
  padding: 0 15px;
  position: relative;
  margin-bottom: 60px;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .sw-universal-container {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-container {
    padding: 0px;
  }
}

.sw-universal-container--100 {
  max-width: 1280px;
}

@media screen and (min-width: 1230px) {
  .sw-universal-container--100 {
    margin-left: auto;
    margin-right: auto;
  }
}

.sw-universal-container--100 {
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 10px;
  padding-bottom: 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .sw-universal-container--100 {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-container--100 {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-top: 0px;
  }
}

.sw-universal-footerpane__bottom {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .sw-universal-footerpane__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.sw-universal-footerpane__utility-item {
  display: inline-block;
  font-size: 0;
  line-height: 1;
}

.sw-universal-footerpane__utility-link {
  color: #444343;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0 3px;
  text-decoration: none;
  text-transform: uppercase;
}

@media screen and (min-width: 480px) {
  .sw-universal-footerpane__utility-link {
    font-size: 13px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footerpane__utility-link {
    font-size: 12px;
    padding: 0 3px;
  }
}

.sw-universal-footercontainer__col {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .sw-universal-footercontainer__col {
    padding: 35px 0 42px 0;
  }
}

.sw-universal-footercontainer {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1230px) {
  .sw-universal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@supports (grid-gap: 30px) {
  @media screen and (min-width: 1230px) {
    .sw-universal-footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      grid-gap: 30px;
      -ms-grid-columns: 74% 23.25%;
          grid-template-columns: 74% 23.25%;
    }
  }
}

.sw-universal-footer__box {
  background-color: #ffffff;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .sw-universal-footer__box {
    padding: 0 30px;
  }
}

@media screen and (min-width: 1230px) {
  .sw-universal-footer__box {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 30px;
    padding: 0 15px;
    width: 74%;
  }
}

@supports (grid-gap: 30px) {
  @media screen and (min-width: 1230px) {
    .sw-universal-footer__box {
      margin-right: 0;
      width: 100%;
    }
  }
}

.sw-universal-footer__title {
  color: #00572d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contrast-on .sw-universal-footer__title {
  color: #4c006a;
}

.contrast-on .sw-universal-footer__title *:focus {
  outline: #4c006a solid 1px;
}

@media screen and (min-width: 768px) {
  .sw-universal-footer__title br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sw-universal-footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 78px;
  }
}

.sw-universal-footernav--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 480px) {
  .sw-universal-footernav--mobile {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footernav--mobile {
    display: none;
  }
}

.sw-universal-footernav--mobile .sw-universal-footernav__list {
  margin-right: 20px;
}

@media screen and (min-width: 480px) {
  .sw-universal-footernav--mobile .sw-universal-footernav__list {
    margin-right: 95px;
  }
}

.sw-universal-footernav--mobile .sw-universal-footernav__list:last-child {
  margin-right: 0;
}

.sw-universal-footernav--mobile .sw-universal-footernav__item {
  margin-bottom: 20px;
}

.sw-universal-footernav--mobile .sw-universal-footernav__link {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: SubwaySansLCGRegular;
}

.contrast-on .sw-universal-footernav--mobile .sw-universal-footernav__link {
  color: #4c006a;
}

.sw-universal-footernav--mobile .sw-universal-footernav__sublist li.sw-universal-inline {
  display: inline-block;
  margin-right: 30px;
}

.sw-universal-footernav--mobile .sw-universal-footernav__subitem {
  margin-bottom: 15px;
  padding-top: 2px;
}

.sw-universal-footernav--mobile .sw-social-topalign {
  margin-top: 20px;
}

.sw-universal-footernav--mobile .sw-universal-partner {
  display: inline-block;
  margin-left: 10px;
}

.sw-universal-footernav--mobile .sw-universal-country {
  display: inline-block;
  margin-left: 10px;
}

.sw-universal-footernav--mobile .sw-universal-columntwo {
  -webkit-columns: 2;
          columns: 2;
}

.sw-universal-footernav--mobile .sw-universal-footerpane__utility {
  font-size: 0;
  margin-bottom: 15px;
  text-align: center;
  -webkit-columns: 3;
          columns: 3;
}

.sw-universal-footernav--mobile .sw-universal-footerpane__utility-item {
  display: inline-block;
  font-size: 0;
  line-height: 1;
}

.sw-universal-footernav--mobile .sw-universal-footerpane__utility-item:after {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.sw-universal-footernav--mobile .sw-universal-footerpane__utility-item:last-child:after {
  content: none;
}

.sw-universal-footernav--mobile .sw-universal-footerpane__utility-link, .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link a {
  color: #000000;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 0 20px 18px;
  text-decoration: none;
  text-transform: capitalize;
}

.contrast-on .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link, .contrast-on .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link a {
  color: #000000;
}

@media screen and (min-width: 480px) {
  .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link, .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link a {
    font-size: 13px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link, .sw-universal-footernav--mobile .sw-universal-footerpane__utility-link a {
    font-size: 12px;
    padding: 0 3px;
  }
}

.sw-universal-footernav--desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .sw-universal-footernav--desktop {
    display: block;
    margin-bottom: 5px;
    width: 100%;
  }
}

.sw-universal-footernav--desktop .sw-universal-footernav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-universal-footernav--desktop .sw-universal-footernav__list {
    display: block;
  }
  .sw-universal-footernav--desktop .sw-universal-footernav__list .sw-universal-footernav__item {
    margin-right: 0;
  }
  .sw-universal-footernav--desktop .sw-universal-footernav__list .sw-universal-footernav__item:first-child {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 45px;
  }
  .sw-universal-footernav--desktop .sw-universal-columntwo {
    -webkit-columns: 2;
            columns: 2;
  }
  .sw-universal-footernav--desktop li.sw-universal-footernav__item:nth-child(2) {
    float: left;
    width: 50%;
    margin-right: 0;
  }
  .sw-universal-footernav--desktop li.sw-universal-footernav__item:last-child {
    float: left;
    width: 50%;
  }
  .sw-universal-footernav--desktop li.sw-universal-footernav__item:last-child .sw-social-topalign {
    position: absolute;
    bottom: 0px;
  }
}

.sw-universal-footernav--desktop .sw-universal-footernav__item {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  margin-right: 76px;
  padding-right: 0px;
}

@media screen and (min-width: 1024px) {
  .sw-universal-footernav--desktop .sw-universal-footernav__item {
    margin-right: 175px;
  }
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:nth-child(2) {
  margin-right: 116px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
  margin-top: 38px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-universal-logo__regular img {
  margin-right: 18px;
  width: 24px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-universal-country-flag {
  display: inline-block;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-eyebrow__language-selector__label {
  text-transform: capitalize;
  color: #000;
  font-family: SubwaySansLCGMedium;
  font-weight: 500;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-eyebrow__language-current {
  color: #000;
  font-family: SubwaySansLCGMedium;
  font-weight: 500;
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-eyebrow__language-dropdown {
  left: 2px;
  padding: 0 15px;
  top: calc(100% + 5px);
}

.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-eyebrow__language-dropdown .sw-eyebrow__language-option,
.sw-universal-footernav--desktop .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-desktop .sw-eyebrow__language-dropdown .sw-eyebrow__country-selector {
  color: #000;
}

.sw-universal-footernav--desktop .sw-universal-footernav__header {
  margin-bottom: 20px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__header svg,
.sw-universal-footernav--desktop .sw-universal-footernav__header img {
  display: block;
  margin-bottom: 5px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__link {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: SubwaySansLCGMedium;
  letter-spacing: normal;
  line-height: 1.29;
  text-transform: capitalize;
  font-stretch: normal;
  font-style: normal;
}

.contrast-on .sw-universal-footernav--desktop .sw-universal-footernav__link {
  color: #4c006a;
}

.sw-universal-footernav--desktop .sw-universal-footernav__sublist + .sw-footernav__header {
  margin-top: 20px;
}

.sw-universal-footernav--desktop .sw-universal-footernav__subitem {
  margin-bottom: 15px;
  padding-top: 6px;
  position: relative;
  top: -2px;
}

.sw-universal-footernav--desktop .sw-universal-partner .sw-universal-footernav__subitem {
  margin-bottom: 8px;
  padding-top: 3px;
}

.sw-universal-footernav--mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .sw-universal-footernav--mobile {
    display: none;
  }
}

.sw-universal-footernav__header {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-family: SubwaySansCondMedium;
  letter-spacing: normal;
  line-height: 1.29;
  font-stretch: normal;
  font-style: normal;
}

.sw-universalfooter-logo {
  height: 25px;
  margin: 0 auto;
  width: 125px;
}

@media screen and (min-width: 1024px) {
  .sw-universalfooter-logo {
    height: 48px;
    margin: 0px 50px 0 0;
    width: 239px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.contrast-on .sw-universalfooter-logo .sw-universalfooter-logo__regular {
  display: none;
}

.sw-universalfooter-logo .sw-universalfooter-logo__regular img {
  width: 170px;
  height: 34px;
}

.sw-universal-footerpane__bottom {
  font-size: 13px;
  font-weight: 400;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .sw-universal-footerpane__bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sw-universal-footerpane__utility {
  font-size: 0;
  margin-bottom: 12px;
  text-align: left;
}

.sw-universal-footerpane__utility-item {
  display: inline-block;
  font-size: 0;
  line-height: 1;
}

.sw-universal-footerpane__utility-item:after {
  content: "|";
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.sw-universal-footerpane__utility-item:last-child:after {
  content: none;
}

.sw-universal-footerpane__utility-link, .sw-universal-footerpane__utility-link a {
  color: #000000;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0 3px;
  text-decoration: none;
  text-transform: capitalize;
  font-family: SubwaySansLCGRegular;
}

.sw-universal-footerpane__utility-link:hover, .sw-universal-footerpane__utility-link:focus, .sw-universal-footerpane__utility-link a:hover, .sw-universal-footerpane__utility-link a:focus {
  color: #000000;
  text-decoration: underline;
}

@media screen and (min-width: 480px) {
  .sw-universal-footerpane__utility-link, .sw-universal-footerpane__utility-link a {
    font-size: 13px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footerpane__utility-link, .sw-universal-footerpane__utility-link a {
    font-size: 12px;
    padding: 0 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-universal-footerpane__utility-link, .sw-universal-footerpane__utility-link a {
    padding: 0 10px 0 11px;
  }
}

.sw-universal-footerpane__legal {
  font-size: 12px;
  font-weight: 400;
  padding-left: 3px;
  font-family: 'SubwaySansLCGRegular';
  color: #6e6e6e;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sw-universal-footerpane__legal {
    padding-left: 10px;
  }
}

.sw-universal-footerpane__legal br {
  display: none;
}

@media screen and (min-width: 480px) {
  .sw-universal-footerpane__legal br {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footerpane__legal br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sw-universal-container--100.sw-universal-container--inset {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}

@media screen and (min-width: 1230px) {
  .sw-universal-container--100, .sw-universal-container--70-30, .sw-universal-container--50-50, .sw-universal-container--30-70 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-footercontainer {
    padding: 15px 12px 0px;
    position: relative;
    top: -2px;
  }
  .sw-universal-footercontainer .sw-universal-footerpane__bottom {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .sw-universal-footercontainer .sw-universal-footerpane__bottom li.sw-universal-footerpane__utility-item:first-child .sw-universal-footerpane__utility-link {
    padding-left: 3px;
  }
  .sw-universal-footercontainer .sw-universal-footerpane__bottom .sw-universal-footerpane__utility-link {
    text-transform: none;
  }
}

@media screen and (min-width: 767px) {
  .sw-universal-footernav__sublist li.sw-universal-inline {
    display: inline-block;
    margin-right: 30px;
  }
  .sw-social-topalign {
    margin-top: 175px;
  }
  .sw-universal-partner {
    display: block;
    margin-left: 0px;
  }
  .sw-universal-partner .sw-universal-logo__regular img {
    margin-right: 17px;
    width: 24px;
    position: relative;
    top: -1px;
  }
  .sw-universal-country {
    display: inline-block;
    margin-left: 0px;
  }
  .sw-universal-country .sw-universal-logo__regular img {
    margin-right: 7px;
    width: 20px;
  }
  .sw-universal-columntwo {
    -moz-column-count: 2;
    -moz-column-gap: 176px;
    -webkit-column-count: 2;
    -webkit-column-gap: 176px;
    -webkit-columns: 2;
            columns: 2;
    column-gap: 176px;
  }
}

.sw-social-topalign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.sw-social-topalign .sw-universal-footernav__subitem {
  margin-right: 32px;
}

@media screen and (max-width: 767px) {
  .sw-social-topalign .sw-universal-footernav__subitem {
    margin-right: 0px;
  }
}

.sw-social-topalign .sw-universal-footernav__subitem img {
  width: 18px;
}

@media screen and (max-width: 767px) {
  .sw-universal-footer__box {
    padding: 15px 0;
  }
  .sw-universal-footer__actions {
    margin-top: 35px;
  }
  .sw-universal-footerpane__utility {
    text-align: left;
  }
  .sw-universal-footerpane__utility li {
    margin-bottom: 20px;
    display: inline-block;
  }
  .sw-universal-footerpane__utility li a {
    text-transform: none;
    padding: 0 3px;
  }
  .sw-universal-footerpane__utility li a:after {
    content: "|";
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    margin-right: 10px;
    margin-left: 10px;
    color: #000;
  }
  .sw-universal-footerpane__utility li:after {
    content: none;
  }
  .sw-universal-footerpane__utility li:last-child a:after {
    content: " ";
  }
  .sw-universal-footerpane__bottom {
    text-align: left;
  }
  .sw-universal-footernav--mobile {
    display: block;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    width: 100%;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child {
    margin-top: 40px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-universal-logo__regular img {
    margin-right: 13px;
    width: 18px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-universal-country-flag {
    display: inline-block;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language.is-open {
    margin-bottom: 150px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language-selector__label {
    text-transform: capitalize;
    color: #000;
    font-family: SubwaySansLCGRegular;
    font-weight: 700;
    font-size: 14px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language-current {
    color: #000;
    display: inline-block;
    font-family: SubwaySansLCGRegular;
    font-weight: 700;
    font-size: 14px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language-dropdown {
    left: 0px;
    padding: 0 15px;
    top: calc(100% + 5px);
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language-dropdown .sw-eyebrow__language-option,
  .sw-universal-footernav--mobile .sw-universal-footernav__item:last-child .sw-universal-country-dropdown-mobile .sw-eyebrow__language-dropdown .sw-eyebrow__country-selector {
    color: #000;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__sublist {
    -webkit-columns: 2;
            columns: 2;
    -webkit-column-gap: 15px;
            column-gap: 15px;
    margin-top: 15px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__sublist.sw-universal-partner {
    -webkit-columns: 1;
            columns: 1;
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__sublist.sw-universal-partner img {
    margin-right: 14px;
    width: 18px;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__sublist.sw-universal-country {
    -webkit-columns: 1;
            columns: 1;
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .sw-universal-footernav--mobile .sw-universal-footernav__sublist.sw-universal-country img {
    margin-right: 7px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/* Webfont: SubwaySansCond-Black */
@font-face {
  font-family: 'SubwaySansCondBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Bold */
@font-face {
  font-family: 'SubwaySansCondBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansCond-Medium */
@font-face {
  font-family: 'SubwaySansCondMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansCond-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Black */
@font-face {
  font-family: 'SubwaySansLCGBlack';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Black.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Bold */
@font-face {
  font-family: 'SubwaySansLCGBold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-BoldItalic */
@font-face {
  font-family: 'SubwaySansLCGBoldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-BoldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Medium */
@font-face {
  font-family: 'SubwaySansLCGMedium';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Medium.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-MediumItalic */
@font-face {
  font-family: 'SubwaySansLCGMediumItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-MediumItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Regular */
@font-face {
  font-family: 'SubwaySansLCGRegular';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-RegularItalic */
@font-face {
  font-family: 'SubwaySansLCGRegularItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-RegularItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Semibold */
@font-face {
  font-family: 'SubwaySansLCGSemibold';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Semibold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-SemiboldItalic */
@font-face {
  font-family: 'SubwaySansLCGSemiboldItalic';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-SemiboldItalic.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

/* Webfont: SubwaySansLCG-Super */
@font-face {
  font-family: 'SubwaySansLCGSuper';
  src: url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.woff") format("woff"), url("/Styles/Fonts/SubwaySans/SubwaySansLCG-Super.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: normal;
  /*text-rendering: optimizeLegibility;*/
}

.sw-container--bleed > .sw-universal-container__col {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.sw-container.sw-container--header {
  border-bottom: 1px solid #ddd;
}

.sw-universal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 0;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .sw-universal-header .for-mobile {
    display: none;
  }
}

.sw-universal-header .hide-on-mobile {
  display: block;
}

.sw-universal-header .logged_in_user {
  display: none;
}

.sw-universal-header .sw-universal-logo-container {
  float: left;
}

.sw-universal-header .sw-universal-login img {
  width: 24px;
  height: 24px;
}

.sw-universal-header .sw-universal-add-to-cart .sw-universal-logo__regular img.loaded {
  width: 20px;
  height: 24px;
}

.sw-universal-header .sw-universal-loggedinlogo__regular img.loaded {
  width: 24px;
  height: 24px;
}

.sw-universal-header .sw-universal-mainnav__list.sw-universal-left .sw-universal-add-to-cart img {
  width: 24px;
  height: 24px;
}

.sw-universal-header .sw-universal-mainnav__list.sw-universal-left .sw-universal-add-to-cart-full img {
  width: 20px;
  height: 24px;
}

.sw-universal-header .sw-universal-full-cart-value {
  color: #fff;
  position: relative;
  font-size: 12px;
  left: 2px;
  top: -17px;
  font-weight: bold;
  display: inline-block;
  width: 15px;
  height: 16px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .sw-universal-header .sw-universal-full-cart-value {
    left: -17px;
    top: 7px;
  }
}

.sw-universal-startorder-footer {
  float: left;
  height: 104px;
  position: absolute;
  bottom: 0px;
  width: calc(100% - 2px);
  left: 0;
}

.sw-universal-startorder-footer li.sw-mainnav__item.sw-mainnav__item--order {
  display: block !important;
  border-bottom: none;
  border-top: 1px solid #dedede;
}

.sw-universal-startorder-footer li.sw-mainnav__item.sw-mainnav__item--order a.sw-mainnav__link {
  font-family: "SubwaySansCondMedium";
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  font-size: 18px;
  display: block;
  background-color: #008938;
  margin: 20px 19.5px 34px !important;
  width: calc(100% - 40px) !important;
  height: 48px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 0;
  letter-spacing: 0.7px;
}

.sw-universal-logo {
  height: 25px;
  margin: 0 10px;
  width: 125px;
}

@media screen and (max-width: 767px) {
  .sw-universal-logo {
    margin: 0 15px;
  }
}

@media screen and (min-width: 1080px) {
  .sw-universal-logo {
    height: 48px;
    margin: 0px;
    width: 176px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 9px;
    padding-top: 7px;
    float: left;
  }
}

.contrast-on .sw-universal-logo .sw-universal-logo__regular {
  display: none;
}

.sw-universal-logo img {
  height: 24px;
  width: 120px;
}

@media screen and (min-width: 1080px) {
  .sw-universal-logo img {
    /*height: 48px;
            width: 239px;*/
    width: 169px;
    height: 34px;
  }
}

.sw-universal-mainnav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sw-universal-mainnav .sw-universal-startorder-footer {
    display: none;
  }
}

.mobile-nav-open .sw-universal-mainnav {
  background-color: #ffffff;
  bottom: -1px;
  display: block;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0px 20px 20px;
  position: fixed;
  right: 0;
  top: 59px;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1080px) {
  .mobile-nav-open .sw-universal-mainnav {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: inherit;
    padding: 0;
    position: static;
  }
}

@media screen and (min-width: 1080px) {
  .sw-container.sw-container--header.sw-universal-container-v2 {
    padding: 0 15px;
    height: auto;
  }
  .sw-universal-left {
    margin-left: auto !important;
  }
  .sw-universal-left .sw-universal-mainnav__list.sw-universal-left {
    position: absolute;
    right: 11px;
    top: 16px;
  }
  .sw-universal-left .sw-universal-mainnav__list.sw-universal-left .sw-universal-loggedin {
    position: relative;
    top: 1px;
    margin-right: 15px;
  }
  .sw-universal-left .sw-universal-mainnav__list.sw-universal-left .sw-universal-login {
    position: relative;
    top: 1px;
    margin-right: 26px;
  }
  .sw-universal-left .sw-universal-mainnav__list.sw-universal-left .sw-universal-add-to-cart-full {
    position: relative;
    left: 12px;
  }
  .sw-universal-mainnav__list.sw-universal-left li:first-child {
    margin-right: 20px !important;
  }
  .sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order {
    margin-right: 36px !important;
    margin-left: 0px;
  }
  .sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order .sw-mainnav__link {
    background-color: #008938;
    width: 220px;
    height: 50px;
    border-radius: 5px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    font-size: 18px;
    font-family: SubwaySansCondMedium;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 0 !important;
    letter-spacing: 1px;
    line-height: 1.1;
    position: relative;
    right: 0px;
    top: 0px;
  }
  .sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order .sw-mainnav__link:hover,
  .sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order .sw-mainnav__link:focus-visible {
    background-color: #00491e;
    color: #fff;
  }
  .sw-universal-mainnav__list .sw-userpane-mobile .sw-eyebrow__navitem--authentication .sw-eyebrow__navlink.show-on-mobile {
    display: block !important;
    margin-right: 1px;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child {
    display: block !important;
    padding-top: 13px;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child .is-hidden a.logged_in_user {
    display: none;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child a.logged_in_user {
    margin-top: 17px;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child a.logged_in_user img {
    width: 24px;
    height: 24px;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child a.hide-on-mobile {
    display: inline-block;
    position: relative;
    left: -7px;
    margin-left: 3px;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child .js-sw-eyebrow__navlink--userlogin {
    display: inline-block;
  }
  .sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child a.sw-universal-add-to-cart {
    display: inline-block;
    position: relative;
    left: 20px;
    top: -2px;
  }
  .sw-universal-header .sw-universal-separator {
    width: 1px;
    height: 40px;
    border-left: 1px solid #eaeaea;
    margin-top: 6px;
    margin-left: 23px;
    margin-right: 15px;
    float: left;
  }
}

@media screen and (max-width: 480px) {
  #mobile-universal-margin > .sw-eyebrow__navitem {
    margin: 0;
  }
}

.sw-universal-mainnav__list {
  margin: 0px auto;
  position: relative;
}

@media screen and (min-width: 480px) {
  .sw-universal-mainnav__list {
    width: auto;
  }
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    margin-right: 0px;
    position: static;
    width: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (min-width: 1024px) {
  .sw-universal-mainnav__list .sw-universal-left {
    margin-right: 19px;
  }
  .sw-universal-mainnav__list .sw-universal-left .sw-universal-loggedin {
    margin-top: 17px;
    margin-right: 26px;
    margin-left: 23px;
  }
  .sw-universal-mainnav__list .sw-universal-left .sw-universal-login {
    margin-top: 17px;
    margin-right: 26px;
    margin-left: 23px;
  }
  .sw-universal-mainnav__list .sw-universal-left .sw-universal-add-to-cart {
    margin-top: 15px;
    width: 20px;
  }
  .sw-universal-mainnav__list .sw-universal-left .sw-universal-add-to-cart-full {
    margin-top: 15px;
    width: 20px;
    position: relative;
    left: 1px;
  }
}

.sw-universal-mainnav__item {
  border-bottom: 1px solid #006230;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__item {
    border: none;
    font-size: 14px;
    font-weight: 700;
  }
}

.sw-universal-mainnav__item.sw-mainnav__item--order {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sw-universal-mainnav__item.sw-mainnav__item--order {
    display: inherit;
    margin-left: 15px;
    margin-right: 30px !important;
  }
}

.sw-universal-mainnav__link {
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  display: block;
  font-family: SubwaySansCondMedium;
  letter-spacing: 0.5px;
  font-weight: 500;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.sw-universal-mainnav__link:focus {
  outline: none;
  color: #000000;
  text-decoration: underline;
}

.sw-universal-mainnav__link:hover {
  outline: none;
  color: #000000;
  text-decoration: none;
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__link {
    /*font-weight: inherit;*/
    padding: 10px 15px 8px;
    position: static;
    text-align: inherit;
    text-transform: uppercase;
    width: auto;
  }
}

.sw-universal-mainnav__link:after {
  border-bottom: 2px solid #006230;
  border-left: 2px solid #006230;
  content: "";
  display: block;
  height: 17px;
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
      -ms-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
  width: 17px;
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__link:after {
    border: none;
    border-bottom: 1px solid #006230;
    content: "";
    display: block;
    height: auto;
    margin: 2px 0 0;
    position: static;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: auto;
  }
}

.sw-universal-mainnav__list > .sw-eyebrow__navitem:last-child .lnkLogin.sw-eyebrow__navlink {
  display: none;
}

@media screen and (max-width: 480px) {
  .sw-universal-header {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 1079px) {
  .sw-container.sw-universal-container-v2 {
    height: 63px;
  }
  .sw-universal-header {
    padding: 5px 20px;
    height: 62px;
  }
  .sw-universal-header .sw-hamburger {
    padding: 0;
    margin: 0px 10px;
    z-index: 101;
  }
  .sw-universal-header .sw-hamburger span {
    background-color: #aaa !important;
    height: 2px;
    width: 28px;
  }
  #mobile-universal-margin {
    height: 46px;
  }
  #mobile-universal-margin > .sw-eyebrow__navitem {
    position: relative;
    top: -5px;
    left: -24px;
  }
  #mobile-universal-margin > .sw-eyebrow__navitem .js-sw-eyebrow__navlink--userlogin {
    display: inline-block !important;
  }
  #mobile-universal-margin > .sw-eyebrow__navitem .sw-universal-add-to-cart {
    position: relative;
    top: -26px;
    left: 26px;
    display: block;
  }
  #mobile-universal-margin > .sw-eyebrow__navitem .lnkLogin.hide-on-mobile {
    position: relative;
    left: -10px;
  }
  #mobile-universal-margin > .sw-eyebrow__navitem .is-hidden .lnkLogin.hide-on-mobile {
    position: relative;
    left: -2px;
    top: 18px;
    margin-left: -8px;
  }
}

@media screen and (max-width: 1080px) {
  /* .sw-container.sw-container--header {
        height: 78px;
    }*/
  /*.sw-universal-header {
        padding: 8px 20px;

        .sw-hamburger {
            padding: 0;
            margin: 0px 10px;
            z-index: 101;

            span {
                background-color: #aaa !important;
                height: 2px;
                width: 28px;
            }
        }
    }*/
  /* .sw-universal-mainnav__list.sw-universal-left {
        position: absolute;
        right: 11px;
        top: 16px;*/
  /*.sw-universal-loggedin {
            position: relative;
            top: 1px;
            margin-right: 15px;
        }

        .sw-universal-login {
            position: relative;
            top: 1px;
            margin-right: 26px;
        }*/
  .sw-universal-add-to-cart-full {
    position: relative;
    left: 12px;
  }
}

#mobile-universal-margin {
  height: 46px;
}

#mobile-universal-margin > .sw-eyebrow__navitem {
  position: relative;
  top: -5px;
  left: -24px;
}

#mobile-universal-margin > .sw-eyebrow__navitem .js-sw-eyebrow__navlink--userlogin {
  display: inline-block !important;
}

#mobile-universal-margin > .sw-eyebrow__navitem .sw-universal-add-to-cart {
  position: relative;
  top: -26px;
  left: 26px;
  display: block;
}

#mobile-universal-margin > .sw-eyebrow__navitem .lnkLogin.hide-on-mobile {
  position: relative;
  left: -10px;
}

#mobile-universal-margin > .sw-eyebrow__navitem .is-hidden .lnkLogin.hide-on-mobile {
  position: relative;
  left: -2px;
  top: 18px;
  margin-left: -8px;
}

@media screen and (max-width: 767px) {
  .sw-universal-header {
    padding: 8px 0px;
  }
  .sw-universal-header .sw-hamburger {
    margin: 0px 15px;
  }
  .sw-universal-mainnav__list.sw-universal-left {
    position: absolute;
    right: 15px;
    top: 16px;
  }
}

.alert-container-header {
  margin-top: 60px;
}

@media screen and (width: 1024px) {
  .alert-container-header {
    margin-top: 79px;
  }
}

@media screen and (min-width: 1024px) {
  .alert-container-header {
    margin-top: 79px;
  }
}

/*.sw-universal-left {
    .sw-universal-login {
        @media screen and (width: 1023px) {
            position: relative;
            top: 1px;
            margin-right: 26px;
        }
    }
}*/
@media screen and (max-width: 1080px) {
  .sw-universal-mainnav__list.sw-universal-left {
    position: absolute;
    right: 11px;
    top: 16px;
  }
  .sw-universal-mainnav__list.sw-universal-left .sw-universal-loggedin, .sw-universal-mainnav__list.sw-universal-left .sw-universal-login {
    position: relative;
    top: 2px;
    margin-right: 15px;
  }
  .sw-universal-mainnav__list.sw-universal-left .sw-universal-add-to-cart, .sw-universal-mainnav__list.sw-universal-left .sw-universal-add-to-cart-full {
    position: relative;
    top: 2px;
  }
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__list.sw-universal-left {
    position: absolute;
    right: 11px;
    top: 16px;
  }
  .sw-universal-login, .sw-universal-loggedin {
    position: relative;
    top: 12px;
    margin-right: 26px;
  }
}

@media screen and (min-width: 1080px) {
  .sw-universal-add-to-cart, .sw-universal-add-to-cart-full {
    top: 11px;
    position: relative;
  }
}

.sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order {
  display: none;
}

@media screen and (min-width: 1080px) {
  .sw-universal-mainnav__list .sw-mainnav__item.sw-mainnav__item--order {
    display: inherit;
    margin-left: 15px;
  }
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
.sw-up__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  margin-top: 15px;
  position: relative;
}

@media screen and (min-width: 480px) {
  .sw-up__col {
    margin-top: 0;
  }
}

.sw-up__col.sw-up__col--icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerleft {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerleft .sw-up__copy {
  text-align: left;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerleft .sw-imgblock__mainlink {
  margin-left: 42px;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerright {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerright .sw-up__copy {
  text-align: right;
}

.sw-up__col.sw-up__col--icon.is-aligned-centerright .sw-imgblock__mainlink {
  margin-right: 42px;
}

.sw-up__col > a {
  text-decoration: none;
}

.sw-up__col.bg-blue {
  background-color: #00a7e9;
}

.sw-up__col.bg-orange {
  background-color: #ff8200;
}

.sw-up__col.bg-green {
  background-color: #8bcd32;
}

.sw-up__col.bg-yellow {
  background-color: #f2b700;
}

.sw-up__col.bg-purple {
  background-color: #4c006a;
}

.sw-up__col.bg-gray {
  background-color: #f4f5f4;
}

.sw-up__col.bg-black {
  background-color: #000000;
}

.sw-up__col.bg-black .sw-up__copy,
.sw-up__col.bg-black .sw-up__heading,
.sw-up__col.bg-black .sw-up__subheading, .sw-up__col.bg-blue .sw-up__copy,
.sw-up__col.bg-blue .sw-up__heading,
.sw-up__col.bg-blue .sw-up__subheading, .sw-up__col.bg-orange .sw-up__copy,
.sw-up__col.bg-orange .sw-up__heading,
.sw-up__col.bg-orange .sw-up__subheading, .sw-up__col.bg-green .sw-up__copy,
.sw-up__col.bg-green .sw-up__heading,
.sw-up__col.bg-green .sw-up__subheading, .sw-up__col.bg-yellow .sw-up__copy,
.sw-up__col.bg-yellow .sw-up__heading,
.sw-up__col.bg-yellow .sw-up__subheading, .sw-up__col.bg-purple .sw-up__copy,
.sw-up__col.bg-purple .sw-up__heading,
.sw-up__col.bg-purple .sw-up__subheading, .sw-up__col.bg-gray .sw-up__copy,
.sw-up__col.bg-gray .sw-up__heading,
.sw-up__col.bg-gray .sw-up__subheading {
  color: #ffffff;
}

.contrast-on .sw-up__col.bg-black .sw-up__copy, .contrast-on
.sw-up__col.bg-black .sw-up__heading, .contrast-on
.sw-up__col.bg-black .sw-up__subheading, .contrast-on .sw-up__col.bg-blue .sw-up__copy, .contrast-on
.sw-up__col.bg-blue .sw-up__heading, .contrast-on
.sw-up__col.bg-blue .sw-up__subheading, .contrast-on .sw-up__col.bg-orange .sw-up__copy, .contrast-on
.sw-up__col.bg-orange .sw-up__heading, .contrast-on
.sw-up__col.bg-orange .sw-up__subheading, .contrast-on .sw-up__col.bg-green .sw-up__copy, .contrast-on
.sw-up__col.bg-green .sw-up__heading, .contrast-on
.sw-up__col.bg-green .sw-up__subheading, .contrast-on .sw-up__col.bg-yellow .sw-up__copy, .contrast-on
.sw-up__col.bg-yellow .sw-up__heading, .contrast-on
.sw-up__col.bg-yellow .sw-up__subheading, .contrast-on .sw-up__col.bg-purple .sw-up__copy, .contrast-on
.sw-up__col.bg-purple .sw-up__heading, .contrast-on
.sw-up__col.bg-purple .sw-up__subheading, .contrast-on .sw-up__col.bg-gray .sw-up__copy, .contrast-on
.sw-up__col.bg-gray .sw-up__heading, .contrast-on
.sw-up__col.bg-gray .sw-up__subheading {
  color: #4c006a;
}

.sw-up__col.has-link {
  cursor: pointer;
}

.sw-2up__col.sw-up__col--50 {
  margin-top: 0;
  margin-right: 20px;
}

.sw-2up__col.sw-up__col--50:last-of-type {
  margin-right: 0;
}

.sw-2up__col.sw-up__col--50 .sw-textblock__content {
  width: 100%;
  margin: 0 auto;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .sw-2up__col.sw-up__col--50 .sw-textblock__content {
    width: 70%;
  }
}

.sw-2up__col.sw-up__col--50 .sw-textblock__content .sw-imgblock__mainlink .sw-up.btn {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .hide-on-mobile + .sw-2up__col.sw-up__col--50 {
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .sw-2up__col.sw-up__col--50 {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}

.sw-up__transparent {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 120px;
}

.sw-up__transparent svg,
.sw-up__transparent .sw-imgblock__media {
  height: auto;
  width: auto;
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  top: auto;
}

.sw-up__transparent svg picture,
.sw-up__transparent svg img,
.sw-up__transparent .sw-imgblock__media picture,
.sw-up__transparent .sw-imgblock__media img {
  margin: 0 auto;
  max-width: 150px !important;
  height: auto;
  width: auto;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  right: auto !important;
  top: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: auto !important;
}

.sw-up__transparent svg picture,
.sw-up__transparent .sw-imgblock__media picture {
  max-height: 150px;
}

.sw-up__transparent svg picture img,
.sw-up__transparent .sw-imgblock__media picture img {
  -o-object-fit: contain;
     object-fit: contain;
}

.sw-up__transparent svg {
  height: 100%;
  max-height: 55px;
  width: 100%;
}

.sw-up__copy {
  font-size: 20px;
  padding: 0 42px;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .sw-up__copy {
    font-size: 20px;
    line-height: 28px;
  }
}

.sw-up__copy .sw-up__heading,
.sw-up__copy .sw-up__subheading {
  text-align: inherit;
  font-size: 24px;
  color: #006230;
  line-height: 28px;
  font-weight: 900;
}

@media screen and (min-width: 1024px) {
  .sw-up__copy .sw-up__heading,
  .sw-up__copy .sw-up__subheading {
    font-size: 30px;
    line-height: 34px;
  }
}

.sw-up__copy .sw-up__heading a,
.sw-up__copy .sw-up__subheading a {
  text-decoration: none;
  color: #008938;
}

@media screen and (max-width: 479px) {
  .sw-up__copy {
    padding: 0 20px;
  }
}

.sw-up__copy .sw-up__subheading {
  font-weight: 400;
}

.sw-up__copy.sw-up__copy--inherit {
  text-align: inherit;
}

.sw-up__copy.sw-up__copy--no-padding {
  padding: 0;
}

.sw-up__copy .sw-up__paragraph {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.sw-up__copy .sw-up__paragraph a {
  text-decoration: underline;
  color: inherit;
}

.sw-up__btn {
  margin-top: 8px;
}

.sw-up__img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
  min-height: 200px;
}

.sw-up__img img {
  width: 100%;
  height: auto;
}

.sw-up__img--auto {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-height: 120px;
  width: auto;
}

.sw-up__img--auto .sw-imgblock__media {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}

.sw-up__img--auto .sw-imgblock__media img {
  left: auto !important;
  top: auto !important;
  width: auto !important;
  height: auto !important;
  margin-top: auto !important;
  margin-left: auto !important;
  position: relative !important;
  min-height: auto !important;
}

.sw-up__copy + .sw-up__copy {
  margin-top: 40px;
}

.sw-imgblock__links,
.sw-up__links {
  margin-left: 0;
  margin-bottom: 15px;
}

.sw-imgblock__links li,
.sw-up__links li {
  list-style-type: none;
  display: block;
  text-align: center;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .sw-imgblock__links li,
  .sw-up__links li {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .sw-imgblock__links li:last-of-type,
  .sw-up__links li:last-of-type {
    margin-bottom: 0;
  }
}

.sw-imgblock__links a,
.sw-up__links a {
  color: inherit;
  text-decoration: underline;
}

.contrast-on [class*="bg-"]:not([class*="bg-purple"]) .sw-imgblock__links a, .contrast-on [class*="bg-"]:not([class*="bg-purple"])
.sw-up__links a {
  color: #4c006a;
}

.sw-imgblock__links {
  font-size: 16px;
  margin-top: 15px;
}

.sw-imgblock__links a {
  color: #ffffff;
}

.contrast-on [class*="bg-"]:not([class*="bg-purple"]) .sw-imgblock__links a {
  color: #4c006a;
}

/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
/*
    CSS multilines ellipsis mixin
    Usage: @include excerpt($font-size: 1.3rem, $line-height: 1.3, $lines-to-show: 3, $excerpt-bg: #fff);
*/
/*
Background:
Array index defines the z-index
Left to Right from 1 through Array length.

Usage: 
slector { z-index: index($list, $element) };

Example:
.forms { z-index: index($elements, forms); }

or with mixin defined in _mixins.scss 

.forms { @include z-index($elements, forms); }

Note:
mixin version will print warning for invalid values in CLI
*/
/**
- Color schema is defined based on 0-255 code
- Towards 0 implies darker colors
- Towards 255 implies lighter colors
- Whatever base color is chosen should have color code around 125
  so that greater than 125 is lighter shade
  and smaller than 125 is darker shade
- The interval between colors can be anything. Make sure to choose wisely to accomodate as much colors
  Ex: here we are using interval of 10, mostly.
**/
/* Shades of Blue */
/* Shades of Grey */
/* Shades of Green */
/*Shades of Yellow */
/* Purple */
/* Orange */
/* Red */
/* Obvious ones */
.sw-video__controls {
  max-width: 1230px;
  margin-top: 40px;
  margin-left: auto;
  position: relative;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .sw-video__controls {
    padding-right: 60px;
  }
}

.sw-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.is-page-editor .sw-video {
  min-height: 450px;
}

.sw-video .sw-video__photo img {
  width: 100%;
}

.sw-video:not(.sw-video--modal):not(.sw-video--inline):not(.sw-video--bg) img {
  position: relative !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .sw-video__controls {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .sw-video__controls {
    padding-right: 15px;
  }
}

.sw-video__controls .sw-video__btn {
  border: 0;
  background-color: #008938;
  color: #ffffff;
  height: 30px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-video__controls .sw-video__btn .sw-video__play {
  display: none;
}

.sw-video__controls .sw-video__btn .sw-video__pause {
  display: block;
}

.sw-video__controls .sw-video__silent-caption {
  color: #ffffff;
  background-color: #000000;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
  margin-left: 20px;
}

.sw-video__slide {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.sw-video__overlay {
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .sw-video:not(.sw-video--bg) .sw-video__overlay {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.sw-hero__slide--dark .sw-video__overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.sw-video__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .sw-video:not(.sw-video--secondary) .sw-video__content .sw-container__centered {
    background-color: #8bcd32;
    display: block;
    height: 100%;
    position: relative;
    text-align: center !important;
  }
}

@media screen and (min-width: 768px) {
  .sw-video__content {
    min-height: 520px;
  }
}

@media screen and (min-width: 1024px) {
  .sw-video__content {
    min-height: 650px;
  }
}

.sw-video__content.is-aligned-center .sw-container__centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
}

.sw-video__content.is-aligned-centerleft .sw-container__centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}

.sw-video__content.is-aligned-centerleft .sw-container__centered .sw-video__copy {
  margin-left: 0;
}

.sw-video__content.is-aligned-centerright .sw-container__centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.sw-video__content.is-aligned-centerright .sw-container__centered .sw-video__copy {
  margin-right: 0;
}

.sw-video__content.is-aligned-topleft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-video__content.is-aligned-topleft .sw-container__centered {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}

.sw-video__content.is-aligned-topleft .sw-container__centered .sw-video__copy {
  margin-left: 0;
}

.sw-video__content.is-aligned-topcenter {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-video__content.is-aligned-topcenter .sw-container__centered {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-video__content.is-aligned-topright {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-video__content.is-aligned-topright .sw-container__centered {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.sw-video__content.is-aligned-topright .sw-container__centered .sw-video__copy {
  margin-right: 0;
}

.sw-video__content.is-aligned-bottomleft {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-video__content.is-aligned-bottomleft .sw-container__centered {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-video__content.is-aligned-bottomleft .sw-container__centered .sw-video__copy {
  margin-left: 0;
}

.sw-video__content.is-aligned-bottomcenter {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-video__content.is-aligned-bottomcenter .sw-container__centered {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-video__content.is-aligned-bottomright {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-video__content.is-aligned-bottomright .sw-container__centered {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-video__content.is-aligned-bottomright .sw-video__copy {
  margin-right: 0;
}

.sw-video__content .sw-video__meta {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: none;
}

.sw-video__content .sw-video__copy {
  font-weight: 400;
  margin: 30px auto;
  max-width: 584px;
  text-align: inherit;
}

@media screen and (min-width: 768px) {
  .sw-video__content .sw-video__copy {
    margin: 60px auto;
  }
}

.sw-video__content .sw-video__copy .sw-video__title {
  color: #ffffff;
  font-size: 50px;
  font-weight: 900;
  line-height: 58px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .sw-video__content .sw-video__copy .sw-video__title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media screen and (max-width: 479px) {
  .sw-video__content .sw-video__copy .sw-video__title {
    font-size: 50px;
    line-height: 48px;
    margin-bottom: 15px;
  }
}

.has-darkcolor .sw-video__content .sw-video__copy .sw-video__title {
  color: #09602b;
}

.sw-video__content .sw-video__copy .sw-video__text {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}

@media screen and (min-width: 1024px) {
  .sw-video__content .sw-video__copy .sw-video__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.has-darkcolor .sw-video__content .sw-video__copy .sw-video__text {
  color: #09602b;
}

.sw-video__content .sw-video__copy .sw-video__subtitle {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 15px;
}

.has-darkcolor .sw-video__content .sw-video__copy .sw-video__subtitle {
  color: #09602b;
}

.sw-video__content .sw-video__copy .sw-video__subtitle + .sw-video__text {
  margin-top: 25px;
}

@media screen and (max-width: 479px) {
  .sw-video__content .sw-video__copy .sw-video__subtitle + .sw-video__text {
    margin-top: 0;
  }
}

.sw-video__play {
  display: none;
}

.is-aligned-center .sw-video__play .sw-video__play__button,
.is-aligned-topcenter .sw-video__play .sw-video__play__button,
.is-aligned-bottomcenter .sw-video__play .sw-video__play__button {
  margin: 0 auto;
}

.is-aligned-centerright .sw-video__play .sw-video__play__button,
.is-aligned-topright .sw-video__play .sw-video__play__button,
.is-aligned-bottomright .sw-video__play .sw-video__play__button {
  margin-right: 0;
  float: right;
}

.sw-video--inline .sw-video__close-bar {
  width: 100%;
  height: 30px;
  background-color: #fff;
}

.sw-video--inline .sw-video__play {
  height: 88px;
  display: block;
}

.sw-video--inline .sw-video__play .sw-video__play__button {
  display: block;
  height: 100%;
  width: auto;
  max-width: 136px;
  max-height: 88px;
  padding: 0;
}

.sw-video--inline .sw-video__play .sw-video__play__button svg {
  height: 100%;
  width: auto;
}

.sw-video--inline .sw-video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.sw-video--inline .sw-video__player iframe {
  height: 100%;
  width: 100%;
}

.sw-video--modal .sw-video__player iframe {
  max-width: 100%;
}

.sw-video--inline .sw-video__photo,
.sw-video--modal .sw-video__photo {
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.sw-video--inline .sw-video__photo img,
.sw-video--modal .sw-video__photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .sw-video--inline .sw-video__photo img,
  .sw-video--modal .sw-video__photo img {
    min-height: 600px;
  }
}

@media screen and (min-width: 768px) {
  .sw-video--inline .sw-video__overlay,
  .sw-video--modal .sw-video__overlay {
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
  }
}

.sw-video--inline.sw-video.sw-video--secondary .sw-video__overlay,
.sw-video--modal.sw-video.sw-video--secondary .sw-video__overlay {
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

@media all and (-ms-high-contrast: none) {
  .sw-video--inline .sw-video__photo,
  .sw-video--inline .sw-video__photo picture,
  .sw-video--modal .sw-video__photo,
  .sw-video--modal .sw-video__photo picture {
    min-height: 650px;
  }
}

.sw-video--bg {
  overflow: hidden;
}

.sw-video--bg .sw-video__photo {
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .sw-video--bg .sw-video__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
  }
}

.sw-video--bg .sw-video__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.sw-video--bg .sw-video__player {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.sw-video--bg .sw-video__player video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .sw-video--bg .sw-video__player video {
    display: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .sw-video--bg .sw-video__player {
    display: block;
  }
}

.sw-video--bg .sw-video__overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.sw-video--bg .sw-video__content {
  min-height: auto;
  height: auto;
}

.contrast-on .sw-video__overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=index-generated.css.map */
