@charset "UTF-8";
body {
  font-family: "Lato", sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #222;
  background-color: #f1f1f4;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #06c;
}
a:hover {
  color: #06c;
}
a img {
  border: none;
}

img {
  max-width: 100%;
}
img[data-src] {
  opacity: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: solid #cccccc;
  border-width: 1px 0 0;
  clear: both;
  margin: 24px 0 24px;
  height: 0;
}

blockquote {
  margin: 24px 0;
  padding: 6px 24px;
  border-left: 4px solid #004387;
  color: #798794;
  font-size: 12px;
}
blockquote cite:before {
  content: "— ";
}
blockquote cite a,
blockquote cite a:visited {
  color: #798794;
}
blockquote cite a:hover,
blockquote cite a:visited:hover {
  text-decoration: underline;
}

.button, button {
  border-radius: 4px;
  line-height: 36px;
  height: 36px;
  white-space: nowrap;
  display: flex;
  padding: 0 12px;
  color: #fff;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background-color: #197ADB;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
  transition: background-color 350ms linear;
}
.button:hover, button:hover {
  background-color: #2787e6;
}
.button:disabled, .button.button-disabled, button:disabled, button.button-disabled {
  opacity: 0.5;
}
.button:disabled:hover, .button.button-disabled:hover, button:disabled:hover, button.button-disabled:hover {
  background-color: #197ADB;
  cursor: not-allowed;
}

.button-medium {
  line-height: 42px;
  height: 42px;
  padding: 0 40px;
}

.button-large {
  line-height: 60px;
  height: 60px;
  padding: 0 90px;
  font-size: 25px;
}

.button-link {
  background: transparent;
  color: #06c;
  font-size: inherit;
  border: 0;
  padding: 0;
  -webkit-appearance: none;
  line-height: normal;
  cursor: pointer;
}
.button-link:hover {
  color: #0073e6;
}

.button-user-action {
  background-color: #ED5132;
}
.button-user-action:hover {
  background-color: #ef6549;
}

.button-user-event {
  background-color: #13B0C2;
}
.button-user-event:hover {
  background-color: #15c5d9;
}

.button-user-expand {
  background-color: #fff;
  background-image: none;
  border: solid 1px #cccccc;
  color: #197ADB;
}
.button-user-expand:hover {
  background-color: transparent;
  color: #2787e6;
}

.button-secondary {
  background-color: #cccccc;
  background-image: none;
}
.button-secondary:hover {
  background-color: transparent;
  color: #d9d9d9;
}

.button-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

input {
  width: 100%;
  line-height: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  border: solid 1px #bfbfbf;
  font-size: 16px;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
}
input[type=checkbox], input[type=radio] {
  width: auto;
  line-height: normal;
  height: auto;
  padding: 0;
  border-radius: initial;
  border: initial;
  font-size: initial;
  margin: 0;
}

textarea {
  width: 100%;
  padding: 12px;
  border: solid 1px #cccccc;
}

.form-checkbox {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #06c;
  margin-top: 12px;
}
.form-checkbox input {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}
.form-checkbox .form-checkbox-loader {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.form-fieldset {
  margin-top: 12px;
}
.form-fieldset:first-of-type {
  margin-top: 0;
}

.form-fieldset-note {
  margin-top: 12px;
  font-size: 14px;
  color: #798794;
}

.form-fieldset-label {
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-fieldset-label .form-fieldset-label-lower {
  text-transform: none;
}

@media screen and (min-width: 801px) {
  .fieldset-split {
    display: flex;
    flex-wrap: wrap;
  }
  .fieldset-split .form-error-text {
    min-width: 100%;
    flex-grow: 1;
  }
}

@media screen and (min-width: 801px) {
  .fieldset-split-item {
    flex-grow: 1;
  }
}
.fieldset-split-item:first-child {
  margin-bottom: 12px;
}
@media screen and (min-width: 801px) {
  .fieldset-split-item:first-child {
    margin-bottom: 0;
    margin-right: 12px;
  }
}

@media screen and (min-width: 801px) {
  .fieldset-quarter-item {
    width: 25%;
  }
}

.input-button-group {
  display: flex;
}

.form-select {
  width: 100%;
}

.form-group-error {
  position: relative;
  padding-bottom: 27px;
}
.form-group-error .form-error-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.form-group-error input[type=text],
.form-group-error input[type=number],
.form-group-error input[type=password] {
  background: #fcf4f2;
  border-color: #d83220;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-group-error .button {
  background-color: #cccccc;
  background-image: none;
  border: solid 1px #d83220;
  border-left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.form-field-error {
  border-radius: 4px;
}
.form-field-error input[type=text],
.form-field-error input[type=number],
.form-field-error input[type=password] {
  background: #fcf4f2;
  border-color: #d83220;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-field-error input[type=text]:focus,
.form-field-error input[type=number]:focus,
.form-field-error input[type=password]:focus {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.form-field-error input[type=text]:focus + .form-error-text,
.form-field-error input[type=number]:focus + .form-error-text,
.form-field-error input[type=password]:focus + .form-error-text {
  display: none;
}

.form-error-text {
  background: #d83220;
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 6px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.form-group.form-group-input {
  display: flex;
  align-items: flex-start;
}
.form-group.form-group-input .form-text {
  flex: 1;
  margin: 0;
  position: relative;
}
.form-group.form-group-input .form-text-extra {
  position: absolute;
  right: 12px;
  top: 10px;
}
.form-group.form-group-input .form-field-success {
  color: #62B017;
}
.form-group.form-group-input .form-field-success input {
  color: #62B017;
}
.form-group.form-group-input input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
.form-group.form-group-input .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
}

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

.action {
  cursor: pointer;
}

@font-face {
  font-family: "iCons";
  src: url("/sup/fonts/iCons.eot?svfor=7day&svcfor=7day");
  src: url("/sup/fonts/iCons.eot?svfor=7day&svcfor=7day#iefix") format("embedded-opentype"), url("/sup/fonts/iCons.woff2?svfor=7day&svcfor=7day") format("woff2"), url("/sup/fonts/iCons.woff?svfor=7day&svcfor=7day") format("woff"), url("/sup/fonts/iCons.ttf?svfor=7day&svcfor=7day") format("truetype"), url("/sup/fonts/iCons.svg?svfor=7day&svcfor=7day#iCons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Make use of data-icon */
[data-icon]:before {
  font-family: "iCons";
  content: attr(data-icon);
  speak: none;
  font-display: block;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: inherit;
}

ul, ol, dl {
  margin-top: 12px;
  margin-bottom: 24px;
  padding-left: 24px;
  list-style-position: outside;
}

li {
  line-height: 1.5;
}

ol ul,
ol ol {
  margin-left: 24px;
}

dl {
  padding-left: 0;
}

dl dt {
  margin-bottom: 6px;
  font-weight: 700;
}

dl dd {
  margin-bottom: 12px;
  margin-left: 0;
}

.page-popup-body {
  max-height: 68vh;
  overflow-y: scroll;
}
.panel .page-popup-body {
  max-height: none;
  overflow: visible;
}

.page-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.page-popup.modal .page-popup-wrapper {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  position: absolute;
  width: 80vw;
  height: 80vh;
  padding: 74px 24px 24px;
}
.page-popup.panel .page-popup-wrapper {
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  padding: 74px 24px 24px;
}
@media screen and (min-width: 801px) {
  .page-popup.panel .page-popup-wrapper {
    width: 440px;
  }
}
.page-popup.banner {
  position: relative;
}
.page-popup.banner .page-popup-wrapper {
  background: #004387;
  color: #fff;
  padding: 12px 60px 12px 12px;
}
.page-popup.banner .page-popup-wrapper a {
  color: #fff;
  text-decoration: underline;
}

.page-popup-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #f2f2f2;
  border-bottom: 0;
  padding: 0 24px;
}

.page-popup-body {
  max-height: 68vh;
  overflow-y: scroll;
}

.page-popup-header-text {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.page-popup-close {
  position: absolute;
  top: 5px;
  right: 12px;
  padding: 12px;
}

.tooltip-container {
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  margin: auto;
  min-width: 260px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  z-index: 1;
  transition: opacity 350ms;
  top: 24px;
  font-size: 14px;
}
.tooltip-container.tooltip-left {
  left: 0;
  transform: translateX(0);
}
.tooltip-container.tooltip-left:before {
  left: 30px;
  transform: translateX(0);
}
.tooltip-container.tooltip-right {
  right: 0;
  left: auto;
  transform: translateX(50%);
}
.tooltip-container.tooltip-right:before {
  left: auto;
  right: 30px;
  transform: translateX(0);
}
@media screen and (min-width: 1200px) {
  .tooltip-container {
    min-width: 400px;
  }
}
.tooltip-container:before {
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.tooltip-container-title {
  margin-bottom: 12px;
}

.tooltip-container-text {
  margin-bottom: 12px;
  font-size: 16px;
}

.tooltip-container-list {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 18px;
}
.tooltip-container-list li {
  margin-top: 6px;
}

.tooltip-hover-wrapper {
  position: relative;
}
.tooltip-hover-wrapper:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
}
.tooltip-hover-wrapper:hover:before, .tooltip-hover-wrapper:focus:before {
  height: 39px;
  z-index: 1;
}
.tooltip-hover-wrapper:hover .tooltip-container, .tooltip-hover-wrapper:focus .tooltip-container {
  opacity: 1;
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-rendering: optimizeLegibility;
  margin-bottom: 12px;
  line-height: 1.35;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  margin-bottom: 12px;
  line-height: 1.5;
}
p a:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

i[data-icon] {
  font-style: normal;
}

small {
  font-size: 12px;
}

code {
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-weight: bold;
}

abbr,
acronym {
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #cccccc;
  cursor: help;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.show-if-logged-in,
.show-if-logged-out {
  display: none !important;
}

.logged-out .show-if-logged-out,
.logged-in .show-if-logged-in {
  display: block !important;
}

/*--------------------------------------------------------------------------
Global Styles:
--------------------------------------------------------------------------*/
#mainContent {
  min-height: 50vh;
  z-index: 1;
}

.pageContent header h1 {
  font-size: 1.8em;
  margin-bottom: 30px;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-size: 60%;
  color: #55799c;
  line-height: 0;
}

.pageContent header h1.authorized-small {
  font-size: 1em;
}

hr {
  border: solid #ccc;
  border-width: 1px 0 0;
  clear: both;
  margin: 20px 0 28px;
  height: 0;
}

hr.hidden-break {
  border: 0;
  margin: 0;
}

hr.double {
  border-width: 1px 0;
  height: 2px;
}

.subheader {
  color: #55799c;
  font-weight: 300;
}

/* Helpful Typography Defaults */
em, i {
  font-style: italic;
  line-height: inherit;
}

strong, b {
  /* font-family: 'Open Sans Bold','Open Sans',sans-serif; */
  font-weight: 700;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: bold;
  color: #55799c;
}

/* Default Link Styles */
p a:hover {
  text-decoration: underline;
}

a img {
  border: none;
}

p.lead {
  font-size: 24px;
  line-height: 1.6;
}

/* Lists */
ul, ol, dl {
  margin: 8px 12px 20px 0;
  padding-left: 30px;
  list-style-position: outside;
  font-family: inherit;
}

dl {
  padding-left: 0;
}

li {
  line-height: 1.4;
  margin: 1px 0 3px;
}

/* Unordered Lists */
li ul, li ol {
  margin-left: 0;
  margin-bottom: 0;
  font-size: 1em;
  /* Override nested font-size change */
}

ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit;
}

ul.square {
  list-style-type: square;
}

ul.circle {
  list-style-type: circle;
}

ul.disc {
  list-style-type: disc;
}

ul.no-bullet {
  list-style: none;
}

/* Ordered Lists */
ol li ul, ol li ol {
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 1em;
}

/* Definition Lists */
dl dt {
  margin-bottom: 6px;
  font-weight: bold;
}

dl dd {
  margin-bottom: 12px;
  margin-left: 0;
}

/* Abbreviations */
abbr, acronym {
  text-transform: uppercase;
  font-size: 0.875em;
  color: #34495e;
  border-bottom: 1px solid #ddd;
  cursor: help;
}

abbr {
  text-transform: none;
}

/* Blockquotes */
blockquote {
  margin: 0 0 20px;
  padding: 8px 20px 3px 20px;
  border-left: 4px solid #ecf0f1;
}

blockquote cite {
  display: block;
  font-size: 100%;
  color: #507192;
}

blockquote cite:before {
  content: "— ";
}

blockquote cite a,
blockquote cite a:visited {
  color: #507192;
}

blockquote, blockquote p {
  font-size: 0.875em;
  line-height: 1.225em;
  color: #698aac;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*radius*/
.radius-sm {
  border-radius: 2px;
}

.radius-med {
  border-radius: 3px;
}

.radius-lg {
  border-radius: 4px;
}

.radius-round {
  border-radius: 1000px;
}

.separator-top {
  border-top: 1px solid #ccc;
}

.separator-bottom {
  border-bottom: 1px solid #ccc;
}

.readMore {
  font-size: 0.875em;
}

.loadingTextPlaceholder {
  display: inline-block;
  padding: 20px 0;
  text-align: center;
  font-size: 0.875em;
  color: #888;
}

.loading {
  min-height: 300px;
  background: url("/image/lsa/ui/ajaxLoading.gif") no-repeat center #fff;
}

/*--------------------------------------------------------------------------
Content Styles:
--------------------------------------------------------------------------*/
.pageContent {
  width: 1020px;
  margin: 0 auto;
  padding: 8px 0;
  clear: both;
  min-height: 500px;
}

.legacyContentWrapper {
  background: #fff;
  margin: -8px 0;
  padding: 48px 105px;
}

.color-block {
  background-color: #fff;
  border-radius: 4px;
  padding: 18px;
  border: 1px solid #e5e5e9;
  border-bottom-width: 2px;
  border-top-width: 0;
}

/*breadcrumbs*/
.breadcrumbs {
  overflow: hidden;
  padding: 6px 0 6px;
  margin: 6px 0 10px;
  color: #4e5357;
}

.breadcrumbs #Path_1130{
  fill: var(--scuba-blue);
}

.breadcrumbs > div, .breadcrumbs > em {
  float: left;
  margin-right: 5px;
}

.breadcrumbs div:after, .breadcrumbs li:after {
  content: "›";
  color: #585C5F;
  margin-left: 4px;
  position: relative;
  font-family: iCons;
}

.breadcrumbs div:last-child:after, .breadcrumbs li:last-child:after {
  content: "";
  display: none;
}

.breadcrumbs span, .breadcrumbs em {
  font-size: 0.75em;
  font-style: normal;
}
.breadcrumbs span.disabled  {
  color: #757575;
  cursor: not-allowed;
}
.breadcrumbs div.disabled::after {
  content: "";
  display: none;
}
.breadcrumbs em {
  margin: 5px 0 0 3px;
  color: #777;
  cursor: default;
}

.breadcrumbs a span:hover {
  text-decoration: underline;
}

.breadcrumbs ol {
  padding-left: 0;
  margin: 0;
}

.breadcrumbs li {
  display: inline-block;
  margin-right: 5px;
}

.breadcrumbs li:last-child {
  font-style: italic;
  color: #777;
}

.breadcrumbs li:last-child span {
  font-style: normal;
  color: #4e5357;
}

.breadcrumbs li:last-child span::after {
  white-space: pre;
}

.alert {
  color: #e74c3c;
}

.alert-note.alert {
  color: inherit;
  border: 1px solid #e74c3c;
  padding: 12px;
  background-color: #fff0ee;
}

.alert-strong.alert {
  background-color: #e74c3c;
  color: #fff;
}

.widget {
  padding: 0;
  margin-bottom: 24px;
  border-radius: 4px;
}

.widget-header {
  padding: 10px 15px;
  margin: 0;
  text-align: left;
  font-weight: 400;
  color: #222;
  font-size: 25px;
}

.widget-content {
  padding: 0;
  font-size: 14px;
}

.static-content .widget-content {
  padding: 15px 15px 18px;
}

.shadow-scroller, .linkset.additional-configurations {
  overflow-y: auto;
  position: relative;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background-attachment: local, local, scroll, scroll;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
}

.loading-global {
  background: url("/image/lsa/ui/ajaxLoading.gif") center center no-repeat;
  content: "";
  width: 22px;
  height: 12px;
  display: inline-block;
}

#storageFrame {
  display: none;
}

/*Edit Order Mode*/
body.edit-order-active {
  padding-bottom: 100px;
}

.edit-order-page .edit-order-status-bar {
  display: block;
  bottom: 0;
}

.edit-order-page .edit-order-status-bar .info {
  margin-top: 3px;
}

.edit-order-page .edit-order-status-bar button {
  margin-top: 6px;
  margin-left: 20px;
}

.edit-order-status-bar.active .layout-70-30 {
  display: block;
}

/*Sticky edit order status bar */
.edit-order-status-bar {
  bottom: -100%;
  padding: 24px 2%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #c4c4c4;
  transition: bottom 0.3s ease;
  position: fixed !important;
}

.edit-order-status-bar .wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.edit-order-status-bar .toggle-button {
  display: none;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform 0.3s ease;
}

.edit-order-status-bar .toggle-button:before {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.edit-order-status-bar h3 {
  font-weight: 400;
  margin: 0;
}

.edit-order-status-bar p {
  margin: 3px 0 0;
}

.edit-order-status-bar .read-more-link {
  display: none;
}

.edit-order-status-bar .info,
.edit-order-status-bar .info:before {
  color: #E69139;
}

.edit-order-status-bar .info {
  position: relative;
  padding-left: 22px;
}

.edit-order-status-bar .info:before {
  font-size: 1.3em;
  position: absolute;
  left: 0;
}

.edit-order-status-bar .button {
  margin: 13px 0 0 12px;
}

.edit-order-status-bar .col2 {
  text-align: right;
}

.edit-order-bar-shown .edit-order-status-bar {
  display: block;
  bottom: 0;
  transition: bottom 0.3s ease;
  z-index: 1001;
}

/* !--- level0 (Used for global notifications) --- */
header .level0,
.level0 {
  width: 100%;
  clear: both;
  display: block;
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid #f0c36d;
  background-color: #f9edbe;
  color: #333;
  font-size: 0.6875em;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1em;
  font-weight: 400;
}

.globalMessageOn header .level0 {
  display: block;
}

.level0 .wrap {
  width: 100%;
  max-width: 1400px;
  padding: 0 10px;
  margin: 0 auto;
  display: block;
  position: relative;
  text-align: center;
  height: auto;
  overflow: hidden;
  overflow-wrap: break-word;
}

.level0 .wrap p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 0;
}

.level0-dismiss,
.level0 .hide-dismiss {
  float: right;
  position: relative;
  font-size: 1.2em;
}

.level0-dismiss:before,
.level0 .hide-dismiss:before {
  color: #338ebd;
}

.level0-nodismissal .level0-dismiss,
.level0-nodismissal .hide-dismiss {
  display: none !important;
}

[class*=holiday-shipping-message] {
  background: #f9edbe;
  border: 1px solid #f0c36d;
  text-align: center;
  padding: 12px 18px;
  margin-bottom: 1em;
}

[class*=holiday-shipping-message] p {
  margin: 0;
}

.checkout .ship .holiday-shipping-message {
  margin-top: -1em;
}

.holiday-shipping-message-vip360 {
  margin-top: -1em;
  border-width: 0 0 1px;
}

/* !--- level1 --- */
/*social icons*/
.social-share .social .fb-share-button,
.social-share .social iframe,
.social-share .social.social-google > div {
  vertical-align: middle !important;
  margin-right: 5px;
}

@media screen and (max-width: 1020px) {
  .breadcrumbs {
    display: none;
  }
}
/* !--- small and medium size responsiveness --- */
@media screen and (max-width: 801px) {
  body:not(.edit-order-page) .edit-order-status-bar p, body:not(.edit-order-page) .edit-order-status-bar .button {
    display: none;
  }

  .pageContent {
    width: 100% !important;
  }

  .breadcrumbs {
    width: 94%;
    margin: 2px 3% 8px;
  }

  .level0 .wrap p {
    padding: 0;
    font-size: 0.875em;
  }

  .level0 .wrap {
    max-height: none;
  }

  .level0-dismiss, .level0 .hide-dismiss {
    float: none;
    display: block;
    margin-top: 6px;
    width: 100%;
  }

  .level0-dismiss:before, .level0 .hide-dismiss:before {
    display: none;
  }

  .level0-dismiss span, .level0 .hide-dismiss span {
    display: block !important;
    font-size: 0.875rem;
    padding: 3px;
  }

  .edit-order-status-bar:not(.show) h3 {
    margin-bottom: 0;
  }

  .edit-order-status-bar {
    font-size: 0.875em;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .edit-order-status-bar .col1, .edit-order-status-bar .col2 {
    width: 100%;
  }

  .edit-order-status-bar .toggle-button, .edit-order-status-bar.show p, .edit-order-status-bar.show .button {
    display: block !important;
  }

  .edit-order-active .regular-title, .edit-order-status-bar .info:before, .edit-order-status-bar.show .read-more-link {
    display: none;
  }

  .edit-order-status-bar button {
    margin-left: 0 !important;
  }

  .edit-order-active .read-more-link, .edit-order-status-bar.show .regular-title {
    display: inline;
  }

  .edit-order-status-bar.show .toggle-button {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s ease;
  }

  .edit-order-status-bar .info {
    padding-left: 0;
  }

  .edit-order-status-bar, .edit-order-status-bar .col2 {
    text-align: center;
  }

  .edit-order-status-bar.show {
    text-align: left;
  }

  .edit-order-status-bar button {
    float: none;
    margin-top: 0;
  }

  body.edit-order-active {
    padding-bottom: 70px;
  }
}
/* !--- responsive: between mobile and full --- */
@media screen and (max-width: 1020px) and (min-width: 801px) {
  .pageContent {
    width: 100%;
  }
}
/* !--- rwd ultra wide --- */
@media screen and (min-width: 1020px) {
  .pageContent {
    width: 100%;
  }

  .pageContent > * {
    margin-right: auto;
    margin-left: auto;
    position: relative;
  }
}
/* !--- rwd between medium and ultra wide --- */
@media screen and (min-width: 801px) and (max-width: 1440px) {
  .pageContent {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 801px) {
  .level0 .wrap {
    padding: 8px 4vw !important;
  }

  .level0-dismiss, .level0 .hide-dismiss {
    position: absolute;
    right: 8px;
    top: calc(50% - 0.5em);
  }

  .level0-dismiss span,
.level0 .hide-dismiss span {
    display: none !important;
  }
}
/* !--- RWD sm --- */
@media screen and (max-width: 599px) {
  .edit-order-status-bar {
    padding-left: 4%;
    padding-right: 4%;
  }

  .edit-order-status-bar h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
  }

  .widget {
    margin-bottom: 12px;
  }

  .level0 .wrap p {
    font-size: 0.8125em;
    line-height: 1.3;
    padding: 3px 0;
  }
}


/*  */
.level0-dismiss span,
.level0 .dismiss-message {
    display: none;
}

.dismiss-message-container {
    display: flex;
    justify-content: flex-end;
}

.level0-dismiss:before,
.level0 .hide-dismiss:before {
    color: #8B6A3C;
}

.site-holiday-message-wrapper p {
    font-size: 14px;
}

@media screen and (max-width: 801px) {

    .level0-dismiss span,
    .level0 .hide-dismiss {
        display: none !important;
    }

    .level0-dismiss span,
    .level0 .dismiss-message {
        display: flex;
        justify-content: flex-end;
        margin-bottom: -5px;
    }

    .level0-dismiss span,
    .level0 .dismiss-message::before {
        font-size: 20px;
        color: #8B6A3C;
        padding: 2px 2px 0 0;

    }

    .site-holiday-message.level0 {
        padding: 0px !important;
    }

    .site-holiday-message-wrapper p {
        padding: 0 25px 12px 25px !important;
    }
}

@media screen and (min-width: 802px) {
    .site-holiday-message-wrapper p {
      padding-left: 42px !important;
      padding-right: 42px !important;
    }
}

#footer {
  content-visibility: auto;
}

.cont-vis-auto {
  content-visibility: auto;
}

/*  */

/* Current SandBox Label */
body > div[style*="z-index:9999999;"] {
  position: fixed !important;
  background: rgba(255,255,255,0.5);
  padding: 2px 4px;
  border-radius: 3px;
  margin: 3px;
}

/*# sourceMappingURL=base.css.map */