.user-is-tabbing .grmProductCard .gridItem .gridItemInner .product-actions-container {
  display: flex !important;
}

.owl-carousel .owl-carousel.colorChoiceItemCarousel .owl-wrapper-outer {
  width: 200px;
}

/*
 .d8888b.  888      .d88888b.  888888b.         d8888 888
d88P  Y88b 888     d88P" "Y88b 888  "88b       d88888 888
888    888 888     888     888 888  .88P      d88P888 888
888        888     888     888 8888888K.     d88P 888 888
888  88888 888     888     888 888  "Y88b   d88P  888 888
888    888 888     888     888 888    888  d88P   888 888
Y88b  d88P 888     Y88b. .d88P 888   d88P d8888888888 888
 "Y8888P88 88888888 "Y88888P"  8888888P" d88P     888 88888888
*/
* {
  margin: 0;
}
*:focus {
  /* WCAG 4870 - SortSite CSS border issue addressed */
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}

body {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
body.menu-open {
  overflow: hidden;
}

.userInfo a {
  color: __preheaderTextColor__;
}

a {
  color: #58595A;
  cursor: pointer;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #58595A;
  text-decoration: none;
}
a:focus, a:active {
  /* WCAG 4870 - SortSite CSS border issue addressed */
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}

a[target=_blank]:link {
  text-decoration: underline;
  color: #006618;
}
a[target=_blank]:visited {
  text-decoration: underline;
  color: #551A8B;
}
a[target=_blank]:hover, a[target=_blank]:focus {
  text-decoration: none;
  color: #005715;
}
a[target=_blank]:active {
  text-decoration: none;
  color: #551A8B;
}

ul {
  list-style: none;
}

input {
  font-size: 14px;
  line-height: 16px;
  padding: 12px 0 12px 16px;
  border: 1px solid #595959;
  border-radius: 2px;
}
input:focus {
  border: 1px solid #595959;
}

input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

input::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.button-primary {
  background-color: #000000;
  background: __buttonBackgroundColor__;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  color: __buttonTextColor__;
  border: 2px solid #000000;
  border: 2px solid __buttonBorderColor__;
  border-radius: 2px;
}
.button-primary:hover {
  -webkit-box-shadow: 0 0 4px 0 rgba(102, 102, 102, 0.5);
  box-shadow: 0 0 4px 0 rgba(102, 102, 102, 0.5);
  background: #006618;
  background: __buttonTextColor__;
  border: 2px solid #006618;
  border: 2px solid __buttonBackgroundColor__;
  color: #FFFFFF;
  color: __buttonBorderColor__;
}
.button-primary:focus {
  -webkit-box-shadow: 0 0 4px 0 #595959;
  box-shadow: 0 0 4px 0 #595959;
  background: #006618;
  background: __buttonTextColor__;
  border: 2px solid #006618;
  border: 2px solid __buttonBackgroundColor__;
  color: #FFFFFF;
  color: __buttonBorderColor__;
}

.button-secondary {
  background-color: #FFFFFF;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 2px;
}
.button-secondary:hover {
  border: 1px dotted #006618;
  background-color: #006618;
  color: #FFFFFF;
  text-decoration: none;
}
.button-secondary:focus {
  -webkit-box-shadow: 0 0 4px 0 #595959;
  box-shadow: 0 0 4px 0 #595959;
  border: 1px dotted #006618;
  background-color: #006618;
  color: #FFFFFF;
}

.alert {
  color: #FFFFFF;
  padding: 10px 16px;
  margin: 16px 0;
  border: 0;
}

.alert-description {
  margin: 16px 0;
  color: "Barlow", Helvetica, Arial, sans-serif;
}

.alert-success {
  background-color: #006618;
}

.alert-info {
  background-color: #595959;
}

.alert-warning {
  background-color: #C04E02;
}

.alert-danger {
  background-color: #D0023E;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 101;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #FFFFFF;
  padding: 20px;
  border: 1px solid #888888;
  width: 100%;
  height: 80%;
  margin: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal-content {
    width: 80%;
    height: 100%;
  }
}
@media only screen and (max-width: 667px) {
  .modal-content {
    padding: 16px;
  }
}

.modal-content > img {
  margin: auto;
  width: 340px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .modal-content > img {
    width: auto;
  }
}

.gdpr-modal {
  padding: 0;
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
}

.gdpr-modal-content {
  width: 549px;
  max-height: 434px;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #888888;
  margin: auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 667px) {
  .gdpr-modal-content {
    width: 375px;
  }
}

.gdpr-alert .gdpr-banner {
  height: 79px;
  width: 549px;
  border-radius: 2px 2px 0 0;
  background-color: #F2F4F6;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 667px) {
  .gdpr-alert .gdpr-banner {
    width: 375px;
  }
}
.gdpr-alert .gdpr-banner #ontraMsgConnecting {
  text-transform: uppercase;
  height: 22px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 22px;
}
.gdpr-alert .gdpr-banner #ontraMsgConnectingSubText {
  text-transform: none;
  height: 24px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
.gdpr-alert .gdpr-banner .ontraCancel {
  float: right;
  height: 24px;
  width: 24px;
  margin: 25px;
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/close-icon-black-GRM?$iconFont$") no-repeat right top;
}
@media only screen and (max-width: 667px) {
  .gdpr-alert .gdpr-banner .ontraCancel {
    padding: 0;
  }
}
.gdpr-alert p {
  padding: 20px;
}
.gdpr-alert .ontraContinue {
  line-height: 40px;
  margin-top: 10px;
  width: 100%;
}
.gdpr-alert .ontraPrivacyPolicyLink {
  color: #006618;
}
.gdpr-alert .ontraEdit,
.gdpr-alert .ontraLater {
  width: 45%;
  margin: 8px;
}

/* The Close Button */
.close {
  height: 24px;
  width: 24px;
  margin: 25px;
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/close-icon-black-GRM?$iconFont$") no-repeat right top;
  align-self: flex-end;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Endor icon font */
.endorIcon, .profile-options li:before, .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-weak i, .endor-form .field-error .pw-match-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon i, .mobile-nav .menu li a:after {
  font-family: 'Endor';
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

/* button btn */
.btn-unstyled {
  padding: 0;
  margin: 0;
  background: transparent;
  height: auto;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 0;
}
.btn-unstyled:active, .btn-unstyled:hover {
  outline: none;
  color: #333333;
  color: __buttonTextColor__;
}

/* GRM icon */
.grm-icon {
  cursor: pointer;
  opacity: .7;
}
.grm-icon:hover, .grm-icon:focus * {
  opacity: 1;
}

/* Activity Indicator (spinner) */
.activity-indicator {
  display: block;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.activity-indicator .loader, .activity-indicator .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.activity-indicator .loader {
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid #DEDFE1;
  border-right: 5px solid #DEDFE1;
  border-bottom: 5px solid #DEDFE1;
  border-left: 5px solid #008A21;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.activity-indicator .loader-text {
  margin-top: 12px;
  color: #8C8F93;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 14px;
  text-align: center;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.activity-indicator .spinner {
  position: fixed;
  text-align: center;
  z-index: 9999;
  width: 100px;
  height: 100px;
  background: no-repeat center center;
  opacity: 0.5;
  color-interpolation: auto;
}

.activity-indicator .spinner .path {
  fill: none;
  stroke-width: 4;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  position: absolute;
  top: 50%;
  left: 50%;
}

.no-padding {
  padding: 0;
}

#page-header, .page-header {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  line-height: 29px;
  background-color: #FFFFFF;
}

.collapse-tab-content {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  border-top: 1px solid #DEDEDE;
}

@media only screen and (min-width: 767px) {
  .collapse-tab-content {
    margin-top: 35px;
    border-top: 0;
  }
}
.collapse-tab-content li {
  list-style-type: none;
}

@media only screen and (min-width: 767px) {
  .collapse-tab-content .tab-pane.collapse {
    height: auto;
  }
}
.collapse-tab-content .tab-pane.collapse.in {
  display: block;
  visibility: visible;
}

@media only screen and (min-width: 767px) {
  .collapse-tab-content .tab-pane.collapse.in {
    display: none;
  }

  .collapse-tab-content .tab-pane.collapse.in.active {
    display: block;
  }
}
.collapse-tab-content .tab-pane.collapse.active {
  display: none;
  visibility: visible;
}

@media only screen and (min-width: 767px) {
  .collapse-tab-content .tab-pane.collapse.active {
    display: block;
  }
}
.collapse-tab-content .tab-pane.collapse.active.in {
  display: block;
}

body {
  min-height: 100vh;
  position: relative;
}

.disabled {
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden !important;
}

@media (max-width: 568px) {
  .fpd-topbar .fpd-navigation {
    height: 75px !important;
  }
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  border-radius: 2px;
  background-color: #008A21;
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  position: fixed;
  /* Sit on top of the screen */
  left: 50%;
  /* Center the snackbar */
  top: 40px;
  z-index: 9999;
  font-size: 14px;
  padding: 10px;
  display: flex;
  transform: translate(-50%, 0);
}
@media (max-width: 575.98px) {
  #snackbar {
    width: 90%;
  }
}
#snackbar div.snackbar-alert-icon {
  padding: 8px;
  display: block;
}
#snackbar div.snackbar-alert-icon img {
  width: 16px;
  height: 16px;
}
#snackbar p.snackbar-alert-message {
  font-size: 14px;
  padding: 10px 0;
  margin: 0;
  margin-right: 24px;
}
#snackbar .snackbar-alert-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 4px 8px;
}
#snackbar .snackbar-alert-close img {
  width: 16px;
  height: 16px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.visible {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
}
@media only screen and (min-width: 667px) {
  #snackbar.visible {
    -webkit-animation: snack-fadein 0.5s;
    animation: snack-fadein 0.5s;
  }
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes snack-fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 40px;
    opacity: 1;
  }
}
@keyframes snack-fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 40px;
    opacity: 1;
  }
}
@-webkit-keyframes snack-fadeout {
  from {
    top: 40px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
@keyframes snack-fadeout {
  from {
    top: 40px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
.user-is-tabbing *:focus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing a:focus {
  outline: 2px dashed #595959 !important;
}

.snackbarErr {
  background-color: #AC152F !important;
}

.force-pos-abs {
  position: absolute !important;
}

.force-pos-rel {
  position: relative !important;
}

#custom-title {
  display: none !important;
}

.back-to-previous {
  display: inline-block;
  margin-bottom: 0px !important;
  padding-top: 0px !important;
  margin-top: 28px;
}

.mainContainer {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: inline-flex;
}

.mainContainer2 {
  align-self: stretch;
  padding: 24px;
  overflow: hidden;
  border-radius: 10px;
  outline: 1px #E7E8E9 solid;
  outline-offset: -0.50px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.mainContainer3 {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.mainHeader {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.mainHeader2 {
  align-self: stretch;
  color: black;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.mainHeader3 {
  align-self: stretch;
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainContainer4 {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mainDivider {
  align-self: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.mainDivider2 {
  flex: 1 1 0;
  height: 0px;
  outline: 1px #E7E8E9 solid;
  outline-offset: -0.5px;
}

.mainEmail {
  align-self: stretch;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: inline-flex;
  cursor: pointer;
}

.mainEmail2 {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  display: inline-flex;
}

.mainEmailHeader {
  width: 100px;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.mainEmail3 {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.mainPhone3 {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.mainEmailMasked {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainPhoneMasked {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainEmailVerified {
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  display: flex;
}

.mainEmailVerified2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.mainEmailVerified3 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.mainEmailVerified4 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.mainEmailVerified5 {
  color: #008A21;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainEmailVerifiedTrue {
  color: #008A21;
}

.mainEmailVerifiedFalse {
  color: #D0023E;
}

.mainPhoneVerifiedTrue {
  color: #008A21;
}

.mainPhoneVerifiedFalse {
  color: #D0023E;
}

.error-msg-container {
  color: #d0023e;
}

.mainPhoneVerified {
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  display: flex;
}

.mainPhoneVerified2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.mainPhoneVerified3 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.mainPhoneVerified4 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.mainPhoneVerified5 {
  color: #008A21;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.linkToEmail {
  width: 16px;
  height: 16px;
  position: relative;
}

.linkToEmail2 {
  width: 7.72px;
  height: 13.28px;
  left: 4.12px;
  top: 1.34px;
  position: absolute;
}

.linkToEmail3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.12px;
  top: 1.34px;
  position: absolute;
}

.linkToEmail4 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.linkToEmail5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.mainDivider3 {
  align-self: stretch;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.mainDivider4 {
  flex: 1 1 0;
  height: 0px;
  outline: 1px #E7E8E9 solid;
  outline-offset: -0.5px;
}

.mainPhone {
  align-self: stretch;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  display: inline-flex;
  cursor: pointer;
}

.mainPhone2 {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  display: inline-flex;
}

.mainPhoneHeader {
  width: 100px;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.mainPhoneMessage {
  align-self: stretch;
  color: #8C8F93;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainEmailMessage {
  align-self: stretch;
  color: #8C8F93;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.linkToPhone {
  width: 16px;
  height: 16px;
  position: relative;
}

.linkToPhone2 {
  width: 7.72px;
  height: 13.28px;
  left: 4.12px;
  top: 1.34px;
  position: absolute;
}

.linkToPhone3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.12px;
  top: 1.34px;
  position: absolute;
}

.linkToPhone4 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.linkToPhone5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.emailContainer {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 29px;
  display: inline-flex;
}

.emailBack {
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  cursor: pointer;
}

.emailBack2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.emailBack3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.emailBack4 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.emailBack5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.emailBack6 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.emailBack7 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  border: none;
  background: none;
  margin-left: -35%;
}

.emailContainer2 {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.emailPageHeader {
  align-self: stretch;
  color: black;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.emailPageIntro {
  align-self: stretch;
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.emailContainer3 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.emailContainer4 {
  width: 400px;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 440px) {
  .emailContainer4 {
    width: 335px;
  }
}

.emailContainer5 {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  display: inline-flex;
}

.emailPageLabel {
  align-self: stretch;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.emailContainer6 {
  align-self: stretch;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.emailPageInput {
  width: 400px;
  height: 40px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 5px;
  border: 1px #666666 solid;
}

.emailPageInput2 {
  width: 204.84px;
  left: 15px;
  top: 13px;
  position: absolute;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  word-wrap: break-word;
}

.emailContainer7 {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.emailPageSendCode {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: black;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  border: none;
}

.emailPageSendCode2 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailPageSendCode3 {
  width: 100%;
  height: 100%;
}

.emailPageSendCode4 {
  width: 100%;
  height: 100%;
  background: black;
}

.emailPageSendCode5 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailPageSendCode6 {
  text-align: center;
  color: white;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 500;
  word-wrap: break-word;
}

.emailPageVerifyLater {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: white;
  border-radius: 5px;
  outline: 1px black solid;
  outline-offset: -0.50px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  border: none;
}

.emailPageVerifyLater2 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailPageVerifyLater3 {
  width: 100%;
  height: 100%;
}

.emailPageVerifyLater4 {
  width: 100%;
  height: 100%;
  background: black;
}

.emailPageVerifyLater5 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailPageVerifyLater6 {
  text-align: center;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 500;
  word-wrap: break-word;
}

.emailCodeContainer {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 29px;
  display: inline-flex;
}

.emailCodeBack {
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  cursor: pointer;
}

.emailCodeBack2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.emailCodeBack3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.emailCodeBack4 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.emailCodeBack5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.emailCodeBack6 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.emailCodeBack7 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  margin-left: -35%;
}

.emailCodeHeader {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.emailCodeMessage {
  align-self: stretch;
  color: black;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.emailCodeHeader2 {
  align-self: stretch;
}

.emailCodeHeader3 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.emailCodeHeader4 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.emailCodeVerify {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.emailCodeVerify2 {
  align-self: stretch;
  padding-top: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.emailCodeVerify3 {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.emailCodeVerify4 {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.emailCodeInput {
  flex: 1 1 0;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.emailCodeInput2 {
  padding: 12px;
  border-radius: 5px;
  outline: 1px #676869 solid;
  outline-offset: -0.50px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
  height: 47px;
  border: none;
}

.emailCodeInput3 {
  font-size: 18px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 5px;
  word-wrap: break-word;
}

.emailCodeVerify5 {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: black;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  border: none;
  color: white;
  height: 47px;
}

.emailCodeVerify6 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailCodeVerify7 {
  width: 100%;
  height: 100%;
}

.emailCodeVerify8 {
  width: 100%;
  height: 100%;
  background: black;
}

.emailCodeVerify9 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.emailCodeVerify10 {
  width: 100%;
  height: 100%;
  background: #BBBBBB;
  border-radius: 8px;
}

.mainPhoneContainer {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 29px;
  display: inline-flex;
}

.mainPhoneBack {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  cursor: pointer;
}

.mainPhoneBack2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.mainPhoneBack3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.mainPhoneBack4 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.mainPhoneBack5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.mainPhoneBack6 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.mainPhoneBack7 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  margin-left: -5%;
}

.phoneHeader {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.phoneHeader2 {
  align-self: stretch;
  color: black;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.phoneHeader3 {
  align-self: stretch;
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.mainPhoneBody {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.mainPhoneBody2 {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
  display: inline-flex;
}

.mainPhoneBody3 {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.mainPhoneBody4 {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.mainPhoneBody5 {
  align-self: stretch;
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.mainPhoneBody6 {
  align-self: stretch;
  height: 40px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 1366px) {
  .mainPhoneBody6 {
    height: auto;
    display: unset;
  }
}

.mainPhoneSelect {
  padding: 12px;
  border-radius: 5px;
  outline: 1px black solid;
  outline-offset: -1px;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  display: flex;
  border: none;
  cursor: pointer;
  background-color: white;
  outline: 1px black solid;
}
@media (max-width: 1366px) {
  .mainPhoneSelect {
    margin-bottom: 14px;
  }
}

.mainPhoneSelect2 {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  word-wrap: break-word;
}

.mainPhoneSelect3 {
  width: 16px;
  height: 16px;
  position: relative;
  overflow: hidden;
}

.mainPhoneSelect4 {
  width: 9.33px;
  height: 5.33px;
  left: 3.33px;
  top: 5.33px;
  position: absolute;
  background: #59606D;
}

.mainPhoneInput {
  flex: 1 1 0;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 5px;
  outline: 1px black solid;
  outline-offset: -1px;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  display: flex;
  border: none;
}

.mainPhoneInput2 {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  word-wrap: break-word;
}

.mainPhoneButtons {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.mainPhoneSendCode {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: black;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  border: none;
  height: 47px;
  color: white;
}
@media (max-width: 430px) {
  .mainPhoneSendCode {
    padding-right: 0;
  }
}

.mainPhoneSendCode2 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.mainPhoneSendCode3 {
  width: 100%;
  height: 100%;
}

.mainPhoneSendCode4 {
  width: 100%;
  height: 100%;
  background: black;
}

.mainPhoneSendCode5 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.mainPhoneSendCode6 {
  width: 100%;
  height: 100%;
  background: #BBBBBB;
  border-radius: 8px;
}

.mainPhoneVerifyLater {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: white;
  border-radius: 5px;
  outline: 1px black solid;
  outline-offset: -0.50px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
  border: none;
  height: 47px;
}

.mainPhoneVerifyLater2 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.mainPhoneVerifyLater3 {
  width: 100%;
  height: 100%;
}

.mainPhoneVerifyLater4 {
  width: 100%;
  height: 100%;
  background: black;
}

.mainPhoneVerifyLater5 {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.mainPhoneVerifyLater6 {
  width: 100%;
  height: 100%;
  background: #BBBBBB;
  border-radius: 8px;
}

.phoneCodeContainer {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 29px;
  display: inline-flex;
}

.phoneCodeBack {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  display: inline-flex;
  cursor: pointer;
}

.phoneCodeBack2 {
  width: 16px;
  height: 16px;
  position: relative;
}

.phoneCodeBack3 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.phoneCodeBack4 {
  width: 7.72px;
  height: 13.28px;
  left: 4.11px;
  top: 1.34px;
  position: absolute;
}

.phoneCodeBack5 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.phoneCodeBack6 {
  width: 16px;
  height: 16px;
  left: 0px;
  top: 0px;
  position: absolute;
  border-radius: 8px;
}

.phoneCodeBack7 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  margin: -5%;
}

.phoneCodeHeader {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.phoneCodeHeader2 {
  align-self: stretch;
  color: black;
  font-size: 20px;
  font-family: Barlow;
  font-weight: 600;
  word-wrap: break-word;
}

.phoneCodeHeader3 {
  align-self: stretch;
}

.phoneCodeHeader4 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.phoneCodeHeader5 {
  color: black;
  font-size: 16px;
  font-family: Barlow;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.phoneCodeVerify {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.phoneCodeVerify2 {
  align-self: stretch;
  padding-top: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.phoneCodeVerify3 {
  color: black;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

.phoneCodeVerify4 {
  align-self: stretch;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.phoneCodeVerify5 {
  flex: 1 1 0;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.phoneCodeInput {
  padding: 12px;
  border-radius: 5px;
  outline: 1px #676869 solid;
  outline-offset: -0.50px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
  border: none;
  height: 47px;
}

.phoneCodeInput2 {
  font-size: 18px;
  font-family: Barlow;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 5px;
  word-wrap: break-word;
}

.phoneCodeButton {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: black;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  border: none;
  height: 47px;
}

.phoneCodeButton2 {
  text-align: center;
  color: #E7E8E9;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 600;
  line-height: 20px;
  word-wrap: break-word;
}

/*
888    888 8888888888        d8888 8888888b.  8888888888 8888888b.
888    888 888              d88888 888  "Y88b 888        888   Y88b
888    888 888             d88P888 888    888 888        888    888
8888888888 8888888        d88P 888 888    888 8888888    888   d88P
888    888 888           d88P  888 888    888 888        8888888P"
888    888 888          d88P   888 888    888 888        888 T88b
888    888 888         d8888888888 888  .d88P 888        888  T88b
888    888 8888888888 d88P     888 8888888P"  8888888888 888   T88b
*/
.optionBar {
  background: #F6F6F6;
  background: __preheaderBackgroundColor__;
  text-align: right;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #404040;
  color: __preheaderTextColor__;
  font-size: 85%;
  padding: 0.5em 0;
}
.optionBar:hover, .optionBar:active {
  color: #000000;
}
.optionBar .phoneCenter {
  display: none;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .optionBar {
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    margin-top: -40px;
  }
  .optionBar.mobileActive {
    margin-top: 0;
  }
  .optionBar .languageSelect {
    display: none;
  }
  .optionBar .myFavorites {
    display: none;
  }
  .optionBar .help {
    display: none;
  }
  .optionBar .userInfo {
    width: 100%;
    margin-left: 0;
    font-weight: 300;
  }
  .optionBar .userInfo .mediaName {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .optionBar {
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    margin-top: -35px;
  }
  .optionBar.mobileActive {
    margin-top: 0;
  }
  .optionBar .languageSelect {
    display: none;
  }
  .optionBar .myFavorites {
    display: none;
  }
  .optionBar .help {
    display: none;
  }
  .optionBar .userInfo {
    width: 100%;
    margin-left: 0;
    font-weight: 300;
  }
  .optionBar .userInfo .mediaName {
    margin-right: 20px;
  }
}

.optionBar div div {
  display: inline-block;
  text-decoration: none;
  margin-left: 1em;
}

.optionBar .endorIcon, .optionBar .profile-options li:before, .profile-options .optionBar li:before, .optionBar .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .optionBar i, .optionBar .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .optionBar i, .optionBar .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .optionBar i,
.optionBar .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .optionBar i,
.optionBar .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .optionBar i,
.optionBar .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .optionBar i, .optionBar .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .optionBar i,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i, .optionBar .mobile-nav .menu li a:after, .mobile-nav .menu li .optionBar a:after {
  font-size: 140%;
  color: #404040;
  color: __preheaderIconColor__;
}

.optionBar .endorIcon:hover, .optionBar .profile-options li:hover:before, .profile-options .optionBar li:hover:before, .optionBar .endor-form .pw-match-icon.pw-normal i:hover, .endor-form .pw-match-icon.pw-normal .optionBar i:hover, .optionBar .endor-form .pw-match-icon.pw-strong i:hover, .endor-form .pw-match-icon.pw-strong .optionBar i:hover, .optionBar .endor-form .pw-match-icon.pw-weak i:hover, .endor-form .pw-match-icon.pw-weak .optionBar i:hover,
.optionBar .endor-form .pw-strength-icon.pw-normal i:hover,
.endor-form .pw-strength-icon.pw-normal .optionBar i:hover,
.optionBar .endor-form .pw-strength-icon.pw-strong i:hover,
.endor-form .pw-strength-icon.pw-strong .optionBar i:hover,
.optionBar .endor-form .pw-strength-icon.pw-weak i:hover,
.endor-form .pw-strength-icon.pw-weak .optionBar i:hover, .optionBar .endor-form .field-error .pw-match-icon.input-icon i:hover, .endor-form .field-error .pw-match-icon.input-icon .optionBar i:hover,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i:hover,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i:hover, .optionBar .mobile-nav .menu li a:hover:after, .mobile-nav .menu li .optionBar a:hover:after, .optionBar .endorIcon:visited, .optionBar .profile-options li:visited:before, .profile-options .optionBar li:visited:before, .optionBar .endor-form .pw-match-icon.pw-normal i:visited, .endor-form .pw-match-icon.pw-normal .optionBar i:visited, .optionBar .endor-form .pw-match-icon.pw-strong i:visited, .endor-form .pw-match-icon.pw-strong .optionBar i:visited, .optionBar .endor-form .pw-match-icon.pw-weak i:visited, .endor-form .pw-match-icon.pw-weak .optionBar i:visited,
.optionBar .endor-form .pw-strength-icon.pw-normal i:visited,
.endor-form .pw-strength-icon.pw-normal .optionBar i:visited,
.optionBar .endor-form .pw-strength-icon.pw-strong i:visited,
.endor-form .pw-strength-icon.pw-strong .optionBar i:visited,
.optionBar .endor-form .pw-strength-icon.pw-weak i:visited,
.endor-form .pw-strength-icon.pw-weak .optionBar i:visited, .optionBar .endor-form .field-error .pw-match-icon.input-icon i:visited, .endor-form .field-error .pw-match-icon.input-icon .optionBar i:visited,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i:visited,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i:visited, .optionBar .mobile-nav .menu li a:visited:after, .mobile-nav .menu li .optionBar a:visited:after {
  color: #000000;
  outline: 0;
}

.optionBar .endorIcon:active, .optionBar .profile-options li:active:before, .profile-options .optionBar li:active:before, .optionBar .endor-form .pw-match-icon.pw-normal i:active, .endor-form .pw-match-icon.pw-normal .optionBar i:active, .optionBar .endor-form .pw-match-icon.pw-strong i:active, .endor-form .pw-match-icon.pw-strong .optionBar i:active, .optionBar .endor-form .pw-match-icon.pw-weak i:active, .endor-form .pw-match-icon.pw-weak .optionBar i:active,
.optionBar .endor-form .pw-strength-icon.pw-normal i:active,
.endor-form .pw-strength-icon.pw-normal .optionBar i:active,
.optionBar .endor-form .pw-strength-icon.pw-strong i:active,
.endor-form .pw-strength-icon.pw-strong .optionBar i:active,
.optionBar .endor-form .pw-strength-icon.pw-weak i:active,
.endor-form .pw-strength-icon.pw-weak .optionBar i:active, .optionBar .endor-form .field-error .pw-match-icon.input-icon i:active, .endor-form .field-error .pw-match-icon.input-icon .optionBar i:active,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i:active,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i:active, .optionBar .mobile-nav .menu li a:active:after, .mobile-nav .menu li .optionBar a:active:after {
  border: 0;
}

.optionBar .languageSelect {
  position: relative;
}

.optionBar .endor-globe {
  position: absolute;
  top: 1px;
}

.optionBar a {
  color: #404040;
  color: __preheaderTextColor__;
}
.optionBar a.approvalLink {
  padding-right: 5px;
}
.optionBar a.approvalLink span {
  display: inline-block;
  border-radius: 20px;
  background: #AAAAAA;
  background: __preheaderIconColor__;
  color: #FFFFFF;
  color: __preheaderBackgroundColor__;
  min-width: 1.3em;
  text-align: center;
  padding-right: 0.2em;
  padding-left: 0.2em;
}

.optionBar a:hover, .optionBar a:visited {
  text-decoration: none;
  color: #000000;
}

.optionBar a:active {
  color: #000000;
  outline: 0;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  min-height: inherit;
}

.navbar-collapse {
  clear: both;
  padding-left: 0;
  margin-bottom: 1.5em;
  font-weight: bold;
}

.navbar-collapse a {
  color: #808080;
  font-size: 1em;
  padding-right: 2em;
  margin-right: 2em;
  -webkit-font-smoothing: antialiased;
}

.navbar-collapse a:last-child {
  border: none;
}

.navbar-header {
  -webkit-transition: all 250ms;
  /* Safari */
  transition: all 250ms;
}

.navbar-brand {
  height: auto;
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media only screen and (max-width: 667px) {
  .navbar-brand {
    padding: 0;
  }
}

.navbar-brand img {
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .navbar-brand img {
    text-decoration: none;
  }
}

@media only screen and (max-width: 667px) {
  .noNav .navbar-brand img {
    width: 40%;
  }
}

.userInfo {
  color: #808080;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}
.userInfo .userName {
  padding-right: 15px;
}

.optionBar .userDrawer {
  position: absolute;
  right: -2em;
  width: 15em;
  background: #F6F6F6;
  z-index: 9;
  text-align: left;
  padding: 0 1em;
  display: none;
  width: 15em;
}

.optionBar .userDrawer h2 {
  font-size: 125%;
  border-bottom: solid 1px #CCCCCC;
  padding-bottom: 0.75em;
  margin-bottom: 0;
}

.ontraMsg {
  display: none;
}

.navbar .container {
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (min-width: 767px) {
  .navbar .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.navbar .container .navbar-header {
  padding-left: 15px;
}
@media only screen and (min-width: 767px) {
  .navbar .container .navbar-header {
    padding-left: 0;
  }
}
@media only screen and (max-width: 667px) {
  .navbar .container .navbar-header {
    margin: 0;
  }
}
.navbar .container .shopFunctions {
  float: right;
  font-size: 275%;
  margin-top: 0.4em;
  margin-top: 0.8em;
  position: relative;
  width: 23%;
}
.navbar .container .shopFunctions .endorIcon, .navbar .container .shopFunctions .profile-options li:before, .profile-options .navbar .container .shopFunctions li:before, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .navbar .container .shopFunctions i, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .navbar .container .shopFunctions i, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .navbar .container .shopFunctions i,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .navbar .container .shopFunctions i,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .navbar .container .shopFunctions i,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .navbar .container .shopFunctions i, .navbar .container .shopFunctions .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .navbar .container .shopFunctions i,
.navbar .container .shopFunctions .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .navbar .container .shopFunctions i, .navbar .container .shopFunctions .mobile-nav .menu li a:after, .mobile-nav .menu li .navbar .container .shopFunctions a:after {
  color: #404040;
  color: __largeIconColor__;
}
.navbar .container .shopFunctions .endorIcon:hover, .navbar .container .shopFunctions .profile-options li:hover:before, .profile-options .navbar .container .shopFunctions li:hover:before, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-normal i:hover, .endor-form .pw-match-icon.pw-normal .navbar .container .shopFunctions i:hover, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-strong i:hover, .endor-form .pw-match-icon.pw-strong .navbar .container .shopFunctions i:hover, .navbar .container .shopFunctions .endor-form .pw-match-icon.pw-weak i:hover, .endor-form .pw-match-icon.pw-weak .navbar .container .shopFunctions i:hover,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-normal i:hover,
.endor-form .pw-strength-icon.pw-normal .navbar .container .shopFunctions i:hover,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-strong i:hover,
.endor-form .pw-strength-icon.pw-strong .navbar .container .shopFunctions i:hover,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-weak i:hover,
.endor-form .pw-strength-icon.pw-weak .navbar .container .shopFunctions i:hover, .navbar .container .shopFunctions .endor-form .field-error .pw-match-icon.input-icon i:hover, .endor-form .field-error .pw-match-icon.input-icon .navbar .container .shopFunctions i:hover,
.navbar .container .shopFunctions .endor-form .field-error .pw-strength-icon.input-icon i:hover,
.endor-form .field-error .pw-strength-icon.input-icon .navbar .container .shopFunctions i:hover, .navbar .container .shopFunctions .mobile-nav .menu li a:hover:after, .mobile-nav .menu li .navbar .container .shopFunctions a:hover:after,
.navbar .container .shopFunctions .endorIcon:active,
.navbar .container .shopFunctions .profile-options li:active:before,
.profile-options .navbar .container .shopFunctions li:active:before,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-normal i:active,
.endor-form .pw-match-icon.pw-normal .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-strong i:active,
.endor-form .pw-match-icon.pw-strong .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-weak i:active,
.endor-form .pw-match-icon.pw-weak .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-normal i:active,
.endor-form .pw-strength-icon.pw-normal .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-strong i:active,
.endor-form .pw-strength-icon.pw-strong .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-weak i:active,
.endor-form .pw-strength-icon.pw-weak .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .field-error .pw-match-icon.input-icon i:active,
.endor-form .field-error .pw-match-icon.input-icon .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .endor-form .field-error .pw-strength-icon.input-icon i:active,
.endor-form .field-error .pw-strength-icon.input-icon .navbar .container .shopFunctions i:active,
.navbar .container .shopFunctions .mobile-nav .menu li a:active:after,
.mobile-nav .menu li .navbar .container .shopFunctions a:active:after,
.navbar .container .shopFunctions .endorIcon:focus,
.navbar .container .shopFunctions .profile-options li:focus:before,
.profile-options .navbar .container .shopFunctions li:focus:before,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-normal i:focus,
.endor-form .pw-match-icon.pw-normal .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-strong i:focus,
.endor-form .pw-match-icon.pw-strong .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .pw-match-icon.pw-weak i:focus,
.endor-form .pw-match-icon.pw-weak .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-normal i:focus,
.endor-form .pw-strength-icon.pw-normal .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-strong i:focus,
.endor-form .pw-strength-icon.pw-strong .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .pw-strength-icon.pw-weak i:focus,
.endor-form .pw-strength-icon.pw-weak .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .field-error .pw-match-icon.input-icon i:focus,
.endor-form .field-error .pw-match-icon.input-icon .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .endor-form .field-error .pw-strength-icon.input-icon i:focus,
.endor-form .field-error .pw-strength-icon.input-icon .navbar .container .shopFunctions i:focus,
.navbar .container .shopFunctions .mobile-nav .menu li a:focus:after,
.mobile-nav .menu li .navbar .container .shopFunctions a:focus:after {
  color: #000000;
  color: __largeIconColor__;
}
@media only screen and (min-width: 315px) and (max-width: 419px) {
  .navbar .container .shopFunctions {
    width: 100%;
    font-size: 22px;
  }
}
@media only screen and (min-width: 420px) and (max-width: 667px) {
  .navbar .container .shopFunctions {
    width: 78%;
    font-size: 22px;
  }
}
@media only screen and (min-width: 667px) and (max-width: 989px) {
  .navbar .container .shopFunctions {
    width: 30%;
    font-size: 240%;
  }
}
@media only screen and (min-width: 667px) and (max-width: 768px) {
  .navbar .container .shopFunctions {
    width: 63%;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .navbar .container .shopFunctions {
    width: 46%;
  }
}

.optionBar .userDrawer a {
  display: block;
}

.optionBar .userDrawer a:hover {
  font-weight: 600;
}

.optionBar .userDrawer h3 {
  border-top: solid 1px #CCCCCC;
  font-size: 100%;
  padding: 1em 0;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
}

.userInfo .firstName {
  margin-right: 10px;
}

.userInfo .mediaName {
  margin-right: 10px;
}

.userInfo .mediaAmount {
  color: __preheaderTextColor__;
}

.shopFunctions .search {
  display: inline-block;
  width: 45%;
}
@media only screen and (min-width: 315px) and (max-width: 419px) {
  .shopFunctions .search {
    width: 27%;
    text-align: right;
  }
}
@media only screen and (min-width: 420px) and (max-width: 667px) {
  .shopFunctions .search {
    width: 30%;
    text-align: right;
  }
}
@media only screen and (min-width: 667px) and (max-width: 989px) {
  .shopFunctions .search {
    width: 48%;
    text-align: right;
  }
}
@media only screen and (min-width: 667px) and (max-width: 768px) {
  .shopFunctions .search {
    width: 33%;
    text-align: right;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .shopFunctions .search {
    width: 50%;
    text-align: right;
  }
}

.shopFunctions .cart {
  display: inline-block;
  position: relative;
  transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.shopFunctions .cart .itemCount {
  display: block;
  position: absolute;
  font-size: 40%;
  color: #FFFFFF;
  background: #2A843C;
  text-align: center;
  border-radius: 1em;
  height: 1.3em;
  top: 0;
  left: 2em;
  padding: 0 0.4em;
}

.stuckNav .navbar-header {
  width: 35%;
}

.stuckNav .navbar-brand {
  width: 100%;
  padding-bottom: 1em;
  padding-top: 1em;
}

.stuckNav .userInfo h2.mediaName span.mediaAmount {
  font-size: 100%;
  font-weight: 400;
}

.stuckNav .shopFunctions {
  font-size: 210%;
  margin-top: 0.2em;
}

.stuckNav #navbar {
  margin-bottom: 10px;
}

.stuckNav .userInfo {
  margin-top: 0;
  padding-top: 0.75em;
}

.stuckNav .navbar-collapse a {
  padding-right: 1em;
  margin-right: 1em;
}

@media (min-width: 768px) {
  .stickyHeader.stickOn {
    position: fixed;
    top: -50%;
    left: 0;
    z-index: 9998;
    background: #FFFFFF;
    width: 100%;
  }
}
.optionBar .endorIcon.endor-globe.en, .optionBar .profile-options li.endor-globe.en:before, .profile-options .optionBar li.endor-globe.en:before, .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.en, .endor-form .pw-match-icon.pw-normal .optionBar i.endor-globe.en, .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.en, .endor-form .pw-match-icon.pw-strong .optionBar i.endor-globe.en, .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.en, .endor-form .pw-match-icon.pw-weak .optionBar i.endor-globe.en,
.optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.en,
.endor-form .pw-strength-icon.pw-normal .optionBar i.endor-globe.en,
.optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.en,
.endor-form .pw-strength-icon.pw-strong .optionBar i.endor-globe.en,
.optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.en,
.endor-form .pw-strength-icon.pw-weak .optionBar i.endor-globe.en, .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.en, .endor-form .field-error .pw-match-icon.input-icon .optionBar i.endor-globe.en,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.en,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i.endor-globe.en, .optionBar .mobile-nav .menu li a.endor-globe.en:after, .mobile-nav .menu li .optionBar a.endor-globe.en:after {
  left: 12px;
}
.optionBar .endorIcon.endor-globe.fr, .optionBar .profile-options li.endor-globe.fr:before, .profile-options .optionBar li.endor-globe.fr:before, .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.fr, .endor-form .pw-match-icon.pw-normal .optionBar i.endor-globe.fr, .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.fr, .endor-form .pw-match-icon.pw-strong .optionBar i.endor-globe.fr, .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.fr, .endor-form .pw-match-icon.pw-weak .optionBar i.endor-globe.fr,
.optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-normal .optionBar i.endor-globe.fr,
.optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-strong .optionBar i.endor-globe.fr,
.optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-weak .optionBar i.endor-globe.fr, .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.fr, .endor-form .field-error .pw-match-icon.input-icon .optionBar i.endor-globe.fr,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.fr,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i.endor-globe.fr, .optionBar .mobile-nav .menu li a.endor-globe.fr:after, .mobile-nav .menu li .optionBar a.endor-globe.fr:after {
  left: 48px;
}
.optionBar .endorIcon.endor-globe.cn, .optionBar .profile-options li.endor-globe.cn:before, .profile-options .optionBar li.endor-globe.cn:before, .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.cn, .endor-form .pw-match-icon.pw-normal .optionBar i.endor-globe.cn, .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.cn, .endor-form .pw-match-icon.pw-strong .optionBar i.endor-globe.cn, .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.cn, .endor-form .pw-match-icon.pw-weak .optionBar i.endor-globe.cn,
.optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-normal .optionBar i.endor-globe.cn,
.optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-strong .optionBar i.endor-globe.cn,
.optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-weak .optionBar i.endor-globe.cn, .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.cn, .endor-form .field-error .pw-match-icon.input-icon .optionBar i.endor-globe.cn,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.cn,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i.endor-globe.cn, .optionBar .mobile-nav .menu li a.endor-globe.cn:after, .mobile-nav .menu li .optionBar a.endor-globe.cn:after {
  left: 37px;
}
.optionBar .endorIcon.endor-globe.es, .optionBar .profile-options li.endor-globe.es:before, .profile-options .optionBar li.endor-globe.es:before, .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.es, .endor-form .pw-match-icon.pw-normal .optionBar i.endor-globe.es, .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.es, .endor-form .pw-match-icon.pw-strong .optionBar i.endor-globe.es, .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.es, .endor-form .pw-match-icon.pw-weak .optionBar i.endor-globe.es,
.optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.es,
.endor-form .pw-strength-icon.pw-normal .optionBar i.endor-globe.es,
.optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.es,
.endor-form .pw-strength-icon.pw-strong .optionBar i.endor-globe.es,
.optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.es,
.endor-form .pw-strength-icon.pw-weak .optionBar i.endor-globe.es, .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.es, .endor-form .field-error .pw-match-icon.input-icon .optionBar i.endor-globe.es,
.optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.es,
.endor-form .field-error .pw-strength-icon.input-icon .optionBar i.endor-globe.es, .optionBar .mobile-nav .menu li a.endor-globe.es:after, .mobile-nav .menu li .optionBar a.endor-globe.es:after {
  left: 29px;
}

.lt-ie9 .optionBar .endorIcon.endor-globe, .lt-ie9 .optionBar .profile-options li.endor-globe:before, .profile-options .lt-ie9 .optionBar li.endor-globe:before, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe, .endor-form .pw-match-icon.pw-normal .lt-ie9 .optionBar i.endor-globe, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe, .endor-form .pw-match-icon.pw-strong .lt-ie9 .optionBar i.endor-globe, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe, .endor-form .pw-match-icon.pw-weak .lt-ie9 .optionBar i.endor-globe,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe,
.endor-form .pw-strength-icon.pw-normal .lt-ie9 .optionBar i.endor-globe,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe,
.endor-form .pw-strength-icon.pw-strong .lt-ie9 .optionBar i.endor-globe,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe,
.endor-form .pw-strength-icon.pw-weak .lt-ie9 .optionBar i.endor-globe, .lt-ie9 .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe, .endor-form .field-error .pw-match-icon.input-icon .lt-ie9 .optionBar i.endor-globe,
.lt-ie9 .optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe,
.endor-form .field-error .pw-strength-icon.input-icon .lt-ie9 .optionBar i.endor-globe, .lt-ie9 .optionBar .mobile-nav .menu li a.endor-globe:after, .mobile-nav .menu li .lt-ie9 .optionBar a.endor-globe:after {
  left: 6px;
}
.lt-ie9 .optionBar .endorIcon.endor-globe.en, .lt-ie9 .optionBar .profile-options li.endor-globe.en:before, .profile-options .lt-ie9 .optionBar li.endor-globe.en:before, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.en, .endor-form .pw-match-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.en, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.en, .endor-form .pw-match-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.en, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.en, .endor-form .pw-match-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.en,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.en,
.endor-form .pw-strength-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.en,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.en,
.endor-form .pw-strength-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.en,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.en,
.endor-form .pw-strength-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.en, .lt-ie9 .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.en, .endor-form .field-error .pw-match-icon.input-icon .lt-ie9 .optionBar i.endor-globe.en,
.lt-ie9 .optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.en,
.endor-form .field-error .pw-strength-icon.input-icon .lt-ie9 .optionBar i.endor-globe.en, .lt-ie9 .optionBar .mobile-nav .menu li a.endor-globe.en:after, .mobile-nav .menu li .lt-ie9 .optionBar a.endor-globe.en:after {
  left: 6px;
}
.lt-ie9 .optionBar .endorIcon.endor-globe.fr, .lt-ie9 .optionBar .profile-options li.endor-globe.fr:before, .profile-options .lt-ie9 .optionBar li.endor-globe.fr:before, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.fr, .endor-form .pw-match-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.fr, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.fr, .endor-form .pw-match-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.fr, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.fr, .endor-form .pw-match-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.fr,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.fr,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.fr,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.fr,
.endor-form .pw-strength-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.fr, .lt-ie9 .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.fr, .endor-form .field-error .pw-match-icon.input-icon .lt-ie9 .optionBar i.endor-globe.fr,
.lt-ie9 .optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.fr,
.endor-form .field-error .pw-strength-icon.input-icon .lt-ie9 .optionBar i.endor-globe.fr, .lt-ie9 .optionBar .mobile-nav .menu li a.endor-globe.fr:after, .mobile-nav .menu li .lt-ie9 .optionBar a.endor-globe.fr:after {
  left: 42px;
}
.lt-ie9 .optionBar .endorIcon.endor-globe.cn, .lt-ie9 .optionBar .profile-options li.endor-globe.cn:before, .profile-options .lt-ie9 .optionBar li.endor-globe.cn:before, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.cn, .endor-form .pw-match-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.cn, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.cn, .endor-form .pw-match-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.cn, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.cn, .endor-form .pw-match-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.cn,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.cn,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.cn,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.cn,
.endor-form .pw-strength-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.cn, .lt-ie9 .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.cn, .endor-form .field-error .pw-match-icon.input-icon .lt-ie9 .optionBar i.endor-globe.cn,
.lt-ie9 .optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.cn,
.endor-form .field-error .pw-strength-icon.input-icon .lt-ie9 .optionBar i.endor-globe.cn, .lt-ie9 .optionBar .mobile-nav .menu li a.endor-globe.cn:after, .mobile-nav .menu li .lt-ie9 .optionBar a.endor-globe.cn:after {
  left: 31px;
}
.lt-ie9 .optionBar .endorIcon.endor-globe.es, .lt-ie9 .optionBar .profile-options li.endor-globe.es:before, .profile-options .lt-ie9 .optionBar li.endor-globe.es:before, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-normal i.endor-globe.es, .endor-form .pw-match-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.es, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-strong i.endor-globe.es, .endor-form .pw-match-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.es, .lt-ie9 .optionBar .endor-form .pw-match-icon.pw-weak i.endor-globe.es, .endor-form .pw-match-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.es,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-normal i.endor-globe.es,
.endor-form .pw-strength-icon.pw-normal .lt-ie9 .optionBar i.endor-globe.es,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-strong i.endor-globe.es,
.endor-form .pw-strength-icon.pw-strong .lt-ie9 .optionBar i.endor-globe.es,
.lt-ie9 .optionBar .endor-form .pw-strength-icon.pw-weak i.endor-globe.es,
.endor-form .pw-strength-icon.pw-weak .lt-ie9 .optionBar i.endor-globe.es, .lt-ie9 .optionBar .endor-form .field-error .pw-match-icon.input-icon i.endor-globe.es, .endor-form .field-error .pw-match-icon.input-icon .lt-ie9 .optionBar i.endor-globe.es,
.lt-ie9 .optionBar .endor-form .field-error .pw-strength-icon.input-icon i.endor-globe.es,
.endor-form .field-error .pw-strength-icon.input-icon .lt-ie9 .optionBar i.endor-globe.es, .lt-ie9 .optionBar .mobile-nav .menu li a.endor-globe.es:after, .mobile-nav .menu li .lt-ie9 .optionBar a.endor-globe.es:after {
  left: 23px;
}

.globalAlert {
  width: 100%;
  padding: 20px;
  background: #000000;
  z-index: 100;
  display: none;
  margin-bottom: 30px;
}
.globalAlert.info {
  background: #C04E02;
  border-radius: 2px;
}
.globalAlert .gaContent {
  display: block;
  text-align: left;
}
.globalAlert .gaContent p {
  width: 100%;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 20px;
  margin: 0px !important;
}
.globalAlert .gaContent p img {
  margin-right: 5px;
  width: 14px;
}
@media only screen and (max-width: 667px) {
  .globalAlert {
    opacity: 50;
  }
}

.ontra-link {
  color: #000000;
}

.languageClone {
  background: #FFFF00;
  display: none;
}

.autocomplete-items {
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  padding-left: 66px;
  z-index: -1;
}

@media only screen and (min-width: 315px) and (max-width: 666px) {
  .autocomplete-items {
    padding-left: 30px;
  }
}
#autocomplete-list_new {
  position: fixed;
  left: 0;
  width: 100%;
  margin-top: 10px;
}

.slider_auto {
  overflow-y: hidden;
  margin-top: 110px;
  transition: margin-top 0.68s ease;
  z-index: -1;
}

.slider-closed {
  margin-top: 0;
  transition: margin-top 0.8s ease;
  z-index: 10;
  background: #FFFFFF;
}

.output_list {
  margin-left: 33px;
}

@media only screen and (max-width: 667px) {
  .output_list {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 668px) {
  .output_list {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  .output_list {
    margin-left: 32px;
  }
}
.container_new div:hover {
  background-color: #E9E9E9;
}

.autocomplete-active {
  background-color: #E9E9E9 !important;
  color: #FFFFFF;
}

.search_position {
  position: relative;
}

@media (min-width: 769px) {
  .myFavorites {
    display: none;
  }
}
@media (max-width: 768px) {
  .myFavorites {
    width: auto;
    display: inline-block;
  }
}
html.register .skip-main {
  display: none;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -9999;
}

a.skip-main:focus, a.skip-main:active {
  color: #000000;
  background-color: #E6E6E6;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2em;
  z-index: 9999;
}

/*****************Mastery Type Selection in Header - Init*************************/
.market-img {
  width: 35px;
  position: relative;
  bottom: 20px;
}

@media (min-width: 576px) {
  .market-img {
    width: 35px;
    position: relative;
    bottom: 20px;
  }
}
@media (max-width: 575px) {
  .market-img {
    width: 35px;
    position: relative;
    bottom: 30px;
  }
}
.master-align {
  position: absolute;
  width: max-content;
  color: __preheaderTextColor__;
  color: inherit;
}

.market-dropdown-arrow {
  float: right !important;
  padding: 7px 2px 2px 2px !important;
  color: #ffffff;
  position: relative;
  bottom: 2px;
}

.top-markettype {
  width: 16px;
  margin-right: 4px;
}

.eicon-marketplace-check-align {
  position: relative;
  bottom: 15px;
  margin-left: 25px;
}

.eicon-marketplace-link-align {
  rotate: 0deg;
  position: relative;
  bottom: 6px;
}

.marketplace-list > .marketplace-list-item {
  color: #58595A;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 19px;
  display: flex;
  padding: 6px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid #ffffff;
}

.market-places_dropdown > a[target=_blank]:link,
.market-places_dropdown > a[target=_blank]:hover,
.market-places_dropdown > a[target=_blank]:visited,
.market-places_dropdown > a[target=_blank]:active,
.market-places_dropdown > a[target=_blank]:focus {
  color: __preheaderTextColor__ !important;
}

.marketplace-list-item > a[target=_blank]:link {
  color: #58595A;
  text-decoration: none;
}

.icon-active-details {
  width: 10px;
  position: relative;
  top: 4px;
}

.desc {
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.marketplace-list {
  padding: 10px;
  color: black;
  border-radius: 5px;
}

.type-icon {
  position: relative;
  padding-right: 10px;
  width: 15%;
  top: 10px;
}

.type-detail {
  width: 75%;
}
@media (min-width: 576px) {
  .type-detail {
    margin-left: -8px;
  }
}
@media (max-width: 575px) {
  .type-detail {
    margin-left: 0px;
  }
}

.type-icon, .type-detail, .icon-active-details {
  display: inline-block;
}

.marketplaces.active {
  display: block;
  z-index: 999999;
}

.marketplaces {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 40px;
  left: 10px;
  height: auto;
  background: #FFFFFF;
  text-align: left;
  z-index: 999999;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  color: inherit;
  color: __largeIconColor__;
}

.marketplace-list-item:hover, .marketplace-list-item:focus, .marketplace-list-item.active {
  background: #F2F4F6;
  color: #000000 !important;
  border-radius: 4px;
}

.marketplaces::after,
.marketplaces::before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.marketplaces::before {
  border-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-width: 10px;
  margin-left: -11px;
}

.marketplaces::after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #FFFFFF;
  border-width: 10px;
  margin-left: -10px;
}

.marketplace-access-link:link,
.marketplace-access-link:visited,
.marketplace-access-link:hover,
.marketplace-access-link:focus {
  color: #58595A !important;
  text-decoration: none;
  width: 360px;
}
@media (max-width: 575px) {
  .marketplace-access-link:link,
  .marketplace-access-link:visited,
  .marketplace-access-link:hover,
  .marketplace-access-link:focus {
    width: 260px;
  }
}
@media (min-width: 576px) {
  .marketplace-access-link:link,
  .marketplace-access-link:visited,
  .marketplace-access-link:hover,
  .marketplace-access-link:focus {
    width: 360px;
  }
}

.marketplace-access-link:active {
  color: #000000 !important;
  text-decoration: none;
}

.market-default-check-align {
  position: relative;
  right: 32px;
  top: 10px;
}

.mastery-align-header-icon {
  margin-bottom: 6px;
}

.master {
  color: #ffffff !important;
  padding: 5px 12px 6px 12px;
}

.mp-dropdown-align {
  z-index: 1000;
  position: absolute;
  top: 0px;
}

/*****************Mastery Type Selection in Header - End*************************/
.register-arrow-align {
  position: absolute;
  right: 0px;
  top: 10px;
}

.address-form-container {
  width: auto;
  margin: 20px auto;
}

.address-verify-form-group {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

.address-verify-form-group label {
  min-width: 120px;
  /* Adjust the width based on your needs */
  font-weight: bold;
}

.address-verify-form-group span {
  margin-left: 10px;
  /* Adjust the spacing between label and value */
}

.mobile-navigation .secondary-navigation {
  text-decoration: none;
  font-size: 16px;
}

.switch-marketplace {
  font-size: 16px;
}

@media only screen and (max-width: 640px) {
  .mobile-sty-certBalance {
    margin-top: 12px;
  }
}
.applied-info-note {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 25px;
  margin-top: 10px;
  margin-left: 8px;
}

.cert-container .grm-btn-secondary:hover {
  color: #fff;
}

/*
8888888888 .d88888b.   .d88888b. 88888888888 8888888888 8888888b.
888       d88P" "Y88b d88P" "Y88b    888     888        888   Y88b
888       888     888 888     888    888     888        888    888
8888888   888     888 888     888    888     8888888    888   d88P
888       888     888 888     888    888     888        8888888P"
888       888     888 888     888    888     888        888 T88b
888       Y88b. .d88P Y88b. .d88P    888     888        888  T88b
888        "Y88888P"   "Y88888P"     888     8888888888 888   T88b
*/
.custom-focus-outline {
  outline: 2px dashed #595959 !important;
}

.mobile-footer-menu {
  position: static !important;
}

footer {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
  color: __footerTextColor__;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
footer .footer-links__wrapper {
  background: #000000;
  background: __footerBackgroundColor__;
}
footer nav.footer-nav {
  display: table;
  margin: 0 auto;
  padding: 44px 0;
}
footer nav.footer-nav ul.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
}
footer nav.footer-nav ul.footer-nav-list li {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  padding: 0 30px;
  margin: 10px 0;
}
footer nav.footer-nav ul.footer-nav-list li img.grm-png-icon {
  width: 10px;
}
footer nav.footer-nav ul.footer-nav-list li select {
  color: #000000;
  cursor: pointer;
}
footer nav.footer-nav ul.footer-nav-list li span.customSelect {
  padding-right: 3px;
}
footer nav.footer-nav ul.footer-nav-list li span.customSelect.languageSelectFooter:after,
footer nav.footer-nav ul.footer-nav-list li span.customSelect.languageSelectHeader:after {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  content: '\e833';
  position: relative;
  color: #757575;
  font-size: 9px;
  left: 7px;
  top: 0px;
  display: none;
}
footer nav.footer-nav ul.footer-nav-list li .footer-copyright {
  display: inline;
  color: inherit;
  color: __footerTextColor__;
}
footer nav.footer-nav ul.footer-nav-list li a {
  color: __footerTextColor__;
  text-decoration: none;
}
footer nav.footer-nav ul.footer-nav-list li a:focus {
  outline: 0 !important;
}
footer div.chat-support .chat-online .chat-popover__wrapper a.chat-popover__title {
  display: inline;
  font-size: 19px;
  line-height: 36px;
  text-decoration: none;
  color: #006618;
  text-align: center;
  height: 40px;
  width: 80px;
  border: 2px solid #000000;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 8px rgba(57, 200, 112, 0.2);
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 998;
}
footer div.chat-support .chat-online .chat-popover__wrapper a.chat-popover__title:focus {
  outline: 0 !important;
}
footer div.chat-support .chat-online .chat-popover__wrapper a.chat-popover__title span {
  color: #006618;
  font-size: 16px;
  font-weight: bold;
}
footer div.chat-support .chat-online .chat-popover__wrapper a.chat-popover__title img.grm-png-icon {
  width: 19px;
  height: 19px;
  position: relative;
  top: -2px;
}
footer div.chat-support .chat-offline .chat-popover__wrapper a.chat-popover__title {
  display: inline;
  font-size: 19px;
  line-height: 36px;
  text-decoration: none;
  color: #D0023E;
  text-align: center;
  height: 40px;
  width: auto;
  border: 2px solid #000000;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px 8px rgba(208, 2, 62, 0.2);
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 998;
  padding: 0px 6px;
}
footer div.chat-support .chat-offline .chat-popover__wrapper a.chat-popover__title:focus {
  outline: 0 !important;
}
footer div.chat-support .chat-offline .chat-popover__wrapper a.chat-popover__title span {
  color: #000000;
  font-size: 16px;
  font-weight: bold;
}
footer div.chat-support .chat-offline .chat-popover__wrapper a.chat-popover__title img.grm-png-icon {
  width: 19px;
  height: 19px;
  position: relative;
  top: -2px;
}
footer div.chat-support .chat-offline .chat-popover__wrapper:hover .chat-popover__content {
  opacity: 1;
  visibility: visible;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content {
  opacity: 0;
  visibility: hidden;
  width: 175px;
  position: absolute;
  bottom: 45px;
  right: 0px;
  z-index: 10;
  padding-bottom: 15px;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
  position: fixed;
  bottom: 60px;
  right: 20px;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 10%;
  box-sizing: border-box;
  border: 5px solid #000000;
  border-color: transparent transparent #F8F8F8 #F8F8F8;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  box-shadow: -2px 2px 3px 0px rgba(0, 0, 0, 0.1);
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message {
  padding: 10px;
  font-size: 12px;
  box-shadow: 0 0 5px 2px rgba(120, 120, 120, 0.3);
  background: #FFFFFF;
  color: #000000;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message .chat-offline-title {
  font-weight: bold;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message .chat-offline-time {
  padding-bottom: 5px;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message .chat-offline-help {
  border: 1px solid #000000;
  text-align: center;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message .chat-offline-help a {
  padding: 10px;
  font-weight: bold;
  display: inline-block;
}
footer div.chat-support .chat-offline .chat-popover__wrapper .chat-popover__content .chat-popover__message .chat-offline-help a:focus {
  outline: 0 !important;
}
footer .footer-social__wrapper {
  background-color: #2A2A2A;
}
footer .footer-social__wrapper ul.social-icons-list {
  list-style: none;
  margin: 0;
  padding: 18px 0;
  font-size: 0;
  text-align: center;
}
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item {
  display: inline;
  font-size: 12px;
  line-height: 14px;
  padding: 0 5px;
}
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a {
  text-decoration: none;
  color: #FFFFFF;
  display: inline-block;
}
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a:focus {
  outline: 0 !important;
}
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i.endorIcon, footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i, footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i, footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i,
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i,
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i,
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i, footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i,
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a i {
  font-size: 18px;
}
footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a img.grm-png-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 991.98px) {
  footer nav.footer-nav ul.footer-nav-list li {
    padding: 0px 10px;
  }
}
@media (max-width: 575.98px) {
  footer .footer-links__wrapper {
    height: initial;
  }
  footer nav.footer-nav {
    width: 100%;
    margin: 0;
    padding: 5px 0;
  }
  footer nav.footer-nav .lang-selector--xs {
    width: 50%;
    display: table-cell !important;
  }
  footer nav.footer-nav .lang-selector--xs img.grm-png-icon {
    width: 10px;
  }
  footer nav.footer-nav .lang-selector--xs select {
    color: initial;
    cursor: pointer;
    min-width: 52px;
  }
  footer nav.footer-nav .lang-selector--xs span.customSelect.languageSelectFooter:after,
  footer nav.footer-nav .lang-selector--xs span.customSelect.languageSelectHeader:after {
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    content: '\e833';
    position: relative;
    color: #757575;
    font-size: 9px;
    left: 7px;
    top: 0px;
    display: none;
  }
  footer nav.footer-nav ul.footer-nav-list {
    width: 50%;
    display: table-cell;
    text-align: left;
  }
  footer nav.footer-nav ul.footer-nav-list li {
    display: block;
    padding: 8px 0;
    margin: 0;
  }
  footer div.chat-support {
    right: 10px;
  }
}
.user-is-tabbing footer nav.footer-nav ul.footer-nav-list li span.customSelect.customSelectFocus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing footer nav.footer-nav ul.footer-nav-list li a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing footer div.chat-support .chat-online .chat-popover__wrapper a.chat-popover__title:focus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing footer div.chat-support .chat-offline .chat-popover__wrapper a.chat-popover__title:focus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing footer .footer-social__wrapper ul.social-icons-list li.social-icon-item a:focus {
  outline: 2px dashed #595959 !important;
}

.check-balance-content {
  color: black;
}

.check-balance-title {
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 19px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7e8e9;
}

.cbcheck {
  padding: 12px 10px;
  border: 1px solid #e7e8e9;
  margin-top: 10px;
}

.invalid-error-cer-note {
  color: #d0023e;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 12px;
  margin: 5px 0px 4px -8px;
}

.input-error-cer-border {
  border: 1px solid #d0023e;
}

/*
8888888888 8888888888        d8888 88888888888 888     888 8888888b.  8888888888
888        888              d88888     888     888     888 888   Y88b 888
888        888             d88P888     888     888     888 888    888 888
8888888    8888888        d88P 888     888     888     888 888   d88P 8888888
888        888           d88P  888     888     888     888 8888888P"  888
888        888          d88P   888     888     888     888 888 T88b   888
888        888         d8888888888     888     Y88b. .d88P 888  T88b  888
888        8888888888 d88P     888     888      "Y88888P"  888   T88b 8888888888

 .d8888b.  8888888b.  8888888 8888888b.
d88P  Y88b 888   Y88b   888   888  "Y88b
888    888 888    888   888   888    888
888        888   d88P   888   888    888
888  88888 8888888P"    888   888    888
888    888 888 T88b     888   888    888
Y88b  d88P 888  T88b    888   888  .d88P
 "Y8888P88 888   T88b 8888888 8888888P"
*/
.featureGrid {
  padding: 2em 0;
}
.featureGrid > h2 {
  padding-left: 15px;
  padding-bottom: 0.5em;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

@media (max-width: 1200px) {
  .featuredGrid .container {
    width: 100%;
  }
}
.featuredGrid .container > div {
  clear: both;
  position: relative;
}

.featureGrid .featureGridChooser {
  text-align: center;
  font-size: 150%;
  margin: 0 0 1.25em;
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .featureGrid .featureGridChooser {
    margin-bottom: 2em;
  }
}
.featureGrid .featureGridChooser ul {
  padding-left: 0;
}
.featureGrid .featureGridChooser li {
  list-style-type: none;
  display: inline-block;
}
.featureGrid .featureGridChooser li a {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

.featureGrid .featureGridChooser a {
  color: #757575;
}

.featureGrid .featureGridChooser li.active a {
  color: #000000;
  font-weight: 700;
}

.itemGrid .gridItem {
  transition: all 300ms ease-in;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
}

.featureGrid .gridItem .gridItemInner,
.itemGrid .gridItem .gridItemInner {
  position: relative;
}

.gridItemInner.music .gridItemImage img {
  height: auto !important;
}

.gridItemActions {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.5em;
  width: 95%;
  height: 5em;
  position: absolute;
  bottom: 1em;
  z-index: 10;
  margin-left: 2.5%;
  text-align: center;
  display: none;
  overflow: hidden;
}

.lt-ie9 .gridItemActions {
  background: #CCCCCC;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .gridItemActions {
    display: block !important;
  }
}
.gridItemActions .colorChoices {
  position: absolute;
  left: 15%;
  top: 33%;
  text-decoration: none;
}

.gridItemActions .colorChoices .colorContainer {
  width: 2em;
  height: 2em;
}

.gridItemActions .colorChoices .colorContainer div {
  float: left;
  width: 50%;
  height: 50%;
}

.gridItemActions .colorChoices .colorContainer .color1 {
  background: #FBD75E;
}

.gridItemActions .colorChoices .colorContainer .color2 {
  background: #59C691;
}

.gridItemActions .colorChoices .colorContainer .color3 {
  background: #DB7354;
}

.gridItemActions .colorChoices .colorContainer .color4 {
  background: #78648C;
}

.gridItemActions .colorChoices .colorContainer:hover {
  cursor: pointer;
}

.gridItemActions .addToCart,
.gridItemActions .addToCartLink {
  font-size: 300%;
  position: absolute;
  left: 41%;
  top: 10%;
}

.gridItemActions .addToFavorites {
  font-size: 140%;
  position: absolute;
  top: 27%;
  right: 12%;
}
.gridItemActions .addToFavorites .endor-heart,
.gridItemActions .addToFavorites .endor-heart-filled {
  position: absolute;
  top: 15%;
  right: 12%;
}

.gridItemActions .endorIcon, .gridItemActions .profile-options li:before, .profile-options .gridItemActions li:before, .gridItemActions .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .gridItemActions i, .gridItemActions .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .gridItemActions i, .gridItemActions .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .gridItemActions i,
.gridItemActions .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .gridItemActions i,
.gridItemActions .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .gridItemActions i,
.gridItemActions .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .gridItemActions i, .gridItemActions .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .gridItemActions i,
.gridItemActions .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .gridItemActions i, .gridItemActions .mobile-nav .menu li a:after, .mobile-nav .menu li .gridItemActions a:after {
  color: #404040;
}
.gridItemActions .endorIcon:hover, .gridItemActions .profile-options li:hover:before, .profile-options .gridItemActions li:hover:before, .gridItemActions .endor-form .pw-match-icon.pw-normal i:hover, .endor-form .pw-match-icon.pw-normal .gridItemActions i:hover, .gridItemActions .endor-form .pw-match-icon.pw-strong i:hover, .endor-form .pw-match-icon.pw-strong .gridItemActions i:hover, .gridItemActions .endor-form .pw-match-icon.pw-weak i:hover, .endor-form .pw-match-icon.pw-weak .gridItemActions i:hover,
.gridItemActions .endor-form .pw-strength-icon.pw-normal i:hover,
.endor-form .pw-strength-icon.pw-normal .gridItemActions i:hover,
.gridItemActions .endor-form .pw-strength-icon.pw-strong i:hover,
.endor-form .pw-strength-icon.pw-strong .gridItemActions i:hover,
.gridItemActions .endor-form .pw-strength-icon.pw-weak i:hover,
.endor-form .pw-strength-icon.pw-weak .gridItemActions i:hover, .gridItemActions .endor-form .field-error .pw-match-icon.input-icon i:hover, .endor-form .field-error .pw-match-icon.input-icon .gridItemActions i:hover,
.gridItemActions .endor-form .field-error .pw-strength-icon.input-icon i:hover,
.endor-form .field-error .pw-strength-icon.input-icon .gridItemActions i:hover, .gridItemActions .mobile-nav .menu li a:hover:after, .mobile-nav .menu li .gridItemActions a:hover:after, .gridItemActions .endorIcon:active, .gridItemActions .profile-options li:active:before, .profile-options .gridItemActions li:active:before, .gridItemActions .endor-form .pw-match-icon.pw-normal i:active, .endor-form .pw-match-icon.pw-normal .gridItemActions i:active, .gridItemActions .endor-form .pw-match-icon.pw-strong i:active, .endor-form .pw-match-icon.pw-strong .gridItemActions i:active, .gridItemActions .endor-form .pw-match-icon.pw-weak i:active, .endor-form .pw-match-icon.pw-weak .gridItemActions i:active,
.gridItemActions .endor-form .pw-strength-icon.pw-normal i:active,
.endor-form .pw-strength-icon.pw-normal .gridItemActions i:active,
.gridItemActions .endor-form .pw-strength-icon.pw-strong i:active,
.endor-form .pw-strength-icon.pw-strong .gridItemActions i:active,
.gridItemActions .endor-form .pw-strength-icon.pw-weak i:active,
.endor-form .pw-strength-icon.pw-weak .gridItemActions i:active, .gridItemActions .endor-form .field-error .pw-match-icon.input-icon i:active, .endor-form .field-error .pw-match-icon.input-icon .gridItemActions i:active,
.gridItemActions .endor-form .field-error .pw-strength-icon.input-icon i:active,
.endor-form .field-error .pw-strength-icon.input-icon .gridItemActions i:active, .gridItemActions .mobile-nav .menu li a:active:after, .mobile-nav .menu li .gridItemActions a:active:after {
  color: #000000;
}

.gridItemActions .pointer {
  font-size: 200%;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -0.95em;
  display: none;
}
.gridItemActions .pointer .endorIcon, .gridItemActions .pointer .profile-options li:before, .profile-options .gridItemActions .pointer li:before, .gridItemActions .pointer .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .gridItemActions .pointer i, .gridItemActions .pointer .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .gridItemActions .pointer i, .gridItemActions .pointer .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .gridItemActions .pointer i,
.gridItemActions .pointer .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .gridItemActions .pointer i,
.gridItemActions .pointer .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .gridItemActions .pointer i,
.gridItemActions .pointer .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .gridItemActions .pointer i, .gridItemActions .pointer .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .gridItemActions .pointer i,
.gridItemActions .pointer .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .gridItemActions .pointer i, .gridItemActions .pointer .mobile-nav .menu li a:after, .mobile-nav .menu li .gridItemActions .pointer a:after {
  color: rgba(220, 220, 220, 0.9) !important;
}

.gridItemActions div a {
  color: #333333;
}

.gridItemActions div a:hover {
  text-decoration: none;
  cursor: pointer;
}

.twoActions .gridItemActions {
  width: 50%;
  margin-left: 25%;
}
.twoActions .gridItemActions .addToCart,
.twoActions .gridItemActions .addToCartLink {
  font-size: 300%;
  position: absolute;
  left: 11%;
  top: 10%;
}
.twoActions .gridItemActions .addToFavorites {
  font-size: 140%;
  position: absolute;
  top: 30%;
  right: 12%;
}
.twoActions .gridItemActions .addToFavorites .endor-heart,
.twoActions .gridItemActions .addToFavorites .endor-heart-filled {
  position: absolute;
  top: 15%;
  right: 12%;
}

.oneAction .gridItemActions {
  width: 33%;
  margin-left: 33%;
}
.oneAction .gridItemActions .addToCart,
.oneAction .gridItemActions .addToCartLink {
  font-size: 300%;
  position: absolute;
  left: 13%;
  top: 10%;
}
.oneAction .gridItemActions .addToFavorites {
  font-size: 140%;
  position: absolute;
  top: 30%;
  right: 12%;
}
.oneAction .gridItemActions .addToFavorites .endor-heart,
.oneAction .gridItemActions .addToFavorites .endor-heart-filled {
  position: absolute;
  top: 15%;
  right: 12%;
}

.load-more {
  border-top: solid 1px #CCCCCC;
}
.load-more .buttonContainer {
  position: relative;
  text-align: center;
  background: #FFFFFF;
  padding: 0 20px;
  width: 200px;
  margin: 20px auto 0;
}
.load-more .buttonContainer a.btn-more {
  display: inline-block;
  border: solid 1px #e6e6e6;
  color: #000000;
  border: solid 3px #000000;
  float: none;
  background: #FFFFFF;
  padding: 6px 12px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 18px;
  white-space: nowrap;
}
.load-more .buttonContainer a.btn-more:hover {
  background: #333333;
  color: #FFFFFF;
}

/*
8888888 88888888888 8888888888 888b     d888
  888       888     888        8888b   d8888
  888       888     888        88888b.d88888
  888       888     8888888    888Y88888P888
  888       888     888        888 Y888P 888
  888       888     888        888  Y8P  888
  888       888     888        888   "   888
8888888     888     8888888888 888       888

 .d8888b.  8888888b.  8888888 8888888b.
d88P  Y88b 888   Y88b   888   888  "Y88b
888    888 888    888   888   888    888
888        888   d88P   888   888    888
888  88888 8888888P"    888   888    888
888    888 888 T88b     888   888    888
Y88b  d88P 888  T88b    888   888  .d88P
 "Y8888P88 888   T88b 8888888 8888888P"
*/
.addToFavoritesFeature .endor-heart,
.addToFavoritesFeature .endor-heart-filled {
  position: absolute;
  top: 15%;
  right: 12%;
}

.categoryBanner {
  overflow: hidden;
  margin-bottom: 0;
}

.categoryBanner .categoryText {
  background-position: 50% 50%;
  text-align: center;
  padding: 10%;
}

.categoryBanner .categoryText span {
  text-align: center;
  color: #FFFFFF;
  padding: 0.5em 0.75em;
  font-weight: 900;
  font-size: 450%;
  border: solid 2px #FFFFFF;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 667px) {
  .categoryBanner .categoryText span {
    font-size: 200%;
  }
}

.categoryBanner.introText {
  overflow: hidden;
  margin-bottom: 0;
}

.categoryBanner.introText .categoryText {
  background-position: 50% 50%;
  text-align: center;
  padding: 5% 15%;
}

.categoryBanner.introText .categoryText span {
  text-align: center;
  display: block;
  color: #FFFFFF;
  padding: 2em 4em 4em;
  border: solid 2px #FFFFFF;
  border: none;
  font-size: 100%;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.75);
}

.categoryBanner.introText .categoryText span h1 {
  font-weight: 200;
  font-size: 350%;
  padding: 0 0 0.5em;
}

.categoryBanner.introText .categoryText p {
  color: #FFFFFF;
  font-size: 90%;
  text-align: left;
  font-weight: 100;
  line-height: 1.5em;
}

.endorBreadcrumb {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  margin: 0;
  display: none;
}
@media only screen and (max-width: 667px) {
  .endorBreadcrumb {
    display: none;
  }
}

@media (min-width: 768px) {
  .endorBreadcrumb .container {
    width: 735px;
  }
}
@media (min-width: 992px) {
  .endorBreadcrumb .container {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .endorBreadcrumb .container {
    width: 1140px;
  }
}
@media (min-width: 1350px) {
  .endorBreadcrumb .container {
    width: 1270px;
  }
}
.endorBreadcrumb a {
  color: #999999;
  display: block;
  float: left;
  margin: 1.2em 1.2em 1.2em 0;
  font-size: 85%;
}

.endorBreadcrumb a.levelCurrent {
  color: #563974;
  font-weight: 600;
}

.endorBreadcrumb a:hover {
  cursor: pointer;
}

.endorBreadcrumb .endorIcon, .endorBreadcrumb .profile-options li:before, .profile-options .endorBreadcrumb li:before, .endorBreadcrumb .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .endorBreadcrumb i, .endorBreadcrumb .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .endorBreadcrumb i, .endorBreadcrumb .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .endorBreadcrumb i,
.endorBreadcrumb .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .endorBreadcrumb i,
.endorBreadcrumb .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .endorBreadcrumb i,
.endorBreadcrumb .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .endorBreadcrumb i, .endorBreadcrumb .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .endorBreadcrumb i,
.endorBreadcrumb .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .endorBreadcrumb i, .endorBreadcrumb .mobile-nav .menu li a:after, .mobile-nav .menu li .endorBreadcrumb a:after {
  font-size: 200%;
  line-height: 1.5em;
  display: block;
  float: left;
  color: #999999;
  margin-right: 0.4em;
}

.itemGrid .gridContainer h1,
h1.mobileHeader {
  text-transform: uppercase;
  margin: 0 0 5px;
  padding: 0;
  font-size: 55px;
  font-weight: 300;
  line-height: 0.8em;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

h1.mobileHeader {
  margin-bottom: 20px;
}

@media only screen and (max-width: 667px) {
  .itemGrid .gridContainer h1 {
    font-size: 30px;
    line-height: 1.2em;
  }

  h1.mobileHeader {
    font-size: 30px;
  }
}
.gridContainer .pagination {
  display: block;
  clear: both;
  font-size: 80%;
  border-top: solid 1px #e6e6e6;
  padding-top: 20px;
  margin-top: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 667px) {
  .gridContainer .pagination.singleItem {
    margin-bottom: 10px;
  }
}
.gridContainer .pagination.singleItem .pageList {
  display: none;
}

.gridContainer .pagination > div {
  display: inline-block;
  width: 31%;
  position: relative;
}

/*
8888888 88888888888 8888888888 888b     d888
  888       888     888        8888b   d8888
  888       888     888        88888b.d88888
  888       888     8888888    888Y88888P888
  888       888     888        888 Y888P 888
  888       888     888        888  Y8P  888
  888       888     888        888   "   888
8888888     888     8888888888 888       888

 .d8888b.        d8888 8888888b.   .d88888b.  888     888  .d8888b.  8888888888 888
d88P  Y88b      d88888 888   Y88b d88P" "Y88b 888     888 d88P  Y88b 888        888
888    888     d88P888 888    888 888     888 888     888 Y88b.      888        888
888           d88P 888 888   d88P 888     888 888     888  "Y888b.   8888888    888
888          d88P  888 8888888P"  888     888 888     888     "Y88b. 888        888
888    888  d88P   888 888 T88b   888     888 888     888       "888 888        888
Y88b  d88P d8888888888 888  T88b  Y88b. .d88P Y88b. .d88P Y88b  d88P 888        888
 "Y8888P" d88P     888 888   T88b  "Y88888P"   "Y88888P"   "Y8888P"  8888888888 88888888
 */
/* .colorChoiceItemCarousel .item img {
    width: 100%;
    height: 200px;
} */
/*
 .d8888b.  888       888        d8888 88888888888 .d8888b.  888    888
d88P  Y88b 888   o   888       d88888     888    d88P  Y88b 888    888
Y88b.      888  d8b  888      d88P888     888    888    888 888    888
 "Y888b.   888 d888b 888     d88P 888     888    888        8888888888
    "Y88b. 888d88888b888    d88P  888     888    888        888    888
      "888 88888P Y88888   d88P   888     888    888    888 888    888
Y88b  d88P 8888P   Y8888  d8888888888     888    Y88b  d88P 888    888
 "Y8888P"  888P     Y888 d88P     888     888     "Y8888P"  888    888

 .d8888b.        d8888 8888888b.   .d88888b.  888     888  .d8888b.  8888888888 888
d88P  Y88b      d88888 888   Y88b d88P" "Y88b 888     888 d88P  Y88b 888        888
888    888     d88P888 888    888 888     888 888     888 Y88b.      888        888
888           d88P 888 888   d88P 888     888 888     888  "Y888b.   8888888    888
888          d88P  888 8888888P"  888     888 888     888     "Y88b. 888        888
888    888  d88P   888 888 T88b   888     888 888     888       "888 888        888
Y88b  d88P d8888888888 888  T88b  Y88b. .d88P Y88b. .d88P Y88b  d88P 888        888
 "Y8888P" d88P     888 888   T88b  "Y88888P"   "Y88888P"   "Y8888P"  8888888888 88888888
 */
.colorChoiceSwatchContainer {
  width: 100%;
  position: absolute;
  top: 5.05em;
}
.colorChoiceSwatchContainer .colorBackArrow {
  width: 20%;
  float: left;
  font-size: 150%;
  color: #999999 !important;
  position: relative;
}
.colorChoiceSwatchContainer .colorBackArrow .endorIcon, .colorChoiceSwatchContainer .colorBackArrow .profile-options li:before, .profile-options .colorChoiceSwatchContainer .colorBackArrow li:before, .colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .colorChoiceSwatchContainer .colorBackArrow i, .colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .colorChoiceSwatchContainer .colorBackArrow i, .colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .colorChoiceSwatchContainer .colorBackArrow i,
.colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .colorChoiceSwatchContainer .colorBackArrow i,
.colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .colorChoiceSwatchContainer .colorBackArrow i,
.colorChoiceSwatchContainer .colorBackArrow .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .colorChoiceSwatchContainer .colorBackArrow i, .colorChoiceSwatchContainer .colorBackArrow .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .colorChoiceSwatchContainer .colorBackArrow i,
.colorChoiceSwatchContainer .colorBackArrow .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .colorChoiceSwatchContainer .colorBackArrow i, .colorChoiceSwatchContainer .colorBackArrow .mobile-nav .menu li a:after, .mobile-nav .menu li .colorChoiceSwatchContainer .colorBackArrow a:after {
  position: relative;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel {
  width: 65%;
  float: left;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .owl-item {
  margin-right: 0;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .item a {
  display: block;
  height: 2em;
  width: 2em;
  text-align: center;
  border: solid 1px #333333;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .owl-prev {
  position: absolute;
  left: -3.5em;
  top: 2em;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .owl-prev i {
  font-size: 350%;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .owl-next {
  position: absolute;
  right: -3em;
  top: -2em;
  color: #999999;
}
.colorChoiceSwatchContainer .colorChoiceSwatchCarousel .owl-next i {
  font-size: 350%;
}

.digitalDownloads .itemGrid .gridContainer h1 {
  margin-top: 0;
  margin-bottom: 20px;
}
.digitalDownloads .title {
  margin-bottom: 0;
}
.digitalDownloads .mainArtist {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}
.digitalDownloads span.mediaName {
  font-size: 9px;
}
.digitalDownloads .trackPrice {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 700;
}
.digitalDownloads .actualPrice {
  font-size: 20px;
}
.digitalDownloads .load-more {
  margin: 40px 0;
}
.digitalDownloads .disclaimer h5 {
  color: #D0023E;
  font-size: 12px;
}
.digitalDownloads .disclaimer p {
  font-size: 11px;
  width: 50%;
}
@media only screen and (max-width: 667px) {
  .digitalDownloads .disclaimer p {
    width: 100%;
  }
}

.gridItem p.author {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}

.eBookList a.gridItemLink {
  text-align: center;
}
.eBookList a.gridItemLink p {
  text-align: left;
}
.eBookList .gridItemInner.audioBook img {
  margin: 20px auto;
  width: 100px !important;
  max-height: 100px;
}
.eBookList .gridItemInner.eBook img {
  margin: 20px auto;
  width: 100px !important;
  height: auto !important;
}
.eBookList div.price {
  text-align: left;
}
.eBookList .author {
  font-size: 16px;
  font-weight: 600;
}
.eBookList span.mediaName {
  font-size: 9px;
  font-weight: 400;
}

.bookDetail .widget {
  margin-left: -5px;
}

#featuredItemsHome .gridItems {
  width: 25%;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #featuredItemsHome .gridItems {
    width: 33%;
  }
}
@media only screen and (max-width: 667px) {
  #featuredItemsHome .gridItems {
    width: 50%;
  }
  #featuredItemsHome .gridItems .merchInfo .gridItemLink {
    position: relative;
    max-height: 60px;
    min-height: 60px;
  }
  #featuredItemsHome .gridItems .merchInfo .gridItemLink .description {
    font-size: 10px;
  }
  #featuredItemsHome .load-more {
    margin-top: 20px;
  }
}
#featuredItemsHome .tab-pane > .featuregridcontainer {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}
#featuredItemsHome .grmProductCard {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
}
#featuredItemsHome .grmProductCard:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner {
  position: relative;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  position: absolute;
  transition: all .1s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 42px;
  min-height: 24px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.sale {
  background-color: #D13913;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.refurb {
  background-color: #595959;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.download {
  background-color: #7157D9;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new {
  background-color: #006618;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.living-green {
  background-color: #008075;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-widgets > li:not(:last-child) span.widget-label {
  display: none;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner:hover > .product-widgets {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget {
  position: relative;
  margin-bottom: 6px;
  margin-left: 0px !important;
  left: 8px !important;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget span.widget-label {
  display: inline;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container {
  position: absolute;
  right: 12px;
  z-index: 2;
  display: none;
  height: 40px;
  border-radius: 0 0 0 2px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
@media only screen and (max-width: 667px) {
  #featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav {
  opacity: 0.6;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav:hover {
  opacity: 1;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav img {
  height: 24px;
  width: 24px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited {
  /*background: $color-white
    url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A") 
    no-repeat center center;*/
  opacity: 1;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited img {
  opacity: 0;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited div.icon-container {
  display: block;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited i {
  display: block;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart {
  opacity: 0.6;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart:hover {
  opacity: 1;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart img {
  height: 24px;
  width: 24px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A") no-repeat center center;
  padding: 5px 10px 2px 14px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted img {
  opacity: 0;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted div.icon-container {
  display: none;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted i {
  display: none;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a {
  padding: 8px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a.progress {
  opacity: 0.3;
  cursor: progress;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .product-actions-container a:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner:hover .product-actions-container {
  display: flex;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage {
  position: relative;
  width: 100%;
  text-align: center;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink {
  position: relative;
  display: block;
  padding: 16px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img {
  max-width: 100%;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt {
  display: none;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt.active {
  display: block;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemActions {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  margin: 0;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo {
  text-align: left;
  padding: 0px 16px 16px 16px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .gridItemLink {
  display: block;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo p:not(:last-child) {
  margin-bottom: 3px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container {
  height: 16px;
  margin-bottom: 3px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch {
  display: inline-block;
  padding-right: 4px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark {
  display: none;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  position: absolute;
  left: -3px;
  top: -3px;
  transform: rotate(45deg);
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_stem,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_stem {
  position: absolute;
  width: 1px;
  height: 7px;
  background-color: #FFFFFF;
  left: 12px;
  top: 7px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_kick,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_kick {
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #FFFFFF;
  left: 8px;
  top: 14px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color.selected span.po-color-checkmark,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color.selected span.po-color-checkmark {
  display: inline-block;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 9px;
  color: #ffffff;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number:after,
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number:after {
  content: "+1";
  position: absolute;
  left: 4px;
  top: 2px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .description {
  color: #595959;
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .price {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .productId {
  color: #58595A;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .strikeout {
  margin: 0;
  text-decoration: line-through;
  color: #D0023E;
  font-size: 14px;
  line-height: 18px;
}
#featuredItemsHome .grmProductCard .gridItem .gridItemInner .merchInfo .ratingQuantity {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}

.category-cards {
  margin: 30px 0;
  text-align: center;
  height: 100%;
}
.category-cards .category-cards-container {
  width: 100%;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .category-cards .category-cards-container {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .category-cards .category-cards-container {
    padding-left: 16px;
  }
}
.category-cards .category-cards-container .titleContainer {
  max-width: 1140px;
  padding-bottom: 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 667px) {
  .category-cards .category-cards-container .titleContainer {
    width: 100%;
    margin: 0;
  }
}
.category-cards .category-cards-container .titleContainer .title {
  text-align: left;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.category-cards .category-cards-container .titleContainer a.viewall {
  margin-top: 17px;
  float: right;
  height: 19px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: underline;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .category-cards .category-cards-container .titleContainer a.viewall {
    display: none;
  }
}
@media only screen and (max-width: 667px) {
  .category-cards .category-cards-container .titleContainer a.viewall {
    display: none;
  }
}
.category-cards .category-cards-container .tilesMainContainer {
  max-width: 1140px;
  overflow: auto;
  padding: 5px 0px;
  margin: 0 auto;
  overflow-y: hidden;
  display: grid;
}
@media only screen and (max-width: 667px) {
  .category-cards .category-cards-container .tilesMainContainer {
    width: 100%;
    overflow: auto;
    padding: 5px 0;
    margin: 0 0 0 -8px;
  }
}
.category-cards .category-cards-container .tilesMainContainer .tilesContainer {
  margin: 0;
}
@media only screen and (max-width: 667px) {
  .category-cards .category-cards-container .tilesMainContainer .tilesContainer {
    margin: 0 auto;
  }
}
.category-cards .category-cards-container .tilesMainContainer .tilesContainer .tile {
  display: inline-block;
  border-top: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  margin: 0px 8px;
  float: left;
  width: 208px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}
.category-cards .category-cards-container .tilesMainContainer .tilesContainer .tile:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.category-cards .category-cards-container .tilesMainContainer .tilesContainer .tile .tileTitle {
  padding: 16px 0px;
  display: block;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

@media only screen and (max-width: 667px) {
  .search.category-cards .category-cards-container {
    padding-left: 0px;
  }
}

.featured-products {
  margin: 30px 0;
  text-align: center;
}
.featured-products .featured-products-container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  position: relative;
}
.featured-products .featured-products-container .titleContainer {
  padding-bottom: 3px;
}
.featured-products .featured-products-container .titleContainer .title {
  text-align: left;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.featured-products .featured-products-container .titleContainer a.viewall {
  margin-top: 17px;
  float: right;
  height: 19px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: underline;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .featured-products .featured-products-container .titleContainer a.viewall {
    display: none;
  }
}
@media only screen and (max-width: 667px) {
  .featured-products .featured-products-container .titleContainer a.viewall {
    display: none;
  }
}
.featured-products .featured-products-container .tilesContainer {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll;
}
.featured-products .featured-products-container .tilesContainer::-webkit-scrollbar {
  display: none;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper {
  width: 1140px;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .big-tiles {
  float: left;
  position: relative;
  margin: 13px 0 3px 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 667px) {
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .big-tiles {
    margin-left: 0px;
  }
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .big-tiles .grmProductCard {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .big-tiles .grmProductCard:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tiny-tiles {
  width: 60%;
  display: inline-flex;
  flex-wrap: wrap;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile {
  width: 200px;
  /* border: 1px solid $color-white-smoke-5;
  border-radius: 2px;
  background-color: $color-white;
  box-shadow: 0 3px 4px 0 rgba($color-grey-2, 0.3); */
  text-align: left;
  position: relative;
  /* &:hover {
      -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
      box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  } */
  /* img {
      max-width: 100%;
  } */
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile .tileLink {
  display: block;
  text-align: center;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile .featuremerchinfo {
  text-align: left;
  padding: 15px;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile .featuremerchinfo .tileProductName {
  display: block;
  color: #595959;
  font-size: 12px;
  line-height: 18px;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile .featuremerchinfo .tileProductValue {
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.big-tile {
  width: 416px;
  border: 1px solid #f7f7f7;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  border-radius: 12px;
  /* img {
      max-width: 100%;
  } */
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.big-tile:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.big-tile .featuremerchinfo {
  padding: 10px 34px;
}
.featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.tiny-tile {
  margin: 13px 8px;
}
.featured-products .featured-products-container .grmProductCard {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
}
.featured-products .featured-products-container .grmProductCard:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner {
  position: relative;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  position: absolute;
  transition: all .1s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 42px;
  min-height: 24px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.sale {
  background-color: #D13913;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.refurb {
  background-color: #595959;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.download {
  background-color: #7157D9;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new {
  background-color: #006618;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.living-green {
  background-color: #008075;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-widgets > li:not(:last-child) span.widget-label {
  display: none;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget {
  position: relative;
  margin-bottom: 6px;
  margin-left: 0px !important;
  left: 8px !important;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget span.widget-label {
  display: inline;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
  position: absolute;
  right: 12px;
  z-index: 2;
  display: none;
  height: 40px;
  border-radius: 0 0 0 2px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
@media only screen and (max-width: 667px) {
  .featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav {
  opacity: 0.6;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav:hover {
  opacity: 1;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav img {
  height: 24px;
  width: 24px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited {
  /*background: $color-white
    url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A") 
    no-repeat center center;*/
  opacity: 1;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited img {
  opacity: 0;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited div.icon-container {
  display: block;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited i {
  display: block;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart {
  opacity: 0.6;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart:hover {
  opacity: 1;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart img {
  height: 24px;
  width: 24px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A") no-repeat center center;
  padding: 5px 10px 2px 14px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted img {
  opacity: 0;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted div.icon-container {
  display: none;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted i {
  display: none;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a {
  padding: 8px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.progress {
  opacity: 0.3;
  cursor: progress;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .product-actions-container a:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner:hover .product-actions-container {
  display: flex;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage {
  position: relative;
  width: 100%;
  text-align: center;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink {
  position: relative;
  display: block;
  padding: 16px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img {
  max-width: 100%;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt {
  display: none;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt.active {
  display: block;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemActions {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  margin: 0;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo {
  text-align: left;
  padding: 0px 16px 16px 16px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .gridItemLink {
  display: block;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo p:not(:last-child) {
  margin-bottom: 3px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container {
  height: 16px;
  margin-bottom: 3px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch {
  display: inline-block;
  padding-right: 4px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark {
  display: none;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  position: absolute;
  left: -3px;
  top: -3px;
  transform: rotate(45deg);
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_stem,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_stem {
  position: absolute;
  width: 1px;
  height: 7px;
  background-color: #FFFFFF;
  left: 12px;
  top: 7px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_kick,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_kick {
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #FFFFFF;
  left: 8px;
  top: 14px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color.selected span.po-color-checkmark,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color.selected span.po-color-checkmark {
  display: inline-block;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 9px;
  color: #ffffff;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number:after,
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number:after {
  content: "+1";
  position: absolute;
  left: 4px;
  top: 2px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .description {
  color: #595959;
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .price {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .productId {
  color: #58595A;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .strikeout {
  margin: 0;
  text-decoration: line-through;
  color: #D0023E;
  font-size: 14px;
  line-height: 18px;
}
.featured-products .featured-products-container .grmProductCard .gridItem .gridItemInner .merchInfo .ratingQuantity {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
.featured-products .featured-products-container .slidePrevious {
  display: none;
  background: linear-gradient(90deg, #f8f8f9 0, #f8f8f9 27.97%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  height: 100%;
  width: 92px;
  position: absolute;
  top: 0;
  left: 0;
}
.featured-products .featured-products-container .slidePrevious .previous-button {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  top: 50%;
  left: 10px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.featured-products .featured-products-container .slidePrevious .previous-button .grm-icon-refresh {
  height: 20.95px;
  width: 19.89px;
  margin: 0;
  position: inherit;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.featured-products .featured-products-container .slideNext {
  display: none;
  background: linear-gradient(270deg, #f8f8f9 0, #f8f8f9 27.97%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  height: 100%;
  width: 92px;
  position: absolute;
  top: 0;
  right: 0;
}
.featured-products .featured-products-container .slideNext .next-button {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  top: 50%;
  left: -10px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  float: right;
}
.featured-products .featured-products-container .slideNext .next-button .grm-icon-refresh {
  height: 20.95px;
  width: 19.89px;
  margin: 0;
  position: inherit;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .featured-products .featured-products-container {
    padding-left: 20px;
  }
  .featured-products .featured-products-container .slidePrevious {
    display: block;
  }
  .featured-products .featured-products-container .slideNext {
    display: block;
  }
}
@media only screen and (max-width: 667px) {
  .featured-products .featured-products-container {
    padding-left: 16px;
  }
}
@media (max-width: 991.98px) {
  .featured-products .featured-products-container {
    padding-left: 16px;
  }
  .featured-products .featured-products-container .tilesContainer {
    overflow: scroll;
  }
}
@media (max-width: 575.98px) {
  .featured-products .featured-products-container .tilesContainer .tile-wrapper {
    width: 100%;
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .big-tiles {
    width: 100%;
    margin-bottom: 28px;
    padding-right: 10px;
    /* img {
        max-width: 100%;
    } */
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .tiny-tiles {
    width: 100%;
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .tile {
    width: 45%;
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.big-tile {
    width: 100%;
    min-height: 100% !important;
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.tiny-tile {
    /* margin-bottom: 2%;
    margin-right: 2%; */
    margin: 13px 10px 13px 3px;
  }
  .featured-products .featured-products-container .tilesContainer .tile-wrapper .tile.tiny-tile:nth-child(odd) {
    margin-left: 0px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .home-refresh-container .break {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 667px) {
  .home-refresh-container .break {
    padding: 0 10px;
  }
}

.banners {
  margin: 30px 0px;
  text-align: center;
  min-height: 174px;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 667px) {
  .banners {
    margin: 30px 0px 30px 16px;
  }
}
.banners .banners-container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: scroll;
}
.banners .banners-container::-webkit-scrollbar {
  display: none;
}
.banners .banners-container .tilesContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: hidden;
}
.banners .banners-container .tilesContainer .tile {
  width: 49%;
  height: 280px;
}
.banners .banners-container .tilesContainer .tile a.tileLink {
  position: relative;
  display: block;
  height: 100%;
  text-align: right;
}
.banners .banners-container .tilesContainer .tile a.tileLink img {
  width: auto;
  height: 100%;
  background-color: #EBEBEB;
  position: relative;
  border-radius: 15px 15px 15px 15px;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText {
  background-color: transparent;
  width: 50%;
  height: inherit;
  position: absolute;
  top: 0px;
  text-align: left;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  opacity: 0.84;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.53%, #FFFFFF 100%);
  color: #000000;
  padding-left: 32px;
  border-radius: 15px 0px 0px 15px;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText.dark {
  color: #FFFFFF;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .tileTitle {
  padding-bottom: 16px;
  display: inline-block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  text-align: left;
  font-weight: 400;
}
@media only screen and (max-width: 667px) {
  .banners .banners-container .tilesContainer .tile a.tileLink .tileText .tileTitle {
    font-size: 12px;
    line-height: 14px;
    padding-bottom: 8px;
  }
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .tileSubHeader {
  display: inline-block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  text-align: left;
  font-weight: 600;
}
@media only screen and (max-width: 667px) {
  .banners .banners-container .tilesContainer .tile a.tileLink .tileText .tileSubHeader {
    font-size: 12px;
    line-height: 14px;
  }
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper {
  width: auto;
  height: inherit;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: 0px;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper .circle-wrapper {
  background-color: transparent;
  overflow: hidden;
  width: 100px;
  height: 280px;
  float: left;
  position: relative;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper .circle-wrapper .circle {
  border-radius: 50%;
  border: 42px solid transparent;
  width: 250px;
  height: 374px;
  position: absolute;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper .circle-wrapper .circle.curve {
  left: -41.52px;
  top: -46px;
}
@media only screen and (max-width: 667px) {
  .banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper .circle-wrapper .circle.curve {
    height: 265px;
    left: -41.52px;
    top: -46px;
  }
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText.banner-tile-overlay {
  background: none;
  opacity: 1;
  background-color: #eee;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText.banner-tile-overlay .shape-wrapper .circle-wrapper .circle {
  border-color: #eee;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText.noOverlay {
  background: none !important;
}
.banners .banners-container .tilesContainer .tile a.tileLink .tileText.noOverlay .shape-wrapper .circle-wrapper .circle {
  opacity: 0;
  border-color: transparent !important;
}
.banners .banners-container ::-webkit-scrollbar {
  display: none;
  width: 0;
  color: transparent;
  height: 0;
}
.banners .dualBannerNav {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 667px) {
  .banners .dualBannerNav {
    display: block;
    left: 25px;
    bottom: 25px;
  }
  .banners .dualBannerNav .banner1 {
    height: 4px;
    width: 4px;
    display: inline-block;
    background-color: #000000;
    border-radius: 50%;
    vertical-align: middle;
  }
  .banners .dualBannerNav .banner1.active {
    height: 8px;
    width: 8px;
  }
  .banners .dualBannerNav .banner2 {
    height: 4px;
    width: 4px;
    display: inline-block;
    background-color: #000000;
    border-radius: 50%;
    vertical-align: middle;
  }
  .banners .dualBannerNav .banner2.active {
    height: 8px;
    width: 8px;
  }
}

@media (max-width: 991.98px) {
  .banners .banners-container {
    width: 100%;
    max-width: initial;
    margin: auto;
    overflow-x: scroll;
  }

  .banners .banners-container .tilesContainer {
    width: 1536px;
    overflow: hidden;
    margin: auto;
  }

  .banners .banners-container .tilesContainer .tile {
    width: 49%;
    height: 280px;
    float: left;
  }

  .banners .dualBannerNav {
    display: block;
    left: 25px;
    bottom: 25px;
  }
  .banners .dualBannerNav .banner1 {
    height: 4px;
    width: 4px;
    display: inline-block;
    background-color: #000000;
    border-radius: 50%;
    vertical-align: middle;
  }
  .banners .dualBannerNav .banner1.active {
    height: 8px;
    width: 8px;
  }
  .banners .dualBannerNav .banner2 {
    height: 4px;
    width: 4px;
    display: inline-block;
    background-color: #000000;
    border-radius: 50%;
    vertical-align: middle;
  }
  .banners .dualBannerNav .banner2.active {
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 575.98px) {
  .banners .banners-container .tilesContainer {
    width: 828px;
    overflow: hidden;
    margin: auto;
  }

  .banners .banners-container .tilesContainer .tile {
    width: 46%;
    height: 174px;
    float: left;
  }

  .banners .banners-container .tilesContainer .tile a.tileLink img {
    height: 99%;
    border-radius: 15px 15px 15px 15px;
  }

  .banners .banners-container .tilesContainer .tile a.tileLink .tileText .shape-wrapper {
    left: 99%;
  }
}
.content-cards {
  margin: 30px 0;
  text-align: center;
  height: 100%;
}
.content-cards .content-cards-container {
  width: 100%;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .content-cards .content-cards-container {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .content-cards .content-cards-container {
    padding-left: 16px;
  }
}
.content-cards .content-cards-container .titleContainer {
  max-width: 1140px;
  padding-bottom: 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 667px) {
  .content-cards .content-cards-container .titleContainer {
    width: 100%;
    margin: 0;
  }
}
.content-cards .content-cards-container .titleContainer .title {
  text-align: left;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.content-cards .content-cards-container .tilesMainContainer {
  max-width: 1140px;
  overflow: auto;
  padding: 5px 0px;
  margin: 0 auto;
  overflow-y: hidden;
  display: grid;
}
@media only screen and (max-width: 667px) {
  .content-cards .content-cards-container .tilesMainContainer {
    width: 100%;
    overflow-x: auto;
    height: 100%;
    padding: 5px 0;
    margin: 0;
  }
}
.content-cards .content-cards-container .tilesMainContainer .tilesContainer {
  margin: 0;
}
@media only screen and (max-width: 667px) {
  .content-cards .content-cards-container .tilesMainContainer .tilesContainer {
    margin: 0 auto;
    margin-left: -8px;
  }
}
.content-cards .content-cards-container .tilesMainContainer .tilesContainer .tile {
  display: inline-block;
  border-top: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  margin: 0px 8px;
  float: left;
  width: 208px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}
.content-cards .content-cards-container .tilesMainContainer .tilesContainer .tile:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.content-cards .content-cards-container .tilesMainContainer .tilesContainer .tile .tileTitle {
  padding: 16px 0px;
  display: block;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

#bannerVideoModalTarget .close {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0px;
}
@media only screen and (min-width: 767px) {
  #bannerVideoModalTarget .modal-content {
    width: 100%;
  }
}

.content-cards .content-cards-container .tilesMainContainer {
  max-width: 1140px;
  overflow: auto;
  padding: 5px 0px;
  margin: 0 auto;
}

.deals-slider {
  text-align: center;
  height: 100%;
  background-color: #F8F8F9;
}
.deals-slider .deals-slider-container {
  height: 100%;
  width: 100%;
  max-width: 1140px;
  display: inline-block;
  background-color: #F8F8F9;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .deals-slider .deals-slider-container {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .deals-slider .deals-slider-container {
    padding-left: 16px;
    overflow: hidden;
  }
}
.deals-slider .deals-slider-container .owl-wrapper-outer {
  padding: 0px;
}
.deals-slider .deals-slider-container .owl-pagination {
  display: none;
}
.deals-slider .deals-slider-container .titleContainer {
  padding: 36px 0px 10px 0px;
  background-color: #F8F8F9;
}
.deals-slider .deals-slider-container .titleContainer .title {
  text-align: left;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.deals-slider .deals-slider-container .titleContainer a.viewall {
  margin-top: 17px;
  float: right;
  height: 19px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: underline;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .deals-slider .deals-slider-container .titleContainer a.viewall {
    display: none;
  }
}
@media only screen and (max-width: 667px) {
  .deals-slider .deals-slider-container .titleContainer a.viewall {
    display: none;
  }
}
.deals-slider .deals-slider-container #productCarouselRefresh {
  padding-bottom: 46px;
}
@media only screen and (max-width: 667px) {
  .deals-slider .deals-slider-container #productCarouselRefresh {
    margin-left: -8px;
  }
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner {
  position: relative;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  position: absolute;
  transition: all .1s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 42px;
  min-height: 24px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.sale {
  background-color: #D13913;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.refurb {
  background-color: #595959;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.download {
  background-color: #7157D9;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new {
  background-color: #006618;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.living-green {
  background-color: #008075;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-widgets > li:not(:last-child) span.widget-label {
  display: none;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner:hover > .product-widgets {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget {
  position: relative;
  margin-bottom: 6px;
  margin-left: 0px !important;
  left: 8px !important;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget span.widget-label {
  display: inline;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container {
  position: absolute;
  right: 12px;
  z-index: 2;
  display: none;
  height: 40px;
  border-radius: 0 0 0 2px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
@media only screen and (max-width: 667px) {
  .deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav {
  opacity: 0.6;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav:hover {
  opacity: 1;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav img {
  height: 24px;
  width: 24px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited {
  /*background: $color-white
    url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A") 
    no-repeat center center;*/
  opacity: 1;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited img {
  opacity: 0;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited div.icon-container {
  display: block;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited i {
  display: block;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart {
  opacity: 0.6;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart:hover {
  opacity: 1;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart img {
  height: 24px;
  width: 24px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A") no-repeat center center;
  padding: 5px 10px 2px 14px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted img {
  opacity: 0;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted div.icon-container {
  display: none;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted i {
  display: none;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a {
  padding: 8px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a.progress {
  opacity: 0.3;
  cursor: progress;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .product-actions-container a:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner:hover .product-actions-container {
  display: flex;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage {
  position: relative;
  width: 100%;
  text-align: center;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink {
  position: relative;
  display: block;
  padding: 16px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img {
  max-width: 100%;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt {
  display: none;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt.active {
  display: block;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemActions {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  margin: 0;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo {
  text-align: left;
  padding: 0px 16px 16px 16px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .gridItemLink {
  display: block;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo p:not(:last-child) {
  margin-bottom: 3px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container {
  height: 16px;
  margin-bottom: 3px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch {
  display: inline-block;
  padding-right: 4px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark {
  display: none;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  position: absolute;
  left: -3px;
  top: -3px;
  transform: rotate(45deg);
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_stem,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_stem {
  position: absolute;
  width: 1px;
  height: 7px;
  background-color: #FFFFFF;
  left: 12px;
  top: 7px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_kick,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_kick {
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #FFFFFF;
  left: 8px;
  top: 14px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color.selected span.po-color-checkmark,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color.selected span.po-color-checkmark {
  display: inline-block;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 9px;
  color: #ffffff;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number:after,
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number:after {
  content: "+1";
  position: absolute;
  left: 4px;
  top: 2px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .description {
  color: #595959;
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .price {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .productId {
  color: #58595A;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .strikeout {
  margin: 0;
  text-decoration: line-through;
  color: #D0023E;
  font-size: 14px;
  line-height: 18px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .grmProductCard .gridItem .gridItemInner .merchInfo .ratingQuantity {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
@media only screen and (max-width: 667px) {
  .deals-slider .deals-slider-container #productCarouselRefresh .gridItemImage .gridItemLink img.merchItem {
    max-width: none !important;
    width: 168px;
  }
}
.deals-slider .deals-slider-container #productCarouselRefresh .owl-item {
  width: auto;
  min-width: 0;
  min-width: 200px;
}
.deals-slider .deals-slider-container #productCarouselRefresh.no-carousel {
  display: flex;
  overflow: scroll;
}
.deals-slider .deals-slider-container #productCarouselRefresh .items {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 8px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .item {
  /*display: inline-block;
  border: 1px solid $color-white-smoke-5;
  border-radius: 2px;
  background-color: $color-white;
  box-shadow: 0 3px 4px 0 rgba($color-grey-2, 0.3);
  margin-right: 16px;
  position: relative;
  padding: 8px;
  width: 100%; */
  /* &:hover {
      -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
      box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  } */
}
.deals-slider .deals-slider-container #productCarouselRefresh .item .dealmerchinfo {
  margin-bottom: 5px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .item .tileProductName {
  padding: 4px 16px 5px 16px;
  display: block;
  color: #595959;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}
.deals-slider .deals-slider-container #productCarouselRefresh .item .tileProductValue {
  padding: 0 16px;
  display: block;
  text-align: left;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .item .tileProductValue .mediaName {
  color: #000000;
  font-weight: 600;
  line-height: 18px;
}
.deals-slider .deals-slider-container #productCarouselRefresh .item .tileProductValue .strikeout {
  color: #D0023E;
  line-height: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.recently-viewed-slider {
  text-align: center;
  height: 100%;
  background-color: #F8F8F9;
}
.recently-viewed-slider .recently-viewed-slider-container {
  height: 100%;
  width: 100%;
  max-width: 1140px;
  display: inline-block;
  background-color: #F8F8F9;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .recently-viewed-slider .recently-viewed-slider-container {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .recently-viewed-slider .recently-viewed-slider-container {
    padding-left: 16px;
    overflow: hidden;
  }
}
.recently-viewed-slider .recently-viewed-slider-container .owl-pagination {
  display: none;
}
.recently-viewed-slider .recently-viewed-slider-container .titleContainer {
  padding: 36px 0px 8px 0px;
  background-color: #F8F8F9;
}
.recently-viewed-slider .recently-viewed-slider-container .titleContainer .title {
  text-align: left;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh {
  padding-bottom: 38px;
}
@media only screen and (max-width: 667px) {
  .recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh {
    margin-left: -8px;
  }
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .owl-item {
  width: auto;
  min-width: 0;
  min-width: 200px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh.no-carousel {
  display: flex;
  overflow: scroll;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 8px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner {
  position: relative;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  position: absolute;
  transition: all .1s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 42px;
  min-height: 24px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.sale {
  background-color: #D13913;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.refurb {
  background-color: #595959;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.download {
  background-color: #7157D9;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new {
  background-color: #006618;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.living-green {
  background-color: #008075;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-widgets > li:not(:last-child) span.widget-label {
  display: none;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner:hover > .product-widgets {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget {
  position: relative;
  margin-bottom: 6px;
  margin-left: 0px !important;
  left: 8px !important;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget span.widget-label {
  display: inline;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container {
  position: absolute;
  right: 12px;
  z-index: 2;
  display: none;
  height: 40px;
  border-radius: 0 0 0 2px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
@media only screen and (max-width: 667px) {
  .recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav {
  opacity: 0.6;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav:hover {
  opacity: 1;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav img {
  height: 24px;
  width: 24px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited {
  /*background: $color-white
    url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A") 
    no-repeat center center;*/
  opacity: 1;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited img {
  opacity: 0;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited div.icon-container {
  display: block;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited i {
  display: block;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart {
  opacity: 0.6;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart:hover {
  opacity: 1;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart img {
  height: 24px;
  width: 24px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A") no-repeat center center;
  padding: 5px 10px 2px 14px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted img {
  opacity: 0;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted div.icon-container {
  display: none;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted i {
  display: none;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a {
  padding: 8px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a.progress {
  opacity: 0.3;
  cursor: progress;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .product-actions-container a:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner:hover .product-actions-container {
  display: flex;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage {
  position: relative;
  width: 100%;
  text-align: center;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink {
  position: relative;
  display: block;
  padding: 16px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img {
  max-width: 100%;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt {
  display: none;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt.active {
  display: block;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemActions {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  margin: 0;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo {
  text-align: left;
  padding: 0px 16px 16px 16px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .gridItemLink {
  display: block;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo p:not(:last-child) {
  margin-bottom: 3px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container {
  height: 16px;
  margin-bottom: 3px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch {
  display: inline-block;
  padding-right: 4px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark {
  display: none;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  position: absolute;
  left: -3px;
  top: -3px;
  transform: rotate(45deg);
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_stem,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_stem {
  position: absolute;
  width: 1px;
  height: 7px;
  background-color: #FFFFFF;
  left: 12px;
  top: 7px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_kick,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_kick {
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #FFFFFF;
  left: 8px;
  top: 14px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color.selected span.po-color-checkmark,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color.selected span.po-color-checkmark {
  display: inline-block;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 9px;
  color: #ffffff;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number:after,
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number:after {
  content: "+1";
  position: absolute;
  left: 4px;
  top: 2px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .description {
  color: #595959;
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .price {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .productId {
  color: #58595A;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .strikeout {
  margin: 0;
  text-decoration: line-through;
  color: #D0023E;
  font-size: 14px;
  line-height: 18px;
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .grmProductCard .gridItem .gridItemInner .merchInfo .ratingQuantity {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
@media only screen and (max-width: 667px) {
  .recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .gridItemImage .gridItemLink img.merchItem {
    max-width: none !important;
    width: 168px;
  }
}
.recently-viewed-slider .recently-viewed-slider-container #recentlyViewedCarouselRefresh .recentitem .gridItemImage .owl-wrapper-outer {
  padding: 0px;
}

/*
88888888888 .d88888b.  8888888b.     888b    888        d8888 888     888
    888    d88P" "Y88b 888   Y88b    8888b   888       d88888 888     888
    888    888     888 888    888    88888b  888      d88P888 888     888
    888    888     888 888   d88P    888Y88b 888     d88P 888 Y88b   d88P
    888    888     888 8888888P"     888 Y88b888    d88P  888  Y88b d88P
    888    888     888 888           888  Y88888   d88P   888   Y88o88P
    888    Y88b. .d88P 888           888   Y8888  d8888888888    Y888P
    888     "Y88888P"  888           888    Y888 d88P     888     Y8P
*/
nav.navbar {
  border-bottom: solid 1px transparent;
  margin-bottom: 20px;
}
@media only screen and (max-width: 667px) {
  nav.navbar {
    margin-bottom: 0;
  }
}
nav.navbar .navbar-collapse {
  margin-bottom: 0;
  padding-left: 5px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  nav.navbar .navbar-collapse {
    padding-left: 0;
  }
}
@media only screen and (max-width: 667px) {
  nav.navbar .navbar-collapse {
    padding-left: 0;
  }
}
nav.navbar.activeNav {
  border-bottom: solid 1px #D8D8D8;
}
@media only screen and (max-width: 667px) {
  nav.navbar.activeNav {
    border-bottom: solid 1px transparent;
  }
}

div.navItem {
  display: inline-block;
  position: relative;
}
div.navItem a {
  color: #58595A;
}
div.navItem a:hover {
  color: #404040;
}
div.navItem a:active {
  color: #404040;
}
div.navItem a:focus {
  color: #404040;
  outline: 0;
}

/* test
8888888888 888     888 888      888
888        888     888 888      888
888        888     888 888      888
8888888    888     888 888      888
888        888     888 888      888
888        888     888 888      888
888        Y88b. .d88P 888      888
888         "Y88888P"  88888888 88888888

888b    888        d8888 888     888
8888b   888       d88888 888     888
88888b  888      d88P888 888     888
888Y88b 888     d88P 888 Y88b   d88P
888 Y88b888    d88P  888  Y88b d88P
888  Y88888   d88P   888   Y88o88P
888   Y8888  d8888888888    Y888P
888    Y888 d88P     888     Y8P
*/
.FullNavContent,
.MidNavContent {
  display: none;
}

.fullNav {
  background: #000000;
  background-position: top right;
  width: 100%;
  height: 530px;
  position: absolute;
  z-index: 1000;
  margin-top: 1px;
  display: none;
  border-top: solid 1px #D8D8D8;
  color: #FFFFFF !important;
}
.fullNav .navInner {
  position: relative;
  z-index: 9;
}

.stuckNav .fullNav {
  margin-top: 0;
}

.fullNavCoverup {
  background: #FFFFFF;
  height: 530px;
  width: 30%;
  position: absolute;
  border-top: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  z-index: 8;
}

@media (min-width: 768px) {
  .fullNavCoverup {
    width: 10%;
  }
}
@media (max-width: 992px) {
  .fullNavCoverup {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .fullNavCoverup {
    width: 20%;
  }
}
@media (min-width: 1350px) {
  .fullNavCoverup {
    width: 25%;
  }
}
@media (min-width: 1920px) {
  .fullNavCoverup {
    width: 26%;
  }
}
.stickOn .fullNav {
  margin-top: 0;
}

.fullNav .navInner div {
  float: left;
  width: 25%;
  height: 530px;
  overflow-y: auto;
}

.fullNav .navInner .level1 {
  background: #FFFFFF;
  border-top: solid 1px #FFFFFF;
}

.fullNav .navInner div li,
.fullNav .navInner div ul {
  list-style-type: none;
}

.fullNav .navInner div li a {
  font-size: 100%;
  line-height: 1.8em;
  display: block;
}

.fullNav .navInner div li a:hover {
  color: #000000;
}

.fullNav a {
  color: #58595A;
}
.fullNav a:hover {
  color: #58595A;
}
.fullNav a:active {
  color: #58595A;
}
.fullNav a:visited {
  color: #58595A;
}

.fullNav .navInner div li a span.subIndicator {
  position: absolute;
  right: 1.5em;
  font-size: 150%;
}

@media (max-width: 1200px) {
  .fullNav .navInner div li a span.subIndicator {
    right: 0.5em;
  }
}
.fullNav .navInner div ul {
  padding: 1em 0 0 2em;
}

.fullNav .navInner div ul li {
  position: relative;
}

.fullNav .navInner .level1 ul li {
  font-weight: 200;
}

.fullNav .navInner .level1 ul li a.featured {
  font-weight: 600;
}

.fullNav .navInner .level1 ul li.active {
  font-weight: 600;
}

.fullNav .navInner .level1.itemOverload li a {
  line-height: 1.7em;
}

.fullNav .navInner .level2 ul li a:hover,
.fullNav .navInner .level3 ul li a:hover,
.fullNav .navInner .level4 ul li a:hover {
  color: #FFFFFF !important;
}

.fullNav .navInner .level2 ul li.active a,
.fullNav .navInner .level3 ul li.active a,
.fullNav .navInner .level4 ul li.active a {
  font-weight: 600;
  color: #FFFFFF !important;
  outline: 0;
}

.fullNav .navInner .level2 h2,
.fullNav .navInner .level3 h2,
.fullNav .navInner .level4 h2 {
  color: #FFFFFF !important;
  font-size: 125%;
  font-weight: 600;
  padding: 0 0 0 1.5em;
  margin-bottom: 1em;
}

.fullNav .navInner .level3 ul li a {
  line-height: 1.2em;
  margin-bottom: 1em;
}

.fullNav .navInner .level4 ul li a {
  line-height: 1.2em;
  margin-bottom: 1em;
}

ul.fancyNavContent > li {
  list-style: none;
}

.level2 .secondary-sub-menu {
  display: none;
}

.level3 .tertiary-sub-menu {
  display: none;
}

.level4 .fourth-sub-menu {
  display: none;
}

.noChildren a span {
  display: none;
}

.fullNav a.active,
.fullNav a:focus {
  text-decoration: none;
}

@media (max-width: 768px) {
  .fullNav {
    background: #000000 !important;
    height: auto;
  }

  .fullNav .navInner {
    padding: 0;
  }

  .fullNavCoverup {
    display: none;
  }

  .fullNav .navInner .level1,
  .fullNav .navInner .level2,
  .fullNav .navInner .level3 {
    width: 100%;
    height: auto;
  }

  .fullNav .navInner .level1 ul {
    padding: 1em;
  }
}
/*
8888888888 8888888888 888b    888  .d8888b.   .d88888b.
888        888        8888b   888 d88P  Y88b d88P" "Y88b
888        888        88888b  888 888    888 888     888
8888888    8888888    888Y88b 888 888        888     888
888        888        888 Y88b888 888  88888 888     888
888        888        888  Y88888 888    888 888     888
888        888        888   Y8888 Y88b  d88P Y88b. .d88P
888        8888888888 888    Y888  "Y8888P88  "Y88888P"

888b    888        d8888 888     888
8888b   888       d88888 888     888
88888b  888      d88P888 888     888
888Y88b 888     d88P 888 Y88b   d88P
888 Y88b888    d88P  888  Y88b d88P
888  Y88888   d88P   888   Y88o88P
888   Y8888  d8888888888    Y888P
888    Y888 d88P     888     Y8P
*/
.fengoNav {
  width: 100%;
  margin-top: 1px;
  position: absolute;
  z-index: 100;
  display: none;
}

.fullNav a {
  color: #58595A;
}
.fullNav a.sub-menu.noChildren.base2:hover {
  color: #000000;
}
.fullNav a:hover {
  color: #000000;
}
.fullNav a:active {
  color: #58595A;
}
.fullNav a:focus {
  color: #58595A;
}
.fullNav a:visited {
  color: #58595A;
}

.fengoNav .navInner {
  background: #FFFFFF;
  max-height: 500px;
  border: solid 1px #e6e6e6;
  padding-bottom: 15px;
}

.fengoNav .navInner .sideImage {
  float: right;
  height: 93%;
  width: 33%;
  overflow: hidden;
  margin-top: 1.2em;
  text-align: center;
}

@media (max-width: 992px) {
  .fengoNav .navInner .sideImage {
    display: none;
  }
}
.fengoNav .navInner .sideImage img {
  width: 100%;
  text-align: center;
}

.fengoNav .navInner.has5columns .sideImage {
  display: none;
}

.fengoNav .navInner .linkList {
  float: left;
  overflow: hidden;
  margin-right: 1em;
  margin-top: 0.5em;
}

.fengoNav .navInner.has1column .linkList {
  width: 65%;
}

.fengoNav .navInner.has2columns .linkList {
  width: 32%;
}

.fengoNav .navInner.has3columns .linkList {
  width: 21%;
}

.fengoNav .navInner.has4columns .linkList {
  width: 15%;
}

.fengoNav .navInner.has5columns .linkList {
  width: 18%;
}

.fengoNav .navInner.has1column.noImage .linkList {
  width: 98%;
}

.fengoNav .navInner.has2columns.noImage .linkList {
  width: 47%;
}

.fengoNav .navInner.has3columns.noImage .linkList {
  width: 32%;
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .fengoNav .navInner.has3columns.noImage .linkList {
    width: 31%;
  }
}

.fengoNav .navInner.has4columns.noImage .linkList {
  width: 23%;
}

.fengoNav .navInner .linkList a {
  display: block;
  width: 100%;
  color: #595959;
  padding: 0.5em 0;
}

.fengoNav .navInner .linkList a:hover {
  color: #000000;
}

.fengoNav li,
.fengoNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.fengoNav a.sub-menu {
  font-size: 100%;
  font-weight: 600;
}

.fengoNav a.sub-menu:hover {
  color: #000000;
}

@media (max-width: 992px) {
  .fengoNav .navInner .linkList {
    width: 23%;
  }
}
@media (max-width: 768px) {
  .fengoNav .navInner .linkList,
  .fengoNav .navInner.has1column .linkList,
  .fengoNav .navInner.has2columns .linkList,
  .fengoNav .navInner.has3columns .linkList,
  .fengoNav .navInner.has4columns .linkList,
  .fengoNav .navInner.has5columns .linkList {
    width: 100%;
    clear: both;
  }
}
@media (max-width: 768px) {
  .fengoNav .navInner {
    height: auto;
  }
}
/*
 .d8888b. 8888888 888b     d888 8888888b.  888      8888888888
d88P  Y88b  888   8888b   d8888 888   Y88b 888      888
Y88b.       888   88888b.d88888 888    888 888      888
 "Y888b.    888   888Y88888P888 888   d88P 888      8888888
    "Y88b.  888   888 Y888P 888 8888888P"  888      888
      "888  888   888  Y8P  888 888        888      888
Y88b  d88P  888   888   "   888 888        888      888
 "Y8888P" 8888888 888       888 888        88888888 8888888888

888b    888        d8888 888     888
8888b   888       d88888 888     888
88888b  888      d88P888 888     888
888Y88b 888     d88P 888 Y88b   d88P
888 Y88b888    d88P  888  Y88b d88P
888  Y88888   d88P   888   Y88o88P
888   Y8888  d8888888888    Y888P
888    Y888 d88P     888     Y8P
*/
ul.SimpleNav {
  margin: 1px 0 0 -1em;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 101;
  background: #FFFFFF;
  list-style-type: none;
  border: solid 1px #e6e6e6;
  border-top: none;
  min-width: 175px;
}
ul.SimpleNav li,
ul.SimpleNav ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.stuckNav ul.SimpleNav {
  margin-top: 11px;
}

ul.SimpleNav li {
  margin: 0;
  padding: 0;
}

ul.SimpleNav li a {
  display: block;
  padding: 0.5em 1em;
  margin: 0;
}

div.navItem .SimpleNav a {
  font-weight: 500;
  font-size: 100%;
  color: #595959;
}
div.navItem .SimpleNav a:hover {
  color: #58595A;
  text-decoration: underline;
}
div.navItem .SimpleNav a:active {
  color: #58595A;
}
div.navItem .SimpleNav a:focus {
  color: #58595A;
}

/*
888             888
888             888
888             888
888888  8888b.  88888b.       88888b.   8888b.  888  888
888        "88b 888 "88b      888 "88b     "88b 888  888
888    .d888888 888  888      888  888 .d888888 Y88  88P
Y88b.  888  888 888 d88P      888  888 888  888  Y8bd8P
 "Y888 "Y888888 88888P"       888  888 "Y888888   Y88P
*/
.tab-nav {
  display: none;
}
@media only screen and (min-width: 767px) {
  .tab-nav {
    display: block;
  }
}
.tab-nav ul {
  padding: 0;
  height: 0;
  display: table;
  width: 100%;
}
.tab-nav ul li {
  width: 100%;
  list-style-type: none;
  border-right: 6px solid #FFFFFF;
}
.tab-nav ul li a {
  font-size: 25px;
  text-decoration: none;
  color: #757575;
  border-bottom: 1px solid #58595A;
  border-right: 1px solid #58595A;
  padding: 15px;
  display: block;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .tab-nav ul li a {
    font-size: 18px;
  }
}
.tab-nav ul li a:hover {
  text-decoration: none;
  background-color: #404040;
  color: #FFFFFF;
  border-bottom-color: #404040;
  border-right-color: #404040;
}
.tab-nav ul li a:active, .tab-nav ul li a:focus {
  background-color: #FFFFFF;
  color: #404040;
}
.tab-nav ul li a:focus {
  outline: 1px dotted #000000;
}
.tab-nav ul li.active {
  border-right: 6px solid #404040;
}
.tab-nav ul li.active a {
  border-right-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #404040;
}
.tab-nav ul li.active a:hover {
  border-right-color: #FFFFFF;
}
.tab-nav ul li a:hover {
  border-right-color: #404040;
}
.tab-nav ul li .endor-alert, .tab-nav ul li .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .tab-nav ul li i,
.tab-nav ul li .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .tab-nav ul li i, .tab-nav ul li .error-icon-red {
  display: none;
}
.tab-nav ul li.has-field-error a {
  color: #404040;
}
.tab-nav ul li.has-field-error a:hover {
  border-right-color: #404040;
  background-color: #404040;
  color: #FFFFFF;
}
.tab-nav ul li.has-field-error a:hover .endor-alert, .tab-nav ul li.has-field-error a:hover .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .tab-nav ul li.has-field-error a:hover i,
.tab-nav ul li.has-field-error a:hover .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .tab-nav ul li.has-field-error a:hover i {
  color: #FFFFFF;
}
.tab-nav ul li.has-field-error .error-icon-red {
  width: 10px;
}
.tab-nav ul li.has-field-error .endor-alert, .tab-nav ul li.has-field-error .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .tab-nav ul li.has-field-error i,
.tab-nav ul li.has-field-error .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .tab-nav ul li.has-field-error i, .tab-nav ul li.has-field-error .error-icon-red {
  display: inline;
}

/*
                 888 888
                 888 888
                 888 888
 .d8888b .d88b.  888 888  8888b.  88888b.  .d8888b   .d88b.
d88P"   d88""88b 888 888     "88b 888 "88b 88K      d8P  Y8b
888     888  888 888 888 .d888888 888  888 "Y8888b. 88888888
Y88b.   Y88..88P 888 888 888  888 888 d88P      X88 Y8b.
 "Y8888P "Y88P"  888 888 "Y888888 88888P"   88888P'  "Y8888
                                  888
                                  888
                                  888
88888b.   8888b.  888  888
888 "88b     "88b 888  888
888  888 .d888888 Y88  88P
888  888 888  888  Y8bd8P
888  888 "Y888888   Y88P
*/
.btn-collapse {
  display: block;
  color: #58595A;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid #58595A;
  line-height: 40px;
  margin-bottom: 19px;
  padding: 0 10px;
  pointer-events: auto;
}
@media only screen and (min-width: 767px) {
  .btn-collapse {
    display: none;
  }
}
.btn-collapse .endor-alert, .btn-collapse .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .btn-collapse i,
.btn-collapse .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .btn-collapse i {
  display: none;
}
.btn-collapse:active, .btn-collapse:focus, .btn-collapse:hover {
  color: #58595A;
}
.btn-collapse .arrow {
  float: right;
  font-weight: 500;
}
.btn-collapse .arrow:before {
  content: '\e834';
}
.btn-collapse.collapsed {
  color: #58595A;
  margin-bottom: 1px;
}
.btn-collapse.collapsed .arrow:before {
  content: '\e833';
}
.btn-collapse .arrow,
.btn-collapse .endor-alert,
.btn-collapse .endor-form .field-error .pw-match-icon.input-icon i,
.endor-form .field-error .pw-match-icon.input-icon .btn-collapse i,
.btn-collapse .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .btn-collapse i,
.btn-collapse span {
  pointer-events: none;
}

.has-field-error .btn-collapse {
  color: #58595A;
}
.has-field-error .endor-alert, .has-field-error .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .has-field-error i,
.has-field-error .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .has-field-error i {
  display: inline;
}

/*
                                                    888
                                                    888
                                                    888
 8888b.   .d8888b .d8888b .d88b.  888  888 88888b.  888888
    "88b d88P"   d88P"   d88""88b 888  888 888 "88b 888
.d888888 888     888     888  888 888  888 888  888 888
888  888 Y88b.   Y88b.   Y88..88P Y88b 888 888  888 Y88b.
"Y888888  "Y8888P "Y8888P "Y88P"   "Y88888 888  888  "Y888

88888b.   8888b.  888  888
888 "88b     "88b 888  888
888  888 .d888888 Y88  88P
888  888 888  888  Y8bd8P
888  888 "Y888888   Y88P
*/
.userInfo {
  position: relative;
}
.userInfo .flyout {
  position: absolute;
  width: 250px;
  right: 0;
  padding: 0 10px;
  margin-top: 5px;
  display: none;
  font-size: inherit;
  background-color: #F6F6F6;
}

.flyout-title {
  margin: 1em 0 0 !important;
  display: block !important;
  text-align: left;
}
.flyout-title span {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: #000000;
}
.flyout-title hr {
  border-top-color: #333333;
  margin: 1em 0 0;
}
.flyout-title .flyout-toggle {
  float: right;
  display: inline-block;
  color: #000000;
}

.profile-options ul {
  padding: 0;
  margin: 0;
}
.profile-options li {
  padding: 20px 40px;
  border-bottom: 1px solid #D0D0D0;
  line-height: 18px;
  list-style-type: none;
  text-align: left;
  position: relative;
}
.profile-options li a {
  font-size: 16px;
  color: #000000;
}
.profile-options li a:active, .profile-options li a:focus, .profile-options li a:hover {
  text-decoration: underline;
}
.profile-options li:before {
  content: '\e807';
  color: #000000;
  position: absolute;
  top: 47%;
  left: 10px;
  margin-top: -8px;
}
.profile-options li.last {
  border-bottom: 0;
}
.profile-options li.last a {
  font-weight: 700;
}
.profile-options li.last:before {
  content: '\e808';
}

/*
888b     d888  .d88888b.  888888b.  8888888 888      8888888888
8888b   d8888 d88P" "Y88b 888  "88b   888   888      888
88888b.d88888 888     888 888  .88P   888   888      888
888Y88888P888 888     888 8888888K.   888   888      8888888
888 Y888P 888 888     888 888  "Y88b  888   888      888
888  Y8P  888 888     888 888    888  888   888      888
888   "   888 Y88b. .d88P 888   d88P  888   888      888
888       888  "Y88888P"  8888888P" 8888888 88888888 8888888888

888b    888        d8888 888     888
8888b   888       d88888 888     888
88888b  888      d88P888 888     888
888Y88b 888     d88P 888 Y88b   d88P
888 Y88b888    d88P  888  Y88b d88P
888  Y88888   d88P   888   Y88o88P
888   Y8888  d8888888888    Y888P
888    Y888 d88P     888     Y8P
*/
.navbar-toggle {
  margin-right: 0;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .navbar-toggle {
    display: block;
  }
}

.navbar-toggle .icon-bar {
  background: #000000;
}

@media (max-width: 768px) {
  div.navItem {
    width: 100%;
    display: block;
    text-align: center;
    background: #E8E8E8;
    border-bottom: solid 1px #e6e6e6;
  }

  .container .navbar-collapse,
  .navbar-collapse.in {
    margin: 0;
    padding: 0;
  }

  .navbar-collapse a {
    padding: 1em;
    margin: 0;
    display: block;
  }
}
@media only screen and (max-width: 667px) {
  .optionBar {
    display: none;
    text-align: center;
    border-bottom: solid 1px #e6e6e6;
  }
  .optionBar.mobileActive {
    display: block;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .optionBar {
    width: 768px;
    margin-left: -23px;
    display: none;
    text-align: center;
    border-bottom: solid 1px #e6e6e6;
  }
  .optionBar.mobileActive {
    display: block;
  }
  .optionBar .container {
    margin-left: -30px;
    padding: 0;
  }
  .optionBar .userInfo {
    margin-left: 35px;
  }
}

/*
8888888b.  8888888888 88888888888     d8888 8888888 888
888  "Y88b 888            888        d88888   888   888
888    888 888            888       d88P888   888   888
888    888 8888888        888      d88P 888   888   888
888    888 888            888     d88P  888   888   888
888    888 888            888    d88P   888   888   888
888  .d88P 888            888   d8888888888   888   888
8888888P"  8888888888     888  d88P     888 8888888 88888888
*/
#product-detail-container {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}
#product-detail-container .product-detail-wrapper {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
#product-detail-container .back-to-previous {
  font-size: 16px;
  cursor: pointer;
  margin: 16px 0 0 0;
  display: inline-block;
}
#product-detail-container .back-to-previous img {
  width: 12px;
  height: 12px;
}
#product-detail-container .breadcrumb-container {
  list-style: none;
}
#product-detail-container .detail {
  margin: 20px 0 0 0;
  padding: 0 8px;
}
#product-detail-container .detail .conversion-to-points {
  border-bottom: 1px solid #58595A;
}
#product-detail-container .detail .mobileProductHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 0 24px 0;
}
#product-detail-container .detail .mobileProductHeader h1.productName {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}
#product-detail-container .detail .mobileProductHeader .detail #notification_bar {
  display: none;
}
#product-detail-container .detail .mobileProductHeader .product-widgets {
  display: inline-table;
  position: relative;
  height: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 10px;
  letter-spacing: 1.25px;
  line-height: 2.5em;
  margin: 8px 0;
  color: #fff;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget {
  display: inline-block;
  padding: 2px 5px;
  width: auto;
  border-radius: 12px;
  margin: 1px;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.sale {
  background-color: #D13913;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.refurb {
  background-color: #595959;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.download {
  background-color: #7157D9;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.new {
  background-color: #006618;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.living-green {
  background-color: #008075;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
#product-detail-container .detail .mobileProductHeader .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
#product-detail-container .detail .mobileProductHeader .priceDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  white-space: nowrap;
  font-weight: bold;
  float: left;
  width: 100%;
  color: #58595A;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .stockRemaining {
  text-align: center;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .itemPrice {
  font-size: 24px;
  line-height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .itemPrice .default-sku-price {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .itemPrice .default-sku-price.strikeout {
  text-decoration: line-through;
  color: #D0023E;
  font-weight: normal;
  font-size: 22px;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .itemPrice .sale-sku-price {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #000000;
}
#product-detail-container .detail .mobileProductHeader .priceDetails .productId {
  margin-top: 0.65em;
}
#product-detail-container .detail .product_container {
  display: block;
}
#product-detail-container .detail .product_container #normalProduct .pic {
  display: inline;
  position: relative;
  text-align: center;
}
#product-detail-container .detail .product_container #normalProduct .pic img {
  max-width: 100%;
  border-radius: 8px;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites {
  position: absolute;
  right: 0;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-self: flex-end;
  padding: 0px 0px 20px 20px;
  z-index: 1;
  cursor: pointer;
  width: initial;
  height: initial;
  border-radius: initial;
  margin: 0px;
  background: transparent;
  box-shadow: initial;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites span {
  display: inline-block;
  margin: 8px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: 1;
  cursor: pointer;
  background-color: #FFFFFF;
  transition: 0.2s ease all;
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/favorites-icon-black-GRM?fmt=png-alpha&$GRMIcon$") no-repeat center;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites img {
  display: none;
  width: 20px;
  height: 20px;
  margin: 10px;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites.favorited span {
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/heart-filled-R-icon-GRM?fmt=png-alpha&$GRMIcon$") no-repeat center;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites.favorited img {
  display: none;
  width: 20px;
  height: 20px;
  margin: 10px;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites:hover span {
  background-color: #FFFFFF;
  opacity: 1;
  transition: 0.2s ease all;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites.progress span {
  opacity: 0.3;
  cursor: progress;
}
#product-detail-container .detail .product_container #normalProduct .pic .add-to-favorites:hover.progress span {
  opacity: 0.3;
  cursor: progress;
}
#product-detail-container .detail .product_container #thumbnail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer;
  padding: 16px 16px 16px 22px;
}
#product-detail-container .detail .product_container #thumbnail-container .product-thumbnail {
  margin: 0 8px 0 0;
}
#product-detail-container .detail .product_container #thumbnail-container .product-thumbnail.activeImage.activeItem {
  border: solid 3px #006618;
}
#product-detail-container .detail .product_container #itemDetailCarousel .item img {
  display: block;
  width: 100%;
  height: auto;
}
#product-detail-container .detail .product_container .product-options-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
#product-detail-container .detail .product_container .product-options-container .product-option-label {
  padding: 0;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 768px) {
  #product-detail-container .detail .product_container .product-options-container .modal-content {
    width: 600px;
    height: 600px;
  }
  #product-detail-container .detail .product_container .product-options-container .modal-content > img {
    width: 100%;
  }
}
#product-detail-container .detail .product_container .product-options-container .product-option-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 24px 0 0 0;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches .swatch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches .swatch-container .swatch.product-option:hover {
  background-color: #F2F4F6;
  cursor: pointer;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches .swatch-container .swatch.product-option.selected {
  background-color: rgba(0, 138, 33, 0.1);
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches .swatch-container .swatch.product-option.selected + .selected-checkmark {
  height: 12px;
  width: 12px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: inherit;
  z-index: 1;
  position: relative;
  top: -10px;
  left: -10px;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .swatches .swatch-container .selected-checkmark {
  display: none;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .product-option {
  border: 1px solid #58595A;
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 8px 15px 0 0;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .product-option.active, #product-detail-container .detail .product_container .product-options-container .product-option-group .product-option.selected {
  border: 1px solid #006618;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .product-option.inactiveLink {
  background: linear-gradient(to left top, #FFFFFF calc(50% - 2px), #58595A, #FFFFFF calc(50%));
  opacity: .5;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .product-option a {
  padding: 10px 8px;
  display: inline-block;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  min-width: 80px;
  height: 40px;
  border-radius: 4px;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span {
  height: 100%;
  min-width: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  border-radius: 0px 4px 4px 0px;
  border-left: 1px solid #58595A;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span p {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0px 5px;
  border-radius: 4px;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value {
  justify-content: center;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span {
  width: 100%;
  margin-left: 0px;
  border-left: none;
  border-radius: 4px;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span p {
  margin-left: 0px;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink {
  background: none;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a {
  cursor: not-allowed;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a span p {
  background: linear-gradient(to left top, #ffffff calc(50% - 2px), #555555, #ffffff calc(50%));
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected {
  background: transparent;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span {
  border-left: 1px solid #008a21;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span p {
  background-color: rgba(0, 138, 33, 0.1);
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value {
  border-left: none;
}
#product-detail-container .detail .product_container .product-options-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value span {
  border-left: none;
}
#product-detail-container .detail .product_container .product-options-container .stockRemaining {
  margin: 8px 0;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 16px 0 0 0;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease,
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border: 1px solid #000000;
  margin: 8px 0;
  padding: 0px 8px;
  font-size: 24px;
  text-decoration: none;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 0;
}
#product-detail-container .detail .product_container .product-options-container .quantitySelect .quantity-modifiers input {
  width: 42px;
  height: 42px;
  margin: 8px 0;
  text-align: center;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
}
#product-detail-container .detail .product_container a.translate,
#product-detail-container .detail .product_container a.customizer,
#product-detail-container .detail .product_container a.cancel-customizer {
  display: inline-block;
  padding: 6px 12px;
  margin: 16px 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
}
#product-detail-container .detail .product_container a.translate:hover,
#product-detail-container .detail .product_container a.customizer:hover,
#product-detail-container .detail .product_container a.cancel-customizer:hover {
  background-color: #006618;
  color: #FFFFFF;
  border: 1px solid #006618;
}
#product-detail-container .detail .product_container #productAddToCartListForm {
  margin: 16px 0 0 0;
}
#product-detail-container .detail .product_container .productgridtable {
  width: 100%;
}
#product-detail-container .detail .product_container .productgridtable td {
  vertical-align: middle !important;
  padding: 12px 8px;
}
#product-detail-container .detail .product_container .productgridtable tbody td {
  border: 0.5px solid #EEEEEE;
}
#product-detail-container .detail .product_container .productgridtable .bulkprice {
  cursor: pointer;
  text-decoration: underline;
}
#product-detail-container .detail .product_container .productgridtable .bulk tbody tr:nth-of-type(even) {
  background-color: #DEDFE1;
}
#product-detail-container .detail .product_container .quantity-grid-header {
  background-color: #000000;
  background-color: __buttonBackgroundColor__;
  color: #FFFFFF;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#product-detail-container .detail .product_container .quantity-grid-header td {
  border-width: 0 0.5px 0 0;
  border-style: solid;
  border-color: #FFFFFF;
}
#product-detail-container .detail .product_container .quantity-grid-row {
  background-color: #FFFFFF;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0 12px 8px;
}
#product-detail-container .detail .product_container .xx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#product-detail-container .detail .product_container .xx > span {
  width: 100%;
  text-align: left;
  padding: 16px 0 16px 8px;
  border: 1px solid #EEEEEE;
}
#product-detail-container .detail .product_container .xx .quantitySelect {
  border: 1px solid #EEEEEE;
  width: 100%;
  padding: 0 0 0 8px;
  display: block !important;
  margin: 0;
}
#product-detail-container .detail .product_container .detailAlerts {
  margin: 16px 0 0 0;
}
#product-detail-container .detail .product_container .purchase-acknowledgement-container {
  border-radius: 2px;
  background-color: #4A5465;
  display: flex;
}
#product-detail-container .detail .product_container .purchase-acknowledgement-container label {
  color: #FFFFFF;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  display: block;
  padding: 8px 25px 10px 0px;
}
#product-detail-container .detail .product_container .purchase-acknowledgement-container label p {
  margin: 0px;
}
#product-detail-container .detail .product_container .purchase-acknowledgement-container input[type='checkbox'] {
  float: left;
  margin: 12px;
}
#product-detail-container .detail .product_container .acknowledgement-alert {
  background-color: #D0023E !important;
}
#product-detail-container .detail .product_container .detail-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 24px 0 0 0;
}
#product-detail-container .detail .product_container .detail-button-container .add-to-cart {
  text-align: center;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 48px;
  padding: 0;
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
#product-detail-container .detail .product_container .detail-button-container .addToCartPlateau,
#product-detail-container .detail .product_container .detail-button-container .order-this-item {
  width: 100%;
  margin: 0 8px;
  color: #FFFFFF;
}
#product-detail-container .detail .product_container .detail-button-container .back-to-list {
  width: 50%;
  margin: 0 8px;
}
#product-detail-container .detail .product_container .shipping-details {
  padding: 16px 0 0 0;
}
#product-detail-container .detail .product_container .shipping-details span {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
#product-detail-container .detail .product_container .product-detail-tabs {
  margin: 48px 0 0 0;
}
#product-detail-container .detail .product_container .product-detail-tabs .tabs > section {
  margin: 24px 0 0 0;
}
#product-detail-container .detail .product_container .product-detail-tabs .tabs > ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
}
#product-detail-container .detail .product_container .product-detail-tab-info {
  padding: 24px 0 0 0;
  color: #58595A;
  font-size: 12px;
  line-height: 22px;
}
#product-detail-container .detail .product_container .product-detail-tab-info > span:not(.active),
#product-detail-container .detail .product_container .product-detail-tab-info > div:not(.active) {
  display: none;
}
#product-detail-container .detail .bulk {
  width: 100%;
  border-collapse: separate;
}
#product-detail-container .detail .bulk thead tr {
  background-color: #595959;
}
#product-detail-container .detail .bulk thead tr th {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  padding: 12px 16px;
  border: 1px solid #595959;
}
#product-detail-container .detail .bulk thead tr th:first-child {
  border-radius: 2px 0 0 0;
  border-right: 1px solid #FFFFFF;
}
#product-detail-container .detail .bulk thead tr th:last-child {
  border-radius: 0 2px 0 0;
}
#product-detail-container .detail .bulk tbody tr td {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  border: 1px solid #EEEEEE;
  padding: 12px 16px;
}
#product-detail-container .detail .bulk tbody tr:last-child > td:first-child {
  border-radius: 0 0 0 2px;
}
#product-detail-container .detail .bulk tbody tr:last-child > td:last-child {
  border-radius: 0 0 2px 0;
}
#product-detail-container .detail .long-description ul {
  list-style: disc;
}
#product-detail-container .related-items-container {
  background-color: #F8F8F9;
}

.zoomContainer {
  display: none;
}

@media (max-width: 575.98px) {
  #product-detail-container .product-detail-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  #product-detail-container .detail {
    padding: 0px;
  }
}
@media all and (min-width: 576px) {
  #product-detail-container .detail .product_container .product-options-container .product-option-label {
    padding: 0;
  }
  #product-detail-container .detail .product_container .product-options-container .product-option-group .swatches {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  #product-detail-container .detail .product_container .product-options-container .detail-button-container {
    width: 75%;
  }
}
@media all and (min-width: 768px) {
  #product-detail-container .product-detail-wrapper {
    width: 750px;
    margin: 0 auto;
    padding: 0 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #product-detail-container .product-detail-wrapper .detail .mobileProductHeader .priceDetails {
    padding-bottom: 16px;
  }
  #product-detail-container .product-detail-wrapper .detail .mobileProductHeader .priceDetails .itemPrice {
    font-size: 32px;
    line-height: 38px;
  }
  #product-detail-container .product-detail-wrapper .detail .mobileProductHeader .priceDetails .productId {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container #normalProduct {
    margin: 0;
    padding: 0 16px 0 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container #thumbnail-container {
    padding: 0 16px 0 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 50%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-options-container {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-options-container .product-option-group {
    width: 100%;
    padding: 16px 0 0 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-options-container .product-option-group .swatches {
    width: 100%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .detail-button-container {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 16px 0 0 0;
    padding: 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-detail-tabs {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 600px;
    margin: 48px auto 24px;
  }
}
@media all and (min-width: 992px) {
  #product-detail-container .product-detail-wrapper {
    width: 970px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
  }
  #product-detail-container .product-detail-wrapper .detail .mobileProductHeader {
    padding: 0 0 0 50%;
  }
  #product-detail-container .product-detail-wrapper .detail .mobileProductHeader .priceDetails {
    border-bottom: 1px solid #D8D8D8;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container {
    margin: 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container #normalProduct {
    margin: 0;
    width: 50%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container #thumbnail-container {
    padding: 0 16px 0 0;
    width: 50%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-options-container {
    width: 50%;
    margin: 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-options-container .product-option-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .detail-button-container {
    width: 100%;
    padding: 0;
    margin: 16px 0 0 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-detail-tab-info {
    padding: 24px 84px 0 84px;
  }
  #product-detail-container .related-items-grid-items .gridItemProduct {
    width: 200px;
  }
}
@media all and (min-width: 1280px) {
  #product-detail-container .product-detail-wrapper {
    padding: 0;
    width: 920px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #product-detail-container .product-detail-wrapper .detail {
    padding: 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container #normalProduct {
    padding: 0 42px 0 0;
  }
  #product-detail-container .product-detail-wrapper .detail .product_container .product-detail-tab-info {
    width: 600px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
}
.total_value {
  float: right;
  width: 15%;
  text-align: right;
}

.flowers.grm-form .grm-form-group.floating.has-error .select-container .customSelect {
  border: 1px solid #D0023E;
}
.flowers.grm-form .grm-form-group.floating .select-container img {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
.flowers.grm-form .grm-form-group.floating .select-container .custom-select {
  border: 1px solid #000000;
  padding: 11px 12px 8px;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.flowers.grm-form .grm-form-group.floating .select-container .customSelect {
  color: #000000;
  border: 1px solid #666666;
  border-radius: 2px;
  padding: 16px 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
}
.flowers.grm-form .grm-form-group.floating .select-container .customSelect .customSelectInner {
  position: relative;
  top: 2px;
  font-size: 12px;
}
.flowers.grm-form .grm-form-group.floating .select-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 6px 0 2px 16px;
}

#imgPreviewModal .modal-content {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bestbuy .best-buy-error-note {
  padding: 0 6%;
  display: none;
}
.bestbuy .pt-8 {
  padding-top: 8px;
}
.bestbuy .margin-auto {
  margin: 0px 0px;
}
.bestbuy .hidden-error-note {
  display: none;
}
.bestbuy .required-color-code {
  color: #D0023E;
}
.bestbuy .pt-10 {
  padding-top: 10px;
}
.bestbuy .has-error-icon {
  width: 4%;
  padding-bottom: 4px;
}
.bestbuy .has-error-zipcode-input {
  border-color: #D0023E;
}
.bestbuy .has-error-label {
  color: #D0023E;
  font-size: 10px;
}
.bestbuy a.check-availability-btn {
  background-color: #EFEFEF;
}

.addToCart-btn-disabled-bestbuy {
  cursor: not-allowed;
  pointer-events: none;
  background-color: gainsboro !important;
}

.bestbuy-success-mark {
  height: 14px;
  width: 14px;
  display: inherit;
  position: relative;
  top: -12px;
  left: 270px;
}

.input-success-mark {
  background-color: rgba(0, 138, 33, 0.1);
}

.purchase-acknowledgement-container a {
  color: #fff !important;
  text-decoration: underline;
}

.purchase-acknowledgement-container a:hover {
  color: #fff !important;
  text-decoration: none;
}

.grm-alert-message a {
  color: #fff !important;
  text-decoration: underline !important;
}

.grm-alert-message a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.details-description ul {
  list-style: disc;
}

.eicon-readmore-arrow-down {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20330%20330'%20style='enable-background:new%200%200%20230%20230;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
}

.readmore-icon-align {
  display: flex;
  justify-content: center;
  float: none !important;
}

.readmore-rotate-icon {
  rotate: 180deg;
}

.long-description > table {
  width: 100%;
}

.toggle-text-link {
  color: #008A21;
}

.readmore-pointer {
  cursor: pointer;
}

#product_description_info {
  height: 200px;
  overflow: hidden;
}

.readicon-center-align {
  display: flex;
  justify-content: center;
}

.dateinputoption {
  border: 1px solid #666666;
}

@media (max-width: 600px) {
  #product-detail-container .detail .product_container .product-options-container .product-option-group {
    display: block;
  }

  .datesection-mobile-align {
    width: 45% !important;
  }
}
@media (min-width: 601px) and (max-width: 768px) {
  .dateinputoption {
    border: 1px solid #666666;
    width: 75% !important;
  }

  #product-detail-container .detail .product_container .product-options-container .product-option-group {
    display: block;
  }

  .datesection-mobile-align {
    width: 36% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #product-detail-container .detail .product_container .product-options-container .product-option-group {
    display: block;
  }

  .datesection-mobile-align {
    width: 38% !important;
  }
}
.shadow-in-desc {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255, 255, 255, 0) 5%, #fff);
  bottom: 45px;
}

/***4052 init***/
.modalSS {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /*Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.SSmodal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
#closeSS {
  color: #aaaaaa;
  float: right;
  font-size: 20px;
  font-weight: bold;
}

#closeSS:hover,
#closeSS:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.SSBtn {
  padding: .45%;
}

.SSField {
  width: 75%;
}

.SSHeader {
  margin-bottom: 2%;
  font-size: x-large;
}

#SSErrorMsg {
  color: #D0023E;
}

#SSErrorMsgCheckBox {
  color: #D0023E;
}

.SSCheckboxMsg {
  font-size: large;
  font-weight: bold;
}

#ssToggle {
  cursor: pointer;
  font-size: x-large;
  position: relative;
  left: -30px;
  background-color: white;
}

.SSactivity-indicator {
  display: block;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.SSactivity-indicator .loader {
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid #DEDFE1;
  border-right: 5px solid #DEDFE1;
  border-bottom: 5px solid #DEDFE1;
  border-left: 5px solid #008A21;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.SSactivity-indicator .loader-text {
  margin-top: 12px;
  color: #8C8F93;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 14px;
  text-align: center;
}
.SSactivity-indicator .loader, .SSactivity-indicator .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

/***4052 end***/
#product-detail-container {
  /* Hide scrollbar */
  /* Hide scrollbar for Firefox */
}
#product-detail-container .imglistcontainer {
  position: relative;
  overflow: hidden;
}
#product-detail-container .imglistcontent {
  padding: 10px;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 20px;
  /* Adjust margins as needed */
}
#product-detail-container .imglistinner-content {
  display: inline-block;
}
#product-detail-container .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #333;
  display: none;
  /* Initially hide arrows */
}
#product-detail-container .arrow.left {
  left: 0;
}
#product-detail-container .arrow.right {
  right: -18px;
}
#product-detail-container .imglistcontent::-webkit-scrollbar {
  display: none;
}
#product-detail-container .imglistcontent {
  scrollbar-width: none;
}
#product-detail-container .thumbnail-image-right-arrow-align {
  float: right;
  padding-top: 20px;
}

.content-cards-container .tileLink img {
  border-radius: 8px;
}

/*
 .d8888b.        d8888 8888888b. 88888888888
d88P  Y88b      d88888 888   Y88b    888
888    888     d88P888 888    888    888
888           d88P 888 888   d88P    888
888          d88P  888 8888888P"     888
888    888  d88P   888 888 T88b      888
Y88b  d88P d8888888888 888  T88b     888
 "Y8888P" d88P     888 888   T88b    888
*/
.cart .empty-cart-message,
.favorites .empty-cart-message {
  margin-top: 40px;
}
.cart .empty-cart-message a,
.favorites .empty-cart-message a {
  text-decoration: underline;
  color: #58595A;
}
.cart .optionEditContainer,
.favorites .optionEditContainer {
  display: none;
}
.cart .optionEditContainer .product-option-group,
.favorites .optionEditContainer .product-option-group {
  display: block;
  width: 100%;
  clear: both;
  color: #404040;
}
.cart .optionEditContainer .colorSelect,
.cart .optionEditContainer .quantitySelect,
.cart .optionEditContainer .sizeSelect,
.cart .optionEditContainer .skuGenType1Select,
.cart .optionEditContainer .skuGenType2Select,
.cart .optionEditContainer .skuGenType3Select,
.cart .optionEditContainer .skuGenType4Select,
.cart .optionEditContainer .skuGenType5Select,
.favorites .optionEditContainer .colorSelect,
.favorites .optionEditContainer .quantitySelect,
.favorites .optionEditContainer .sizeSelect,
.favorites .optionEditContainer .skuGenType1Select,
.favorites .optionEditContainer .skuGenType2Select,
.favorites .optionEditContainer .skuGenType3Select,
.favorites .optionEditContainer .skuGenType4Select,
.favorites .optionEditContainer .skuGenType5Select {
  float: none;
  clear: both;
}
.cart .optionEditContainer .quantitySelect,
.favorites .optionEditContainer .quantitySelect {
  margin-top: 10px;
}
.cart .optionEditContainer .personalizationEdit span,
.favorites .optionEditContainer .personalizationEdit span {
  display: block;
}
.cart .optionEditContainer .personalizationEdit input,
.favorites .optionEditContainer .personalizationEdit input {
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 667px) {
  .cart .optionEditContainer .personalizationEdit input,
  .favorites .optionEditContainer .personalizationEdit input {
    border: solid 1px #CCCCCC;
    padding: 5px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .optionEditContainer .personalizationEdit input,
  .favorites .optionEditContainer .personalizationEdit input {
    border: solid 1px #CCCCCC;
    padding: 5px;
  }
}
.cart h1,
.favorites h1 {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  line-height: 29px;
}
.cart .empty-cart,
.favorites .empty-cart {
  min-height: 300px;
}
.cart .empty-cart h2,
.favorites .empty-cart h2 {
  line-height: 200px;
}
.cart .cart-body,
.cart .cart-header,
.cart .cart-summary,
.favorites .cart-body,
.favorites .cart-header,
.favorites .cart-summary {
  position: relative;
}
.cart .itemHeader,
.favorites .itemHeader {
  display: none;
  background: #595959;
  padding: 10px 0;
  font-size: 150%;
  font-weight: 100;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #FFFFFF;
}
.cart .itemHeader .col-md-3.no-padding-left,
.favorites .itemHeader .col-md-3.no-padding-left {
  padding-left: 20px;
}
.cart .itemHeader .padded,
.favorites .itemHeader .padded {
  padding: 0 20px;
}
@media only screen and (min-width: 940px) {
  .cart .itemHeader,
  .favorites .itemHeader {
    display: block;
  }
}
.cart .itemHeader .col-md-4,
.favorites .itemHeader .col-md-4 {
  padding-left: 0;
}
.cart .cart-body .item,
.favorites .cart-body .item {
  border: solid 1px #e6e6e6;
  padding: 1px;
  position: relative;
}
@media only screen and (min-width: 767px) {
  .cart .cart-body .item,
  .favorites .cart-body .item {
    border-top: 0;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item,
  .favorites .cart-body .item {
    border: none;
    margin-bottom: 10px;
    border-bottom: solid 1px #e6e6e6;
  }
}
@media only screen and (min-width: 940px) {
  .cart .cart-body .item .product-options .col-sm-1,
  .cart .cart-body .item .product-options .colorSelect,
  .cart .cart-body .item .product-options .quantitySelect,
  .cart .cart-body .item .col-md-4.item-col,
  .favorites .cart-body .item .product-options .col-sm-1,
  .favorites .cart-body .item .product-options .colorSelect,
  .favorites .cart-body .item .product-options .quantitySelect,
  .favorites .cart-body .item .col-md-4.item-col {
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
    min-height: 140px;
  }
}
.cart .cart-body .item .item-col,
.cart .cart-body .item .itemDesc,
.cart .cart-body .item .itemOptions,
.favorites .cart-body .item .item-col,
.favorites .cart-body .item .itemDesc,
.favorites .cart-body .item .itemOptions {
  padding: 20px;
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .item-col,
  .cart .cart-body .item .itemDesc,
  .cart .cart-body .item .itemOptions,
  .favorites .cart-body .item .item-col,
  .favorites .cart-body .item .itemDesc,
  .favorites .cart-body .item .itemOptions {
    padding: 0;
    top: -60px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .cart-body .item .item-col .optionEdit,
  .cart .cart-body .item .itemDesc .optionEdit,
  .cart .cart-body .item .itemOptions .optionEdit,
  .favorites .cart-body .item .item-col .optionEdit,
  .favorites .cart-body .item .itemDesc .optionEdit,
  .favorites .cart-body .item .itemOptions .optionEdit {
    position: relative;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .itemDesc br,
  .favorites .cart-body .item .itemDesc br {
    display: none;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .itemDesc .btn-trash,
  .favorites .cart-body .item .itemDesc .btn-trash {
    left: -5px;
  }
}
@media only screen and (max-width: 320px) {
  .cart .cart-body .item .itemDesc .btn-trash,
  .favorites .cart-body .item .itemDesc .btn-trash {
    left: 16px;
    top: 8px;
  }
}
.cart .cart-body .item .itemOptions h3,
.favorites .cart-body .item .itemOptions h3 {
  font-weight: 700;
}
.cart .cart-body .item .itemImage img,
.favorites .cart-body .item .itemImage img {
  width: 100%;
  height: auto;
  border: 1px solid #000000;
}
.cart .cart-body .item .itemDescription .description,
.favorites .cart-body .item .itemDescription .description {
  font-size: 140%;
  font-size: 18px;
  font-weight: 100;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
.cart .cart-body .item .itemDescription .description a,
.favorites .cart-body .item .itemDescription .description a {
  color: #000000;
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .itemDescription .description,
  .favorites .cart-body .item .itemDescription .description {
    font-size: 100%;
  }
}
.cart .cart-body .item .in-stock,
.favorites .cart-body .item .in-stock {
  color: #008000;
}
.cart .cart-body .item .out-of-stock,
.favorites .cart-body .item .out-of-stock {
  color: #FF0000;
}
.cart .cart-body .item .itemDescription .productId,
.favorites .cart-body .item .itemDescription .productId {
  font-size: 14px;
  color: #404040;
}
.cart .cart-body .item .itemDescription .productId .productIdstyle,
.favorites .cart-body .item .itemDescription .productId .productIdstyle {
  color: #404040;
  font-weight: bold;
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .itemDescription .productId,
  .favorites .cart-body .item .itemDescription .productId {
    display: block;
    font-size: 75%;
  }
}
.cart .cart-body .item .favorites-link,
.favorites .cart-body .item .favorites-link {
  padding: 10px 15px 0;
}
@media only screen and (min-width: 767px) {
  .cart .cart-body .item .favorites-link,
  .favorites .cart-body .item .favorites-link {
    text-align: right;
    padding: 20px 0;
  }
}
.cart .cart-body .item .favorites-link a,
.favorites .cart-body .item .favorites-link a {
  text-decoration: underline;
}
.cart .cart-body .item .cart-icon,
.cart .cart-body .item .endor-heart,
.cart .cart-body .item .endor-heart-filled,
.cart .cart-body .item .heart-icon,
.favorites .cart-body .item .cart-icon,
.favorites .cart-body .item .endor-heart,
.favorites .cart-body .item .endor-heart-filled,
.favorites .cart-body .item .heart-icon {
  float: left;
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  font-size: 30px;
  color: #404040;
  left: 5px;
  top: 2px;
}
@media only screen and (min-width: 767px) {
  .cart .cart-body .item .cart-icon,
  .cart .cart-body .item .endor-heart,
  .cart .cart-body .item .endor-heart-filled,
  .cart .cart-body .item .heart-icon,
  .favorites .cart-body .item .cart-icon,
  .favorites .cart-body .item .endor-heart,
  .favorites .cart-body .item .endor-heart-filled,
  .favorites .cart-body .item .heart-icon {
    float: none;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .cart-icon,
  .cart .cart-body .item .endor-heart,
  .cart .cart-body .item .endor-heart-filled,
  .cart .cart-body .item .heart-icon,
  .favorites .cart-body .item .cart-icon,
  .favorites .cart-body .item .endor-heart,
  .favorites .cart-body .item .endor-heart-filled,
  .favorites .cart-body .item .heart-icon {
    font-size: 24px;
  }
}
.cart .cart-body .item .cart-icon i:hover,
.cart .cart-body .item .endor-heart i:hover,
.cart .cart-body .item .endor-heart-filled i:hover,
.cart .cart-body .item .heart-icon i:hover,
.favorites .cart-body .item .cart-icon i:hover,
.favorites .cart-body .item .endor-heart i:hover,
.favorites .cart-body .item .endor-heart-filled i:hover,
.favorites .cart-body .item .heart-icon i:hover {
  color: #000000;
}
.cart .cart-body .item .progress,
.favorites .cart-body .item .progress {
  opacity: 0.3;
  cursor: progress;
}
.cart .cart-body .item .editIcon,
.favorites .cart-body .item .editIcon {
  margin-top: 10px;
}
.cart .cart-body .item .bordered,
.favorites .cart-body .item .bordered {
  padding-left: 5px;
}
.cart .cart-body .item .price-container,
.favorites .cart-body .item .price-container {
  position: relative;
  padding: 20px 20px 20px 0;
}
.cart .cart-body .item .btn-primary,
.favorites .cart-body .item .btn-primary {
  position: relative;
  width: 100%;
}
.cart .cart-body .item .btn-wrapper,
.favorites .cart-body .item .btn-wrapper {
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 20px 0 0 20px;
}
@media only screen and (min-width: 767px) {
  .cart .cart-body .item .btn-wrapper,
  .favorites .cart-body .item .btn-wrapper {
    position: absolute;
    padding: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .btn-edit,
  .favorites .cart-body .item .btn-edit {
    width: 100%;
    top: -48px;
    right: 0;
    width: 1em;
    left: auto;
  }
}
@media only screen and (max-width: 667px) and (max-width: 320px) {
  .cart .cart-body .item .btn-edit,
  .favorites .cart-body .item .btn-edit {
    top: -30px;
    right: -9px;
  }
}

.cart .cart-body .item .disabled,
.favorites .cart-body .item .disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.cart .cart-summary,
.favorites .cart-summary {
  padding-top: 10px;
}
.cart .cart-summary .subtotal-info,
.favorites .cart-summary .subtotal-info {
  padding-right: 0;
}
.cart .cart-summary .subtotal-info .subtotal-text,
.favorites .cart-summary .subtotal-info .subtotal-text {
  color: #808080;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  left: -15px;
  position: relative;
}
.cart .cart-summary .subtotal-info .subtotal,
.favorites .cart-summary .subtotal-info .subtotal {
  margin: 10px 0 5px;
}
@media only screen and (max-width: 667px) {
  .cart .cart-summary .subtotal-info .subtotal,
  .favorites .cart-summary .subtotal-info .subtotal {
    margin-top: 30px;
  }
}
.cart .cart-summary .subtotal-info .text-left,
.cart .cart-summary .subtotal-info .text-right,
.favorites .cart-summary .subtotal-info .text-left,
.favorites .cart-summary .subtotal-info .text-right {
  display: inline-block;
  line-height: 20px;
}
.cart .cart-summary .subtotal-info .text-left,
.favorites .cart-summary .subtotal-info .text-left {
  width: 60%;
  float: left;
  text-align: left;
  position: relative;
}
.cart .cart-summary .subtotal-info .text-right,
.favorites .cart-summary .subtotal-info .text-right {
  width: 40%;
  float: right;
  position: relative;
  text-align: right;
}
.cart .cart-summary .subtotal-info .price,
.favorites .cart-summary .subtotal-info .price {
  font-size: 26px;
  color: #000000;
  font-weight: 700;
}
.cart .cart-summary .subtotal-info .info,
.cart .cart-summary .subtotal-info .promoCode,
.favorites .cart-summary .subtotal-info .info,
.favorites .cart-summary .subtotal-info .promoCode {
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 667px) {
  .cart .cart-summary .promoCode .input-group,
  .favorites .cart-summary .promoCode .input-group {
    width: 100%;
    margin-bottom: 30px;
  }
  .cart .cart-summary .taxShipping,
  .favorites .cart-summary .taxShipping {
    margin-bottom: 20px;
  }
}
.cart .cart-summary .inputPromoCode,
.favorites .cart-summary .inputPromoCode {
  height: 54px;
  border-radius: 0;
  -webkit-border-radius: 0;
  max-width: 150px;
}
@media only screen and (max-width: 667px) {
  .cart .cart-summary .inputPromoCode,
  .favorites .cart-summary .inputPromoCode {
    max-width: 274px;
  }
}
@media only screen and (max-width: 320px) {
  .cart .cart-summary .inputPromoCode,
  .favorites .cart-summary .inputPromoCode {
    max-width: 219px;
  }
}
.cart .cart-summary .lt-ie9 .inputPromoCode,
.favorites .cart-summary .lt-ie9 .inputPromoCode {
  max-width: 150px;
}
.cart .cart-summary .promoCode .input-group,
.favorites .cart-summary .promoCode .input-group {
  font-size: 18px;
  margin: 10px 0;
}
.cart .cart-summary .promoCode .input-group:focus,
.favorites .cart-summary .promoCode .input-group:focus {
  border: 2px solid #000000;
}
.cart .cart-summary .promoCode .input-group input,
.favorites .cart-summary .promoCode .input-group input {
  border: 1px solid #808080;
}
.cart .cart-summary .promoCode .input-group input::-webkit-input-placeholder,
.favorites .cart-summary .promoCode .input-group input::-webkit-input-placeholder {
  font-size: 18px;
}
.cart .cart-summary .promoCode .input-group input:-moz-placeholder,
.favorites .cart-summary .promoCode .input-group input:-moz-placeholder {
  font-size: 18px;
}
.cart .cart-summary .promoCode .input-group input::-moz-placeholder,
.favorites .cart-summary .promoCode .input-group input::-moz-placeholder {
  font-size: 18px;
}
.cart .cart-summary .promoCode .input-group input:-ms-input-placeholder,
.favorites .cart-summary .promoCode .input-group input:-ms-input-placeholder {
  font-size: 18px;
}
.cart .cart-summary .promoCode .input-group .input-group-btn .btn-primary-alt,
.favorites .cart-summary .promoCode .input-group .input-group-btn .btn-primary-alt {
  font-size: 18px;
  height: 54px;
  border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #808080;
  border: 0;
  margin-left: 0;
  color: #FFFFFF;
}
.cart .btn-checkout,
.favorites .btn-checkout {
  float: right;
  margin: 10px 0;
  width: 100%;
}
.cart .buttons,
.cart .colorSelect,
.cart .quantitySelect,
.cart .sizeSelect,
.cart .skuGenType1Select,
.cart .skuGenType2Select,
.cart .skuGenType3Select,
.cart .skuGenType4Select,
.cart .skuGenType5Select,
.favorites .buttons,
.favorites .colorSelect,
.favorites .quantitySelect,
.favorites .sizeSelect,
.favorites .skuGenType1Select,
.favorites .skuGenType2Select,
.favorites .skuGenType3Select,
.favorites .skuGenType4Select,
.favorites .skuGenType5Select {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.cart .shippingSelect p,
.favorites .shippingSelect p {
  font-size: 75%;
}
.cart div h3,
.favorites div h3 {
  font-size: 100%;
  font-weight: 600;
  margin-top: 0;
}
.cart .swatches,
.favorites .swatches {
  float: left;
}
.cart .checkoutItems .item div.swatches,
.favorites .checkoutItems .item div.swatches {
  padding: 0;
}
.cart .colorSelect .swatches .swatch,
.favorites .colorSelect .swatches .swatch {
  float: left;
  margin-right: 2px;
  margin-bottom: 1em;
  border: solid 3px #FFFFFF;
}
.cart .colorSelect .swatches .swatch a,
.favorites .colorSelect .swatches .swatch a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  font-size: 16px;
}
.cart .colorSelect .swatches .swatch.hover, .cart .colorSelect .swatches .swatch.selected, .cart .colorSelect .swatches .swatch:hover,
.favorites .colorSelect .swatches .swatch.hover,
.favorites .colorSelect .swatches .swatch.selected,
.favorites .colorSelect .swatches .swatch:hover {
  border-radius: 3px;
  border: solid 3px #000000;
}
.cart .colorSelect .swatches .strikeThrough,
.favorites .colorSelect .swatches .strikeThrough {
  opacity: 0.5;
}
.cart .colorSelect .swatches .strikeThrough a,
.favorites .colorSelect .swatches .strikeThrough a {
  cursor: default;
}
.cart .colorSelect .swatches .strikeThrough a:focus,
.favorites .colorSelect .swatches .strikeThrough a:focus {
  outline-offset: 0;
}
.cart .taxShipping,
.favorites .taxShipping {
  text-align: right;
}
.cart .sizeSelect .swatches .swatch, .cart .skuGenType1Select .swatches .swatch, .cart .colorSelect .swatches .swatch,
.cart .skuGenType2Select .swatches .swatch,
.cart .skuGenType3Select .swatches .swatch,
.cart .skuGenType4Select .swatches .swatch,
.cart .skuGenType5Select .swatches .swatch,
.favorites .sizeSelect .swatches .swatch,
.favorites .skuGenType1Select .swatches .swatch,
.favorites .colorSelect .swatches .swatch,
.favorites .skuGenType2Select .swatches .swatch,
.favorites .skuGenType3Select .swatches .swatch,
.favorites .skuGenType4Select .swatches .swatch,
.favorites .skuGenType5Select .swatches .swatch {
  float: left;
  margin-right: 2px;
  text-align: center;
  line-height: 32px;
  margin-bottom: 1em;
  border: solid 3px #FFFFFF;
  min-width: 40px;
}
.cart .sizeSelect .swatches .swatch a, .cart .skuGenType1Select .swatches .swatch a, .cart .colorSelect .swatches .swatch a,
.cart .skuGenType2Select .swatches .swatch a,
.cart .skuGenType3Select .swatches .swatch a,
.cart .skuGenType4Select .swatches .swatch a,
.cart .skuGenType5Select .swatches .swatch a,
.favorites .sizeSelect .swatches .swatch a,
.favorites .skuGenType1Select .swatches .swatch a,
.favorites .colorSelect .swatches .swatch a,
.favorites .skuGenType2Select .swatches .swatch a,
.favorites .skuGenType3Select .swatches .swatch a,
.favorites .skuGenType4Select .swatches .swatch a,
.favorites .skuGenType5Select .swatches .swatch a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000000;
  border: solid 1px #000000;
  font-size: 16px;
  padding: 0 0.5em;
}
.cart .sizeSelect .swatches .swatch a:hover, .cart .skuGenType1Select .swatches .swatch a:hover, .cart .colorSelect .swatches .swatch a:hover,
.cart .skuGenType2Select .swatches .swatch a:hover,
.cart .skuGenType3Select .swatches .swatch a:hover,
.cart .skuGenType4Select .swatches .swatch a:hover,
.cart .skuGenType5Select .swatches .swatch a:hover,
.favorites .sizeSelect .swatches .swatch a:hover,
.favorites .skuGenType1Select .swatches .swatch a:hover,
.favorites .colorSelect .swatches .swatch a:hover,
.favorites .skuGenType2Select .swatches .swatch a:hover,
.favorites .skuGenType3Select .swatches .swatch a:hover,
.favorites .skuGenType4Select .swatches .swatch a:hover,
.favorites .skuGenType5Select .swatches .swatch a:hover {
  text-decoration: none;
}
.cart .sizeSelect .swatches .swatch.selected, .cart .skuGenType1Select .swatches .swatch.selected, .cart .colorSelect .swatches .swatch.selected,
.cart .skuGenType2Select .swatches .swatch.selected,
.cart .skuGenType3Select .swatches .swatch.selected,
.cart .skuGenType4Select .swatches .swatch.selected,
.cart .skuGenType5Select .swatches .swatch.selected,
.favorites .sizeSelect .swatches .swatch.selected,
.favorites .skuGenType1Select .swatches .swatch.selected,
.favorites .colorSelect .swatches .swatch.selected,
.favorites .skuGenType2Select .swatches .swatch.selected,
.favorites .skuGenType3Select .swatches .swatch.selected,
.favorites .skuGenType4Select .swatches .swatch.selected,
.favorites .skuGenType5Select .swatches .swatch.selected {
  border: solid 3px #000000;
}
.cart .sizeSelect .swatches .swatch.selected a, .cart .skuGenType1Select .swatches .swatch.selected a, .cart .colorSelect .swatches .swatch.selected a,
.cart .skuGenType2Select .swatches .swatch.selected a,
.cart .skuGenType3Select .swatches .swatch.selected a,
.cart .skuGenType4Select .swatches .swatch.selected a,
.cart .skuGenType5Select .swatches .swatch.selected a,
.favorites .sizeSelect .swatches .swatch.selected a,
.favorites .skuGenType1Select .swatches .swatch.selected a,
.favorites .colorSelect .swatches .swatch.selected a,
.favorites .skuGenType2Select .swatches .swatch.selected a,
.favorites .skuGenType3Select .swatches .swatch.selected a,
.favorites .skuGenType4Select .swatches .swatch.selected a,
.favorites .skuGenType5Select .swatches .swatch.selected a {
  text-decoration: none;
}
.cart .sizeSelect .swatches .swatch.strikeThrough, .cart .skuGenType1Select .swatches .swatch.strikeThrough, .cart .colorSelect .swatches .swatch.strikeThrough,
.cart .skuGenType2Select .swatches .swatch.strikeThrough,
.cart .skuGenType3Select .swatches .swatch.strikeThrough,
.cart .skuGenType4Select .swatches .swatch.strikeThrough,
.cart .skuGenType5Select .swatches .swatch.strikeThrough,
.favorites .sizeSelect .swatches .swatch.strikeThrough,
.favorites .skuGenType1Select .swatches .swatch.strikeThrough,
.favorites .colorSelect .swatches .swatch.strikeThrough,
.favorites .skuGenType2Select .swatches .swatch.strikeThrough,
.favorites .skuGenType3Select .swatches .swatch.strikeThrough,
.favorites .skuGenType4Select .swatches .swatch.strikeThrough,
.favorites .skuGenType5Select .swatches .swatch.strikeThrough {
  opacity: 0.5;
}
.cart .sizeSelect .swatches .swatch.strikeThrough a, .cart .skuGenType1Select .swatches .swatch.strikeThrough a, .cart .colorSelect .swatches .swatch.strikeThrough a,
.cart .skuGenType2Select .swatches .swatch.strikeThrough a,
.cart .skuGenType3Select .swatches .swatch.strikeThrough a,
.cart .skuGenType4Select .swatches .swatch.strikeThrough a,
.cart .skuGenType5Select .swatches .swatch.strikeThrough a,
.favorites .sizeSelect .swatches .swatch.strikeThrough a,
.favorites .skuGenType1Select .swatches .swatch.strikeThrough a,
.favorites .colorSelect .swatches .swatch.strikeThrough a,
.favorites .skuGenType2Select .swatches .swatch.strikeThrough a,
.favorites .skuGenType3Select .swatches .swatch.strikeThrough a,
.favorites .skuGenType4Select .swatches .swatch.strikeThrough a,
.favorites .skuGenType5Select .swatches .swatch.strikeThrough a {
  cursor: default;
}
.cart .sizeSelect .swatches .swatch.strikeThrough:hover, .cart .skuGenType1Select .swatches .swatch.strikeThrough:hover, .cart .colorSelect .swatches .swatch.strikeThrough:hover,
.cart .skuGenType2Select .swatches .swatch.strikeThrough:hover,
.cart .skuGenType3Select .swatches .swatch.strikeThrough:hover,
.cart .skuGenType4Select .swatches .swatch.strikeThrough:hover,
.cart .skuGenType5Select .swatches .swatch.strikeThrough:hover,
.favorites .sizeSelect .swatches .swatch.strikeThrough:hover,
.favorites .skuGenType1Select .swatches .swatch.strikeThrough:hover,
.favorites .colorSelect .swatches .swatch.strikeThrough:hover,
.favorites .skuGenType2Select .swatches .swatch.strikeThrough:hover,
.favorites .skuGenType3Select .swatches .swatch.strikeThrough:hover,
.favorites .skuGenType4Select .swatches .swatch.strikeThrough:hover,
.favorites .skuGenType5Select .swatches .swatch.strikeThrough:hover {
  border-color: #FFFFFF;
}
.cart .sizeSelect .swatches .swatch.selected,
.cart .sizeSelect .swatches .swatch:hover, .cart .skuGenType1Select .swatches .swatch.selected,
.cart .skuGenType1Select .swatches .swatch:hover, .cart .colorSelect .swatches .swatch.selected,
.cart .colorSelect .swatches .swatch:hover,
.cart .skuGenType2Select .swatches .swatch.selected,
.cart .skuGenType2Select .swatches .swatch:hover,
.cart .skuGenType3Select .swatches .swatch.selected,
.cart .skuGenType3Select .swatches .swatch:hover,
.cart .skuGenType4Select .swatches .swatch.selected,
.cart .skuGenType4Select .swatches .swatch:hover,
.cart .skuGenType5Select .swatches .swatch.selected,
.cart .skuGenType5Select .swatches .swatch:hover,
.favorites .sizeSelect .swatches .swatch.selected,
.favorites .sizeSelect .swatches .swatch:hover,
.favorites .skuGenType1Select .swatches .swatch.selected,
.favorites .skuGenType1Select .swatches .swatch:hover,
.favorites .colorSelect .swatches .swatch.selected,
.favorites .colorSelect .swatches .swatch:hover,
.favorites .skuGenType2Select .swatches .swatch.selected,
.favorites .skuGenType2Select .swatches .swatch:hover,
.favorites .skuGenType3Select .swatches .swatch.selected,
.favorites .skuGenType3Select .swatches .swatch:hover,
.favorites .skuGenType4Select .swatches .swatch.selected,
.favorites .skuGenType4Select .swatches .swatch:hover,
.favorites .skuGenType5Select .swatches .swatch.selected,
.favorites .skuGenType5Select .swatches .swatch:hover {
  border: solid 3px #444444;
  border-radius: 3px;
}
.cart .strikeThrough,
.favorites .strikeThrough {
  background: url("../img/strike-through.png") 50% 0 no-repeat;
  height: auto;
}
.cart .colorSelect h3 em,
.cart .sizeSelect h3 em,
.cart .skuGenType1Select h3 em,
.cart .skuGenType2Select h3 em,
.cart .skuGenType3Select h3 em,
.cart .skuGenType4Select h3 em,
.cart .skuGenType5Select h3 em,
.favorites .colorSelect h3 em,
.favorites .sizeSelect h3 em,
.favorites .skuGenType1Select h3 em,
.favorites .skuGenType2Select h3 em,
.favorites .skuGenType3Select h3 em,
.favorites .skuGenType4Select h3 em,
.favorites .skuGenType5Select h3 em {
  font-style: normal;
  font-weight: 400;
  color: #595959;
}
.cart .quantitySelect a,
.favorites .quantitySelect a {
  font-size: 200%;
  color: #333333;
}
.cart .quantitySelect .a:hover,
.favorites .quantitySelect .a:hover {
  text-decoration: none;
  cursor: pointer;
}
.cart .quantitySelect .quantityChange i,
.favorites .quantitySelect .quantityChange i {
  top: 6px;
  position: relative;
  cursor: pointer;
}
.cart .quantitySelect input.quantityOrdered,
.favorites .quantitySelect input.quantityOrdered {
  width: 40px;
  height: 60px;
  font-size: 18px;
  margin: 0.5em;
  color: #999999;
  text-align: center;
  border: 1px solid #444444;
  outline: none;
  color: #444444;
  font-weight: 700;
}
.cart .itemPrice,
.favorites .itemPrice {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #000000;
  display: inline-block;
  text-align: right;
  margin: 0 20px;
  line-height: 2.5em;
}
@media only screen and (min-width: 767px) {
  .cart .itemPrice,
  .favorites .itemPrice {
    margin-top: 10%;
  }
}
@media only screen and (max-width: 667px) {
  .cart .itemPrice,
  .favorites .itemPrice {
    float: right;
    margin-right: 0;
  }
}
.cart .itemPrice .priceMultiplier,
.favorites .itemPrice .priceMultiplier {
  display: inline-block;
}
.cart .itemPrice .price,
.favorites .itemPrice .price {
  font-size: 28px;
  font-weight: 700;
  line-height: 25px;
}

.cart.confirmation .summaryParagraph > h1 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}
.cart.confirmation .cart-body .item .item-col {
  min-height: 110px;
}
.cart.confirmation .itemPrice {
  line-height: 1em;
  margin-top: 7%;
}
.cart.confirmation .itemPrice .price {
  font-size: 100%;
}
.cart.confirmation .order-summary-sidebar {
  border: solid 1px #e6e6e6;
  padding: 1em;
  margin-bottom: 2em;
  font-size: 90%;
}
.cart.confirmation .order-summary-sidebar div.col-md-5 {
  white-space: nowrap;
}
.cart.confirmation .order-summary-sidebar div.col-md-7 {
  text-align: right;
  font-weight: 600;
}
.cart.confirmation .itemOptions h4 {
  margin-top: 0;
}
@media only screen and (max-width: 667px) {
  .cart.confirmation .itemOptions h4 {
    margin-top: 20px;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 0;
  }
}
.cart.confirmation .cart-body .item .itemDescription .description {
  font-size: 115%;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}
.cart.confirmation .returnToCatalog {
  text-align: center;
  width: 100%;
}
.cart.confirmation .returnToCatalog a {
  width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 767px) {
  .cart.confirmation .returnToCatalog a {
    width: auto;
  }
}
@media only screen and (min-width: 767px) {
  .cart.confirmation .returnToCatalog {
    text-align: right;
    margin-top: 2em;
    width: auto;
  }
}
.cart.confirmation .customerSupport {
  float: right;
}

.wishlist .itemPrice {
  margin: 20px;
}

.alert-emptycart a {
  font-weight: 600;
  text-decoration: underline;
}

@media only screen and (max-width: 667px) {
  .cart .updateCartBtn {
    margin-bottom: 15px;
  }
}

.cart .favoriteAddMobile, .favorites .favoriteAddMobile {
  position: absolute;
}
@media only screen and (max-width: 667px) {
  .cart .favoriteAddMobile, .favorites .favoriteAddMobile {
    right: 2px;
    top: 50px;
  }
}
@media only screen and (max-width: 320px) {
  .cart .favoriteAddMobile, .favorites .favoriteAddMobile {
    right: -6px;
    top: 50px;
  }
}
@media only screen and (max-width: 667px) {
  .cart .optionEdit, .favorites .optionEdit {
    padding: 0;
  }
  .cart .optionEdit > div, .favorites .optionEdit > div {
    float: right;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .btn-edit, .favorites .cart-body .item .btn-edit {
    margin-top: 7px;
    margin-left: 85px;
  }
}
@media only screen and (max-width: 320px) {
  .cart .cart-body .item .btn-edit, .favorites .cart-body .item .btn-edit {
    margin-top: 42px;
    margin-bottom: -40px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .cart-body .item .btn-edit, .favorites .cart-body .item .btn-edit {
    position: relative;
  }
  .cart .cart-body .item .btn-edit .endor-edit, .favorites .cart-body .item .btn-edit .endor-edit {
    position: relative;
    left: 4px;
  }
}
.cart .cart-body .item .cart-icon, .favorites .cart-body .item .cart-icon {
  left: -10px;
}

@media only screen and (max-width: 667px) {
  .cart .currentOptions {
    text-decoration: none;
  }
}

@media only screen and (max-width: 640px) {
  .cart .updateWishlistBtn {
    margin-bottom: 15px;
  }
}
.cart .cart-body .item .endor-heart {
  left: 0px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .cart-body .item .endor-heart {
    left: -10px;
  }
}
@media only screen and (max-width: 667px) {
  .cart .cart-body .item .endor-heart {
    left: -5px;
  }

  .cart .cart-body .item .cart-icon.cart-product-edit-mb {
    left: -4px;
  }
}
.currentOptions span {
  color: #404040;
}

.returnLink {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.returnLink:hover {
  text-decoration: underline !important;
  font-weight: Bold;
  color: #FFFFFF !important;
}

.cartExclusionMessageText {
  color: #FFFFFF;
}

.customProductImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.viewcustomProduct a {
  color: #337AB7 !important;
}
.viewcustomProduct span {
  color: #337AB7 !important;
}

.giftCardConversionMsg {
  margin-top: 16px;
}

@media only screen and (max-width: 667px) {
  #CheckoutCartPage.cart-body .item .btn-edit {
    margin-top: 7px;
    margin-left: 0px;
    top: -15px;
  }
}

#whishlist-wrapper {
  border-left: 1px solid #E7E8E9;
  padding: 0px 30px 0 30px;
}

@media (max-width: 991.98px) {
  #whishlist-wrapper {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
}
@media (max-width: 575.98px) {
  #whishlist-wrapper {
    padding: 32px 0px 0px 0px;
  }

  .cart.confirmation .cart-body .item .item-col {
    top: 0;
  }

  .cart .cart-body .item .item-col, .cart .cart-body .item .itemDesc, .cart .cart-body .item .itemOptions {
    top: 0px;
  }

  .cart.confirmation .itemPrice {
    float: left;
    margin: 0;
  }

  .checkout-content #selected-address span.selectedFlag {
    bottom: 4px;
  }
}
.addPromo:hover, .addPromo:active, .addPromo:focus {
  margin: 1px;
}

.addPromo {
  width: 66px !important;
}

input.promoCode.form-control.inputPromoCode {
  height: 40px;
}

@media only screen and (max-width: 767px) {
  .g-recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .g-recaptcha {
    transform: scale(0.7);
    transform-origin: 0 0;
    margin-bottom: -36px;
  }
}
.label-info {
  color: #000000;
  background-color: #F2F4F6;
  border: 1px solid #DEDFE1;
  border-radius: 10px;
  padding: 4px 8px;
  margin: 2px;
  line-height: 2.8;
}

.tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}

.promoCodeRemove {
  display: inline-block;
  position: absolute;
  float: right;
  margin: 6px -10px;
  cursor: pointer;
}

.codetagInfo {
  padding-right: 10px;
}

.promocode-label {
  margin-right: 20px;
}

.marketingMessage {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin: 4px 0px;
}

/*
8888888888 8888888 888    88888888888 8888888888 8888888b.   .d8888b.
888          888   888        888     888        888   Y88b d88P  Y88b
888          888   888        888     888        888    888 Y88b.
8888888      888   888        888     8888888    888   d88P  "Y888b.
888          888   888        888     888        8888888P"      "Y88b.
888          888   888        888     888        888 T88b         "888
888          888   888        888     888        888  T88b  Y88b  d88P
888        8888888 88888888   888     8888888888 888   T88b  "Y8888P"
*/
.filters {
  background: #e6e6e6;
  padding: 0;
  float: left;
  width: 100%;
}
.filters .clearAll {
  font-size: 13px;
  font-weight: 500;
  color: #808080;
}
@media only screen and (max-width: 667px) {
  .filters {
    margin-bottom: 30px;
  }
}

.filters h2 {
  font-size: 85%;
  color: #000000;
  padding: 1.8em 2em 1.5em 1em;
  margin: 0;
  font-weight: 700;
  position: relative;
  clear: both;
  border-bottom: solid 1px #e6e6e6;
  border-top: solid 1px #e6e6e6;
  text-transform: uppercase;
}
@media only screen and (max-width: 667px) {
  .filters h2 {
    font-size: 120%;
  }
}
.filters h2 a {
  color: #404040;
  font-size: 100%;
}
.filters h2 a:hover, .filters h2 a:focus {
  border: 1px dotted #000000;
}
.filters h2 a:active {
  color: #000000;
}

.digitalDownloads .filters h2 {
  margin-bottom: 10px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

.countvalue {
  color: #595959;
}

/* POINTS BASED SEARCH --------------------------------------------------------------------*/
/* points based search flyout */
.megaSearch .searchFlyoutRangeContainer {
  width: 100%;
  position: fixed;
  top: 122px;
  left: 0;
  height: 100px;
  display: none;
  background: #EBEBEB;
}
@media only screen and (min-width: 315px) and (max-width: 666px) {
  .megaSearch .searchFlyoutRangeContainer {
    top: 54px;
  }
}
@media only screen and (min-width: 667px) and (max-width: 768px) {
  .megaSearch .searchFlyoutRangeContainer {
    top: 78px;
  }
}
.megaSearch .searchFlyoutRangeContainer .searchFlyoutRangeInnerWrapper {
  width: 75%;
  max-width: 300px;
  position: relative;
  height: 35px;
  margin-top: 30px;
}
.megaSearch .points-based-search-input {
  height: 35px;
  width: 45%;
  display: inline-block;
  font: inherit;
  font-size: 14px;
}
.megaSearch .points-based-search-input input {
  height: 35px;
  width: 100%;
  padding-left: 10px;
}
.megaSearch .points-based-search-input input:focus {
  border: solid 1px #9ECAED;
  outline: none;
}
.megaSearch .points-range-dash {
  display: inline-block;
  width: 10px;
  height: 3px;
  margin: 0 5px;
  background-color: #7C7C7C;
}

.resultsSearchHeaderSubtext {
  font-size: 28%;
  text-transform: none;
  margin-left: 15px;
}

.resultsSearchHeaderCategory {
  font-size: 30%;
}

.points-based-search {
  margin-top: 30px;
}
.points-based-search .points-based-search-container {
  width: 90%;
  display: none;
}
.points-based-search .points-based-search-container div.input-container {
  height: 35px;
  width: 44.5%;
  display: inline-block;
  position: relative;
}
.points-based-search .points-based-search-container input.points-based-search-input {
  height: 35px;
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding-left: 10px;
  border: 1px solid #000000;
}
.points-based-search .points-based-search-container input.points-based-search-input:focus {
  border: solid 1px #000000;
  outline: none;
}
.points-based-search .points-based-search-container input.points-based-search-input:active {
  border: solid 2px #000000;
  outline: none;
}
.points-based-search .points-based-search-container #defaultMinText,
.points-based-search .points-based-search-container #defaultMaxText {
  position: absolute;
  top: 0;
  display: none;
}
.points-based-search .points-based-search-container .points-range-dash {
  display: inline-block;
  width: 10px;
  height: 3px;
  margin: 0 2%;
  background-color: #000000;
}
.points-based-search .resultsTotal {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
  text-align: center;
}
.points-based-search .resultsTotal p.sup {
  font-size: 70%;
  color: #000000;
}
.points-based-search .resultsTotal p.resultsValue {
  font-size: 24px;
  color: #000000;
  margin-top: -15px;
}
.points-based-search #points-based-search-form .ceiling-container:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 25px;
  left: 74%;
  top: 5px;
  background-color: #CCCCCC;
}
.points-based-search #points-based-search-form .ceiling-container #rangeCeiling {
  padding-right: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  .points-based-search .points-based-search-container div.input-container {
    width: 42%;
  }

  .slider.slider-horizontal {
    width: 89%;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .points-based-search .points-based-search-container div.input-container {
    width: 43%;
  }
  .points-based-search .points-based-search-container input.points-based-search-input {
    font-size: 85%;
    height: 28px;
  }

  .slider.slider-horizontal {
    width: 90%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .filters {
    float: none;
  }

  .points-based-search .points-based-search-container {
    width: 50%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .points-based-search .points-based-search-container {
    width: 50%;
  }
}
@media only screen and (max-width: 667px) {
  .filters {
    float: none;
  }

  .points-based-search .points-based-search-container {
    width: 90%;
    max-width: 300px;
  }
}
/* END POINTS BASED SEARCH --------------------------------------------------------------------*/
.filters h2.accordionTrigger:hover,
.filters h2:hover {
  cursor: pointer;
}

.filters h2.closed {
  border-bottom: none;
}

.filters h2:first-child {
  border-top: none;
}

.filters h2 em {
  font-style: normal;
  font-weight: 100;
}

.filters h2 em em {
  display: none;
}

.filters h2 span.action {
  position: absolute;
  right: 5%;
  font-weight: 100;
  color: #999999;
}

.filters h2 span .endorIcon, .filters h2 span .profile-options li:before, .profile-options .filters h2 span li:before, .filters h2 span .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .filters h2 span i, .filters h2 span .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .filters h2 span i, .filters h2 span .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .filters h2 span i,
.filters h2 span .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .filters h2 span i,
.filters h2 span .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .filters h2 span i,
.filters h2 span .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .filters h2 span i, .filters h2 span .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .filters h2 span i,
.filters h2 span .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .filters h2 span i, .filters h2 span .mobile-nav .menu li a:after, .mobile-nav .menu li .filters h2 span a:after {
  font-size: 200%;
  display: block;
  margin-top: -0.2em;
}

.filters h2 span.action:hover {
  cursor: pointer;
}

.filters .categories {
  border-bottom: solid 1px #e6e6e6;
}

.filters .categories {
  padding: 1em;
}

.filters .filter {
  padding: 6px 1em;
}

a#brandViewToggle {
  display: none;
  background: transparent;
  background: __buttonBackgroundColor__;
  color: #333333;
  color: __buttonTextColor__;
  border: solid 3px #333333;
  border: solid 3px __buttonBorderColor__;
}
a#brandViewToggle:hover {
  color: #FFFFFF;
  color: __buttonBorderColor__;
  background: #333333;
  background: __buttonTextColor__;
  border: solid 3px #333333;
  border: solid 3px __buttonBackgroundColor__;
}

a#categoryViewToggle {
  display: none;
  background: transparent;
  background: __buttonBackgroundColor__;
  color: #333333;
  color: __buttonTextColor__;
  border: solid 3px #333333;
  border: solid 3px __buttonBorderColor__;
}
a#categoryViewToggle:hover {
  color: #FFFFFF;
  color: __buttonBorderColor__;
  background: #333333;
  background: __buttonTextColor__;
  border: solid 3px #333333;
  border: solid 3px __buttonBackgroundColor__;
}

.filters h2 i.endorIcon, .filters h2 .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .filters h2 i, .filters h2 .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .filters h2 i, .filters h2 .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .filters h2 i,
.filters h2 .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .filters h2 i,
.filters h2 .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .filters h2 i,
.filters h2 .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .filters h2 i, .filters h2 .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .filters h2 i,
.filters h2 .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .filters h2 i {
  margin-right: 0.5em;
  color: #000000;
}

.filters .filter.brands,
.filters .filter.value {
  float: left;
  width: 100%;
}

.filters .brands .brand,
.filters .events .event,
.filters .category .brand,
.filters .value .pointRange {
  float: left;
  min-width: 100%;
  font-size: 75%;
  color: #404040;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}
@media only screen and (max-width: 667px) {
  .filters .brands .brand,
  .filters .events .event,
  .filters .category .brand,
  .filters .value .pointRange {
    font-size: 120%;
  }
}

.filters .brands .brand input,
.filters .value .pointRange input {
  margin-right: 4px;
}

.filters .moreButton,
.filters .moreButtonVenues {
  float: left;
  width: 100%;
  text-align: center;
  margin: 1.5em 0;
}

.filters .categories h3 {
  font-size: 100%;
  margin-top: 10px;
  margin-bottom: 0;
}
.filters .categories h3:first-child {
  margin-top: 0;
  border: none;
}

.filters .categories h3 .endorIcon, .filters .categories h3 .profile-options li:before, .profile-options .filters .categories h3 li:before, .filters .categories h3 .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .filters .categories h3 i, .filters .categories h3 .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .filters .categories h3 i, .filters .categories h3 .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .filters .categories h3 i,
.filters .categories h3 .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .filters .categories h3 i,
.filters .categories h3 .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .filters .categories h3 i,
.filters .categories h3 .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .filters .categories h3 i, .filters .categories h3 .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .filters .categories h3 i,
.filters .categories h3 .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .filters .categories h3 i, .filters .categories h3 .mobile-nav .menu li a:after, .mobile-nav .menu li .filters .categories h3 a:after {
  font-size: 120%;
  display: inline-block;
  margin-right: 0.5em;
  color: #595959;
}

.filters .categories h3 {
  font-size: 100%;
}

.filters .filter h2 {
  height: 50px;
}

.filters .categories h3.current {
  font-weight: 700;
}

.filters .categories h3.current .endorIcon, .filters .categories h3.current .profile-options li:before, .profile-options .filters .categories h3.current li:before, .filters .categories h3.current .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .filters .categories h3.current i, .filters .categories h3.current .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .filters .categories h3.current i, .filters .categories h3.current .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .filters .categories h3.current i,
.filters .categories h3.current .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .filters .categories h3.current i,
.filters .categories h3.current .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .filters .categories h3.current i,
.filters .categories h3.current .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .filters .categories h3.current i, .filters .categories h3.current .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .filters .categories h3.current i,
.filters .categories h3.current .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .filters .categories h3.current i, .filters .categories h3.current .mobile-nav .menu li a:after, .mobile-nav .menu li .filters .categories h3.current a:after {
  visibility: hidden;
}

.digitalDownloads .filters h3 {
  padding-left: 25px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.digitalDownloads .filters h3 a {
  font-size: 50%;
  color: #58595A;
}
.digitalDownloads .filters a {
  padding-right: 0;
  margin-right: 0;
}
.digitalDownloads .filters .chooseDigitalCategories {
  padding-bottom: 15px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .digitalDownloads .filters {
    margin-bottom: 20px;
  }
}

/* POINTS BASED SEARCH --------------------------------------------------------------------*/
.points-based-search {
  background-color: #EBEBEB;
}
.points-based-search .points-based-search-container {
  width: 90%;
  display: none;
}
.points-based-search .points-based-search-container div.input-container {
  height: 35px;
  width: 44%;
  display: inline-block;
  position: relative;
  color: #000000;
}
.points-based-search .points-based-search-container input.points-based-search-input {
  height: 35px;
  width: 100%;
  display: inline-block;
  font: inherit;
  font-size: 14px;
  padding-left: 10px;
}
.points-based-search .points-based-search-container input.points-based-search-input:focus {
  border: solid 2px #000000;
}
.points-based-search .points-based-search-container #defaultMinText,
.points-based-search .points-based-search-container #defaultMaxText {
  position: absolute;
  top: 0;
  display: none;
}
.points-based-search .points-based-search-container .points-range-dash {
  display: inline-block;
  width: 10px;
  height: 3px;
  margin-top: 2%;
  background-color: #7C7C7C;
}
.points-based-search .resultsTotal {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
.points-based-search .resultsTotal p.sup {
  font-size: 70%;
  color: #000000;
}
.points-based-search .resultsTotal p.resultsValue {
  font-size: 24px;
  color: #000000;
  margin-top: -15px;
}
.points-based-search #points-based-search-form .ceiling-container:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 25px;
  left: 74%;
  top: 5px;
  background-color: #CCCCCC;
}
.points-based-search #points-based-search-form .ceiling-container #rangeCeiling {
  padding-right: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  .points-based-search .points-based-search-container div.input-container {
    width: 42%;
  }

  .slider.slider-horizontal {
    width: 89%;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .points-based-search .points-based-search-container div.input-container {
    width: 43%;
  }
  .points-based-search .points-based-search-container input.points-based-search-input {
    font-size: 85%;
    height: 28px;
  }

  .slider.slider-horizontal {
    width: 90%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .filters {
    float: none;
  }

  .points-based-search .points-based-search-container {
    width: 50%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .points-based-search .points-based-search-container {
    width: 50%;
  }
}
@media only screen and (max-width: 667px) {
  .filters {
    float: none;
  }

  .points-based-search .points-based-search-container {
    width: 90%;
    max-width: 300px;
  }
}
/* END POINTS BASED SEARCH --------------------------------------------------------------------*/
/* EVENTS -------------------------------------------------------------------------------------*/
/* END EVENTS ---------------------------------------------------------------------------------*/
.category-position {
  float: left;
}

.product-name {
  float: left;
  width: 173px;
  margin: 4px 2px;
  word-wrap: break-word;
}

.category_list {
  padding-left: 1.3em;
  float: left;
  width: 100%;
}

a#brandViewToggle:focus {
  border: 3px solid #000000 !important;
  outline: 2px dotted #AAAAAA;
  background: #000000;
  color: #FFFFFF;
  outline-offset: 0px;
}

.items__view-option:focus {
  outline: 2px dotted #AAAAAA;
}

.filters .categories div.filter__list-item:first-child {
  margin-top: 0;
  border: 0;
  font-size: 100%;
  line-height: 1.1;
}

.filters .categories div.filter__list-item {
  font-size: 100%;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.1;
}
.filters .categories div.filter__list-item i.endorIcon, .filters .categories div.filter__list-item .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .filters .categories div.filter__list-item i, .filters .categories div.filter__list-item .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .filters .categories div.filter__list-item i, .filters .categories div.filter__list-item .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .filters .categories div.filter__list-item i,
.filters .categories div.filter__list-item .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .filters .categories div.filter__list-item i,
.filters .categories div.filter__list-item .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .filters .categories div.filter__list-item i,
.filters .categories div.filter__list-item .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .filters .categories div.filter__list-item i, .filters .categories div.filter__list-item .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .filters .categories div.filter__list-item i,
.filters .categories div.filter__list-item .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .filters .categories div.filter__list-item i {
  font-size: 120%;
  display: inline-block;
  margin-right: .5em;
  color: #595959;
}

.jumbotron {
  padding: 0;
  margin-bottom: 0;
  background-color: #FFFFFF;
  min-height: 320px;
}

.mainCarousel .item {
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item {
    height: 275px;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.dark {
    background: #FFFFFF;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.lite {
    background: #000000;
  }
}
.mainCarousel .item img {
  display: block;
  height: auto;
  max-width: none;
  width: auto;
}
@media only screen and (min-width: 940px) {
  .mainCarousel .item img {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item img {
    height: 275px;
    min-height: auto;
  }
}
.mainCarousel .item .storyR {
  right: -5%;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item .storyR {
    right: 0;
  }
}
.mainCarousel .item .storyL {
  left: -35%;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item .storyL {
    left: 0;
  }
}
.mainCarousel .item .flyin-content {
  display: inline-block;
  padding: 0 5%;
  height: auto;
  position: absolute;
  top: 50%;
}
@media only screen and (min-width: 767px) {
  .mainCarousel .item .flyin-content {
    padding: 0 8%;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item .flyin-content {
    font-size: 75%;
  }
}
.mainCarousel .item .flyin-content div[class*=logoImage] {
  display: block;
  margin: 0 auto;
  /* change the max-width to change the logo size */
  max-width: 25%;
  /* fix the image path once this is in an override file */
  background-image: url("../img/bi-logo-endor-wings.png");
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.mainCarousel .item .flyin-content div[class*=logoImage] span {
  display: block;
  height: 0;
}
.mainCarousel .item .flyin-content div[class*=logoImage] sup {
  position: absolute;
  display: inline-block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.mainCarousel .item .flyin-content h1#noLogo {
  background-image: none;
}
.mainCarousel .item .flyin-content h1,
.mainCarousel .item .flyin-content h2,
.mainCarousel .item .flyin-content h3 {
  padding: 0;
  margin: 0;
  display: block;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
}
.mainCarousel .item .flyin-content h1 sup,
.mainCarousel .item .flyin-content h2 sup,
.mainCarousel .item .flyin-content h3 sup {
  position: absolute;
  display: inline-block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.mainCarousel .item .flyin-content h1.bold .flyOverload {
  font-weight: bold;
}
.mainCarousel .item .flyin-content h1.italic .flyOverload {
  font-style: italic;
}
.mainCarousel .item .flyin-content h1.underline .flyOverload {
  text-decoration: underline;
}
.mainCarousel .item .flyin-content h1.arial .flyOverload {
  font-family: Arial;
}
.mainCarousel .item .flyin-content h1.learningCurve .flyOverload {
  font-family: learning_curve;
}
.mainCarousel .item .flyin-content h1.robotoSlab .flyOverload {
  font-family: roboto_slab;
}
.mainCarousel .item .flyin-content h1.serifPro .flyOverload {
  font-family: sourceserif_pro;
}
.mainCarousel .item .flyin-content h2 sup {
  font-size: 30%;
  top: 25%;
}
.mainCarousel .item .flyin-content h3 sup {
  font-size: 35%;
  top: 30%;
}
.mainCarousel .item .flyin-content .flyin-link {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  margin-top: 0;
  padding-left: 5px;
  padding-right: 5px;
  display: none;
}
@media only screen and (min-width: 767px) {
  .mainCarousel .item .flyin-content .flyin-link {
    margin-top: 40px;
    display: block;
  }
}
.mainCarousel .item .flyin-content .flyOverload {
  display: inline-block;
}
.mainCarousel .item .textLeft .flyin-story,
.mainCarousel .item .textLeft .flyin-link {
  margin-left: 35%;
  text-align: left;
}
.mainCarousel .item .textLeft div[class*=logoImage] {
  margin-left: 0;
  padding: 0;
}
.mainCarousel .item .textRight .flyin-story,
.mainCarousel .item .textRight .flyin-link {
  margin-right: 15%;
  text-align: right;
}
.mainCarousel .item .textRight div[class*=logoImage] {
  margin-right: 0;
}
.mainCarousel .item div[class*=copyContainer] {
  height: 100%;
  width: 100%;
}
.mainCarousel .item .copyLeft {
  right: -35%;
}
.mainCarousel .item .logoLeft,
.mainCarousel .item .logoright {
  width: 100%;
}
.mainCarousel .item .logoLeft {
  position: absolute;
  left: 35%;
  top: -25px;
}
.mainCarousel .item .logoRight {
  right: 50%;
  top: -25px;
}
.mainCarousel .item.storyRight .flyin-content {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .mainCarousel .item.storyRight .flyin-content {
    text-align: right;
    padding-left: 0;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .mainCarousel .item.storyRight img {
    float: right;
    margin-left: -10%;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.storyRight img {
    opacity: 0.5;
    margin-right: -33%;
  }
}
.mainCarousel .item.storyLeft img {
  float: right;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.storyLeft img {
    margin-left: -200px;
    opacity: 0.5;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .mainCarousel .item.storyLeft img {
    float: none;
    margin-left: -10%;
  }
}
.mainCarousel .item.storyLeft .flyin-content {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .mainCarousel .item.storyLeft .flyin-content {
    text-align: left;
    padding-right: 0;
  }
}
.mainCarousel .item.storyMid img {
  margin: 0 auto;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.storyMid img {
    opacity: 0.5;
    margin-left: -66%;
  }
}
.mainCarousel .item.storyMid .flyin-content {
  text-align: center;
}
.mainCarousel .owl-pagination {
  position: absolute;
  bottom: 2%;
  width: 100%;
  text-align: center;
}
.mainCarousel .lite .flyin-content,
.mainCarousel .lite .flyin-link {
  color: #FFFFFF;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.mainCarousel .lite .mainCarouselNext,
.mainCarousel .lite .mainCarouselPrev {
  background: none;
  color: #FFFFFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.mainCarousel .dark .flyin-content,
.mainCarousel .dark .flyin-link {
  color: #000000;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}
.mainCarousel .dark .mainCarouselNext,
.mainCarousel .dark .mainCarouselPrev {
  background: none;
  color: #333;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 667px) {
  .mainCarousel .owl-theme .owl-controls .owl-page span {
    width: 9px;
    height: 9px;
  }
}
.mainCarousel .owl-theme .darkPager .owl-controls .owl-page span,
.mainCarousel .owl-theme .owl-controls.lite .owl-page span {
  border: solid 1px #FFFFFF;
}
.mainCarousel .owl-theme .owl-controls.dark .owl-page.active span,
.mainCarousel .owl-theme .owl-controls.dark.clickable .owl-page:hover span {
  background: #000000;
}
.mainCarousel .owl-theme .owl-controls.dark .owl-page span {
  border: solid 1px #000000;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

.carousel .digitalDownloadsCarouselNext,
.carousel .digitalDownloadsCarouselPrev,
.carousel .mainCarouselNext,
.carousel .mainCarouselPrev,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev,
.digitalDownloadsCarousel .mainCarouselNext,
.digitalDownloadsCarousel .mainCarouselPrev,
.mainCarousel .digitalDownloadsCarouselNext,
.mainCarousel .digitalDownloadsCarouselPrev,
.mainCarousel .mainCarouselNext,
.mainCarousel .mainCarouselPrev {
  position: absolute;
  top: 45%;
  font-size: 325%;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .carousel .digitalDownloadsCarouselNext,
  .carousel .digitalDownloadsCarouselPrev,
  .carousel .mainCarouselNext,
  .carousel .mainCarouselPrev,
  .digitalDownloadsCarousel .digitalDownloadsCarouselNext,
  .digitalDownloadsCarousel .digitalDownloadsCarouselPrev,
  .digitalDownloadsCarousel .mainCarouselNext,
  .digitalDownloadsCarousel .mainCarouselPrev,
  .mainCarousel .digitalDownloadsCarouselNext,
  .mainCarousel .digitalDownloadsCarouselPrev,
  .mainCarousel .mainCarouselNext,
  .mainCarousel .mainCarouselPrev {
    display: none !important;
  }
}
@media only screen and (max-width: 667px) {
  .carousel .digitalDownloadsCarouselNext,
  .carousel .digitalDownloadsCarouselPrev,
  .carousel .mainCarouselNext,
  .carousel .mainCarouselPrev,
  .digitalDownloadsCarousel .digitalDownloadsCarouselNext,
  .digitalDownloadsCarousel .digitalDownloadsCarouselPrev,
  .digitalDownloadsCarousel .mainCarouselNext,
  .digitalDownloadsCarousel .mainCarouselPrev,
  .mainCarousel .digitalDownloadsCarouselNext,
  .mainCarousel .digitalDownloadsCarouselPrev,
  .mainCarousel .mainCarouselNext,
  .mainCarousel .mainCarouselPrev {
    display: none !important;
  }
}
.carousel .digitalDownloadsCarouselNext:hover,
.carousel .digitalDownloadsCarouselPrev:hover,
.carousel .mainCarouselNext:hover,
.carousel .mainCarouselPrev:hover,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext:hover,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev:hover,
.digitalDownloadsCarousel .mainCarouselNext:hover,
.digitalDownloadsCarousel .mainCarouselPrev:hover,
.mainCarousel .digitalDownloadsCarouselNext:hover,
.mainCarousel .digitalDownloadsCarouselPrev:hover,
.mainCarousel .mainCarouselNext:hover,
.mainCarousel .mainCarouselPrev:hover {
  cursor: pointer;
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}
.carousel .digitalDownloadsCarouselPrev,
.carousel .mainCarouselPrev,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev,
.digitalDownloadsCarousel .mainCarouselPrev,
.mainCarousel .digitalDownloadsCarouselPrev,
.mainCarousel .mainCarouselPrev {
  left: 1%;
}
.carousel .digitalDownloadsCarouselPrev .fa-chevron-left,
.carousel .mainCarouselPrev .fa-chevron-left,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev .fa-chevron-left,
.digitalDownloadsCarousel .mainCarouselPrev .fa-chevron-left,
.mainCarousel .digitalDownloadsCarouselPrev .fa-chevron-left,
.mainCarousel .mainCarouselPrev .fa-chevron-left {
  padding-left: 0.55em;
}
.carousel .digitalDownloadsCarouselPrev.lite,
.carousel .mainCarouselPrev.lite,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev.lite,
.digitalDownloadsCarousel .mainCarouselPrev.lite,
.mainCarousel .digitalDownloadsCarouselPrev.lite,
.mainCarousel .mainCarouselPrev.lite {
  color: #FFFFFF;
}
.carousel .digitalDownloadsCarouselPrev.dark,
.carousel .mainCarouselPrev.dark,
.digitalDownloadsCarousel .digitalDownloadsCarouselPrev.dark,
.digitalDownloadsCarousel .mainCarouselPrev.dark,
.mainCarousel .digitalDownloadsCarouselPrev.dark,
.mainCarousel .mainCarouselPrev.dark {
  color: #333;
}
.carousel .digitalDownloadsCarouselNext,
.carousel .mainCarouselNext,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext,
.digitalDownloadsCarousel .mainCarouselNext,
.mainCarousel .digitalDownloadsCarouselNext,
.mainCarousel .mainCarouselNext {
  right: 1%;
}
.carousel .digitalDownloadsCarouselNext .fa-chevron-right,
.carousel .mainCarouselNext .fa-chevron-right,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext .fa-chevron-right,
.digitalDownloadsCarousel .mainCarouselNext .fa-chevron-right,
.mainCarousel .digitalDownloadsCarouselNext .fa-chevron-right,
.mainCarousel .mainCarouselNext .fa-chevron-right {
  padding-left: 0.7em;
}
.carousel .digitalDownloadsCarouselNext.lite,
.carousel .mainCarouselNext.lite,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext.lite,
.digitalDownloadsCarousel .mainCarouselNext.lite,
.mainCarousel .digitalDownloadsCarouselNext.lite,
.mainCarousel .mainCarouselNext.lite {
  color: #FFFFFF;
}
.carousel .digitalDownloadsCarouselNext.dark,
.carousel .mainCarouselNext.dark,
.digitalDownloadsCarousel .digitalDownloadsCarouselNext.dark,
.digitalDownloadsCarousel .mainCarouselNext.dark,
.mainCarousel .digitalDownloadsCarouselNext.dark,
.mainCarousel .mainCarouselNext.dark {
  color: #333;
}
.carousel .item a.fullItemLink,
.digitalDownloadsCarousel .item a.fullItemLink,
.mainCarousel .item a.fullItemLink {
  display: block;
  position: absolute;
  top: 0;
  height: 82%;
  width: 88%;
  margin: 1% 6% 4%;
}
.carousel .flyin-link,
.digitalDownloadsCarousel .flyin-link,
.mainCarousel .flyin-link {
  display: block;
  padding-top: 10px;
}
.carousel .flyin-link:after,
.digitalDownloadsCarousel .flyin-link:after,
.mainCarousel .flyin-link:after {
  content: '\e817';
  font-family: "Endor";
  margin-left: 0.5em;
}
.carousel .jumbotron .owl-theme .owl-controls,
.digitalDownloadsCarousel .jumbotron .owl-theme .owl-controls,
.mainCarousel .jumbotron .owl-theme .owl-controls {
  margin-top: 0;
}
.carousel .flyin-content,
.digitalDownloadsCarousel .flyin-content,
.mainCarousel .flyin-content {
  position: relative;
  overflow: visible;
}
.carousel .flyin-content .flyin-story,
.digitalDownloadsCarousel .flyin-content .flyin-story,
.mainCarousel .flyin-content .flyin-story {
  position: inline-block;
  position: relative;
  opacity: 0;
  overflow: visible;
}
.carousel .flyin-link,
.digitalDownloadsCarousel .flyin-link,
.mainCarousel .flyin-link {
  position: relative;
  bottom: -150px;
  opacity: 0;
}
.carousel .storyRight .flyin-story,
.digitalDownloadsCarousel .storyRight .flyin-story,
.mainCarousel .storyRight .flyin-story {
  right: 50px;
}
.carousel .storyLeft .flyin-story,
.digitalDownloadsCarousel .storyLeft .flyin-story,
.mainCarousel .storyLeft .flyin-story {
  left: 50px;
}
.carousel .storyMid .flyin-story,
.digitalDownloadsCarousel .storyMid .flyin-story,
.mainCarousel .storyMid .flyin-story {
  bottom: 50px;
}

.mainCarousel .item.template-1 h1 {
  font-family: "open_sanslight";
  font-size: 3.25em;
  line-height: 0.5em;
  line-height: 1em;
}
.mainCarousel .item.template-1 h1.bold {
  font-weight: bold;
}
.mainCarousel .item.template-1 h1.italic {
  font-style: italic;
}
.mainCarousel .item.template-1 h1.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-1 h1.arial {
  font-family: Arial;
}
.mainCarousel .item.template-1 h1.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-1 h1.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-1 h1.serifPro {
  font-family: sourceserif_pro;
}
.mainCarousel .item.template-1 h2 {
  font-family: "open_sansextrabold";
  font-size: 6em;
  line-height: 1em;
}
.mainCarousel .item.template-1 h2.bold {
  font-weight: bold;
}
.mainCarousel .item.template-1 h2.italic {
  font-style: italic;
}
.mainCarousel .item.template-1 h2.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-1 h2.arial {
  font-family: Arial;
}
.mainCarousel .item.template-1 h2.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-1 h2.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-1 h2.serifPro {
  font-family: sourceserif_pro;
}
.mainCarousel .item.template-1 h3 {
  font-family: "open_sanslight";
  font-size: 4.5em;
  line-height: 1em;
}
.mainCarousel .item.template-1 h3.bold {
  font-weight: bold;
}
.mainCarousel .item.template-1 h3.italic {
  font-style: italic;
}
.mainCarousel .item.template-1 h3.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-1 h3.arial {
  font-family: Arial;
}
.mainCarousel .item.template-1 h3.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-1 h3.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-1 h3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (min-width: 767px) {
  .mainCarousel .item.template-1 h3 {
    line-height: 0.75em;
  }
}
.mainCarousel .item.template-1.brand-a h2 {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .item.template-1.brand-b .flyin-link {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .item.template-1.brand-c .flyin-link,
.mainCarousel .item.template-1.brand-c h2 {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .item.template-2 h1 {
  font-family: "open_sansextrabold";
  font-size: 6em;
  line-height: 1em;
}
@media only screen and (max-width: 667px) {
  .mainCarousel .item.template-2 h1 {
    font-size: 5em;
  }
}
.mainCarousel .item.template-2 h1.bold {
  font-weight: bold;
}
.mainCarousel .item.template-2 h1.italic {
  font-style: italic;
}
.mainCarousel .item.template-2 h1.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-2 h1.arial {
  font-family: Arial;
}
.mainCarousel .item.template-2 h1.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-2 h1.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-2 h1.serifPro {
  font-family: sourceserif_pro;
}
.mainCarousel .item.template-2 h2 {
  font-family: "open_sanslight";
  font-size: 4.5em;
  line-height: 1em;
}
.mainCarousel .item.template-2 h2.bold {
  font-weight: bold;
}
.mainCarousel .item.template-2 h2.italic {
  font-style: italic;
}
.mainCarousel .item.template-2 h2.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-2 h2.arial {
  font-family: Arial;
}
.mainCarousel .item.template-2 h2.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-2 h2.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-2 h2.serifPro {
  font-family: sourceserif_pro;
}
.mainCarousel .item.template-2 h3 {
  font-family: "open_sanslight";
  font-size: 3.25em;
  line-height: 1em;
}
.mainCarousel .item.template-2 h3.bold {
  font-weight: bold;
}
.mainCarousel .item.template-2 h3.italic {
  font-style: italic;
}
.mainCarousel .item.template-2 h3.underline {
  text-decoration: underline;
}
.mainCarousel .item.template-2 h3.arial {
  font-family: Arial;
}
.mainCarousel .item.template-2 h3.learningCurve {
  font-family: learning_curve;
}
.mainCarousel .item.template-2 h3.robotoSlab {
  font-family: roboto_slab;
}
.mainCarousel .item.template-2 h3.serifPro {
  font-family: sourceserif_pro;
}
.mainCarousel .item.template-2.brand-a h1 {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .item.template-2.brand-b .flyin-link {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .item.template-2.brand-c .flyin-link,
.mainCarousel .item.template-2.brand-c h1 {
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
}
.mainCarousel .storyRight .flyin-content {
  width: 100%;
}
@media (min-width: 768px) {
  .mainCarousel .storyRight .flyin-content {
    margin-left: 33.33333333%;
    width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  .mainCarousel .storyRight .flyin-content {
    margin-left: 48.66666667%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .mainCarousel .storyRight .flyin-content {
    margin-left: 49%;
    width: 50.66666667%;
  }
}
.mainCarousel .storyLeft .flyin-content {
  width: 100%;
}
@media (min-width: 768px) {
  .mainCarousel .storyLeft .flyin-content {
    width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  .mainCarousel .storyLeft .flyin-content {
    width: 50%;
    margin-left: 3.33333333%;
  }
}
@media (min-width: 1200px) {
  .mainCarousel .storyLeft .flyin-content {
    width: 50%;
    margin-left: 1.66666667%;
  }
}
.mainCarousel .storyMid .flyin-content {
  width: 100%;
}
@media (min-width: 768px) {
  .mainCarousel .storyMid .flyin-content {
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
@media (min-width: 1200px) {
  .mainCarousel .storyMid .flyin-content {
    width: 50%;
    margin-left: 25%;
  }
}
@media only screen and (max-width: 667px) {
  .mainCarousel .storyRight img {
    position: absolute;
    right: 0;
  }
  .mainCarousel .storyLeft img {
    position: absolute;
    left: 0;
  }
}

.digitalDownloadsCarousel .item {
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 667px) {
  .digitalDownloadsCarousel .item {
    height: 275px;
  }
}
.digitalDownloadsCarousel .item img {
  display: block;
  height: auto;
  max-width: none;
  width: auto;
}
@media only screen and (min-width: 940px) {
  .digitalDownloadsCarousel .item img {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 667px) {
  .digitalDownloadsCarousel .item img {
    height: 275px;
    min-height: auto;
  }
}
.digitalDownloadsCarousel .item .flyin-content {
  display: inline-block;
  padding: 0 5%;
  height: auto;
  position: absolute;
  top: 50%;
}
@media only screen and (min-width: 767px) {
  .digitalDownloadsCarousel .item .flyin-content {
    padding: 0 8%;
  }
}
@media only screen and (max-width: 667px) {
  .digitalDownloadsCarousel .item .flyin-content {
    font-size: 75%;
  }
}
.digitalDownloadsCarousel .item .flyin-content h1,
.digitalDownloadsCarousel .item .flyin-content h2,
.digitalDownloadsCarousel .item .flyin-content h3 {
  padding: 0;
  margin: 0;
  display: block;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
.digitalDownloadsCarousel .item .flyin-content .flyin-link {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  margin-top: 0;
  padding-left: 5px;
  padding-right: 5px;
  display: none;
}
@media only screen and (min-width: 767px) {
  .digitalDownloadsCarousel .item .flyin-content .flyin-link {
    margin-top: 40px;
    display: block;
  }
}
.digitalDownloadsCarousel .item .flyin-content .flyOverload {
  display: inline-block;
}
.digitalDownloadsCarousel .item.storyRight .flyin-content {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .digitalDownloadsCarousel .item.storyRight .flyin-content {
    text-align: right;
    padding-left: 0;
  }
}
.digitalDownloadsCarousel .item.storyLeft img {
  float: right;
}
.digitalDownloadsCarousel .item.storyLeft .flyin-content {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .digitalDownloadsCarousel .item.storyLeft .flyin-content {
    text-align: left;
    padding-right: 0;
  }
}
.digitalDownloadsCarousel .item.storyMid img {
  margin: 0 auto;
}
.digitalDownloadsCarousel .item.storyMid .flyin-content {
  text-align: center;
}
.digitalDownloadsCarousel .owl-pagination {
  position: absolute;
  bottom: 2%;
  width: 100%;
  text-align: center;
}
.digitalDownloadsCarousel .lite .flyin-content,
.digitalDownloadsCarousel .lite .flyin-link {
  color: #FFFFFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}
.digitalDownloadsCarousel .lite .mainCarouselNext,
.digitalDownloadsCarousel .lite .mainCarouselPrev {
  background: none;
  color: #FFFFFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}
.digitalDownloadsCarousel .dark .flyin-content,
.digitalDownloadsCarousel .dark .flyin-link {
  color: #000000;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.digitalDownloadsCarousel .dark .mainCarouselNext,
.digitalDownloadsCarousel .dark .mainCarouselPrev {
  background: none;
  color: #333;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.pagination .pageCarouselPrev:focus,
.pagination .pageCarouselNext:focus {
  outline: 1px auto #000000;
}

body:not(.user-is-tabbing) .optionBar button:focus,
body:not(.user-is-tabbing) .optionBar select:focus,
body:not(.user-is-tabbing) .optionBar a:focus,
body:not(.user-is-tabbing) header button:focus,
body:not(.user-is-tabbing) header select:focus,
body:not(.user-is-tabbing) header a:focus {
  /*WCAG 4870 - SortSite CSS border issue addressed */
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}

#refresh-jumbotron {
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
}
#refresh-jumbotron .refresh-carousel {
  position: relative;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh {
  margin: 0;
  position: relative;
  overflow: hidden;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 100%;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh {
  display: block;
  font-family: "Barlow",Helvetica,Arial,sans-serif;
  position: absolute;
  bottom: 0;
  white-space: normal;
  overflow: hidden;
  padding: 24px;
  padding-bottom: 14px;
  background: #ffffff;
  color: #000000;
  width: 35%;
  text-align: left;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h2 {
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
  margin: 0;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh .flyin-linkRefresh {
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  text-transform: capitalize;
  display: block;
  text-align: left;
  padding-top: 24px;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite .flyin-contentRefresh {
  background: #ffffff;
  color: #000000;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite .fullItemLinkRefresh:focus,
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite .fullItemLinkRefresh:active {
  border: 3px dotted #595959 !important;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyLeft .flyin-contentRefresh {
  background: #ffffff;
  color: #000000;
  left: 0;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyMid .flyin-contentRefresh {
  background: #ffffff;
  color: #000000;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 48px;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyMid .flyin-contentRefresh .flyin-linkRefresh {
  text-align: center;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyRight .flyin-contentRefresh {
  background: #ffffff;
  color: #000000;
  right: 0;
  text-align: right;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyRight .flyin-contentRefresh .flyin-linkRefresh {
  text-align: right;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark .flyin-contentRefresh {
  background: #000000;
  color: #ffffff;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark .flyin-contentRefresh .flyin-linkRefresh {
  color: #ffffff;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark .fullItemLinkRefresh:focus, #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark .fullItemLinkRefresh:active {
  border: 3px dotted #cccccc !important;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyLeft .flyin-contentRefresh {
  background: #000000;
  color: #ffffff;
  left: 0;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyMid .flyin-contentRefresh {
  background: #000000;
  color: #ffffff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  padding-bottom: 48px;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyMid .flyin-contentRefresh .flyin-linkRefresh {
  text-align: center;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyRight .flyin-contentRefresh {
  background: #000000;
  color: #ffffff;
  right: 0;
  text-align: right;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyRight .flyin-contentRefresh .flyin-linkRefresh {
  text-align: right;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .fullItemLinkRefresh {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls .owl-pagination {
  border-radius: 25px;
  line-height: 11px;
  display: inline-block;
  position: relative;
  padding: 0 10px;
  background-color: rgba(255, 255, 255, 0.56);
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls .owl-pagination .owl-page span {
  vertical-align: middle;
  width: 4px;
  height: 4px;
  transform: rotate(180deg);
  margin: 9px 2px;
  opacity: 1;
  filter: Alpha(Opacity=100);
  background: #000000;
  border: solid 1px #000000;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls .owl-pagination .owl-page.active span {
  vertical-align: middle;
  width: 10px;
  height: 10px;
  transform: rotate(180deg);
  margin: 4px 2px 6px 2px;
  background: #000000;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.lite .owl-pagination {
  background-color: rgba(255, 255, 255, 0.56);
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.lite .owl-pagination .owl-page span {
  background: #000000;
  border: solid 1px #000000;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.lite .owl-pagination .owl-page.active span {
  background: #000000;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.dark .owl-pagination {
  background-color: rgba(0, 0, 0, 0.56);
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.dark .owl-pagination .owl-page span {
  background: #ffffff;
  border: solid 1px #fff;
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls.dark .owl-pagination .owl-page.active span {
  background: #ffffff;
}

@media (max-width: 991.98px) {
  #refresh-jumbotron {
    min-height: auto;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh {
    width: 43%;
  }
  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h1 {
    font-size: 26px;
  }
  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h2 {
    font-size: 26px;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.lite.storyMid .flyin-contentRefresh {
    width: 60%;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh.dark.storyMid .flyin-contentRefresh {
    width: 60%;
  }
}
@media (max-width: 575.98px) {
  #refresh-jumbotron {
    min-height: auto;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh {
    padding: 16px;
    padding-bottom: 32px !important;
    text-align: center !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70% !important;
  }
  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h1 {
    font-size: 16px;
    line-height: 24px;
  }
  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh h2 {
    font-size: 16px;
    line-height: 24px;
  }
  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh .flyin-linkRefresh {
    font-size: 14px;
    line-height: 17px;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh .flyin-contentRefresh .flyin-linkRefresh {
    text-align: center !important;
    padding-top: 8px;
  }

  #refresh-jumbotron .refresh-carousel .mainCarouselRefresh .owl-controls {
    bottom: 0px;
  }
}
#refresh-jumbotron .refresh-carousel .mainCarouselRefresh .itemRefresh {
  margin: 0;
  position: relative;
  overflow: hidden;
  max-width: 2560px;
  border-radius: 15px;
}

.carousel .slidePrevious {
  background: linear-gradient(90deg, #F8F8F9 0%, #F8F8F9 27.97%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  height: 100%;
  width: 92px;
  position: absolute;
  top: 0%;
  left: 0%;
}
@media only screen and (max-width: 667px) {
  .carousel .slidePrevious {
    display: none;
  }
}
.carousel .slidePrevious .previous-button {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel .slidePrevious .previous-button .grm-icon-refresh {
  height: 20.95px;
  width: 19.89px;
  margin: 0;
  position: inherit;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel .slidePrevious .previous-button:hover {
  cursor: pointer;
}
.carousel .slideNext {
  background: linear-gradient(270deg, #F8F8F9 0%, #F8F8F9 27.97%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  height: 100%;
  width: 92px;
  position: absolute;
  top: 0%;
  right: 0%;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .carousel .slideNext {
    right: 10px;
  }
}
@media only screen and (max-width: 667px) {
  .carousel .slideNext {
    display: none;
  }
}
.carousel .slideNext .next-button {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  float: right;
}
.carousel .slideNext .next-button .grm-icon-refresh {
  height: 20.95px;
  width: 19.89px;
  margin: 0;
  position: inherit;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel .slideNext .next-button:hover {
  cursor: pointer;
}

/*
8888888 .d8888b.   .d88888b. 88888888888 .d88888b.  8888888b.  8888888888 .d8888b.
  888  d88P  Y88b d88P" "Y88b    888    d88P" "Y88b 888   Y88b 888       d88P  Y88b
  888  Y88b.      888     888    888    888     888 888    888 888       Y88b.
  888   "Y888b.   888     888    888    888     888 888   d88P 8888888    "Y888b.
  888      "Y88b. 888     888    888    888     888 8888888P"  888           "Y88b.
  888        "888 888     888    888    888     888 888        888             "888
  888  Y88b  d88P Y88b. .d88P    888    Y88b. .d88P 888        888       Y88b  d88P
8888888 "Y8888P"   "Y88888P"     888     "Y88888P"  888        8888888888 "Y8888P"
*/
.isotopes .container {
  margin-top: 1px;
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (min-width: 769px) {
  .isotopes .container {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 20px;
  }
}
@media (max-width: 1200px) {
  .isotopes .container {
    width: 100%;
  }
}
.isotopes .container > div {
  clear: both;
  position: relative;
}

.isotope,
.video-overlay-image {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .isotope,
  .video-overlay-image {
    padding-right: 10px;
    padding-left: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    clear: none;
    overflow: hidden;
  }
}
@media only screen and (max-width: 667px) {
  .isotope,
  .video-overlay-image {
    padding: 15px;
    padding-bottom: 0;
    float: left !important;
  }
}
.isotope h2,
.video-overlay-image h2 {
  text-align: center;
  margin: 0;
}
.isotope .cta,
.video-overlay-image .cta {
  text-align: center;
  display: none;
  width: 100%;
  font-weight: 700;
  font-size: 100%;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  position: absolute;
  z-index: 10;
  bottom: 15px;
}
.isotope .isotope-content .cta,
.video-overlay-image .isotope-content .cta {
  position: relative;
  bottom: auto;
}
.isotope .cta:after,
.video-overlay-image .cta:after {
  content: '\e817';
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  margin-left: 0.5em;
}

.isotopes .image-well {
  margin-bottom: 1px;
  background: #FFFFFF;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  position: relative;
  cursor: default;
  width: 100%;
  clear: both;
  height: auto;
  padding-right: 0;
  padding-left: 0;
  height: 190px;
  transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
}
.isotopes .image-well.hasLink {
  cursor: pointer;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .isotopes .image-well {
    background-size: cover !important;
    background-position: 50% 0 !important;
    height: 250px;
  }
}
.isotopes .image-well.exploded {
  -webkit-transform: scale(15);
  -ms-transform: scale(15);
  -moz-transform: scale(15);
  transform: scale(15);
  opacity: 0;
}
a.isotope .isotopes .image-well.exploded {
  background: #000000;
}
.isotopes .image-well:after {
  background: #000000;
  opacity: 0.54;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  transition: opacity 300ms ease-in;
  -webkit-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  -moz-transition: opacity 300ms ease-in;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .isotopes .image-well:after {
    display: none;
  }
}
.isotopes .image-well:hover {
  background-position: 50% -5px;
}
.isotopes .image-well:hover:after {
  opacity: 0;
}

.lt-ie9 .isotopes .image-well {
  background-size: 100%;
}
.lt-ie9 .isotopes .image-well:hover {
  background-position: 50% 0;
}

.isotope.videoContainer .image-well:after,
.lt-ie9 .isotopes .image-well:after {
  display: none;
}

.isotope-content,
.video-overlay-image {
  top: 50%;
  position: absolute;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
}
.isotope-content.tooTall,
.video-overlay-image.tooTall {
  font-size: 75%;
}
.isotope-content .isoOverload,
.video-overlay-image .isoOverload {
  display: inline-block;
}
.isotope-content h2.fontModified,
.video-overlay-image h2.fontModified {
  line-height: 1em;
}

.video-overlay-content {
  position: relative;
  z-index: 1234;
  width: 100%;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-overlay-image {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1234;
  top: 0px;
  height: 100%;
  background-size: cover;
  width: 100%;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
}
.video-overlay-image:hover {
  background-color: transparent;
}

.isotope.lite,
.video-overlay-content.lite {
  color: #FFFFFF;
}
.isotope.lite .cta,
.isotope.lite h2,
.video-overlay-content.lite .cta,
.video-overlay-content.lite h2 {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.isotope.dark,
.video-overlay-content.dark {
  color: #58595A;
}
.isotope.dark .cta,
.isotope.dark h2,
.video-overlay-content.dark .cta,
.video-overlay-content.dark h2 {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.isotope.style-0 .line1,
.video-overlay-content.style-0 .line1 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.875em;
}
.isotope.style-0 .line1.bold,
.video-overlay-content.style-0 .line1.bold {
  font-weight: bold;
}
.isotope.style-0 .line1.italic,
.video-overlay-content.style-0 .line1.italic {
  font-style: italic;
}
.isotope.style-0 .line1.underline,
.video-overlay-content.style-0 .line1.underline {
  text-decoration: underline;
}
.isotope.style-0 .line1.arial,
.video-overlay-content.style-0 .line1.arial {
  font-family: Arial;
}
.isotope.style-0 .line1.learningCurve,
.video-overlay-content.style-0 .line1.learningCurve {
  font-family: learning_curve;
}
.isotope.style-0 .line1.robotoSlab,
.video-overlay-content.style-0 .line1.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-0 .line1.serifPro,
.video-overlay-content.style-0 .line1.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-0 .line1,
  .video-overlay-content.style-0 .line1 {
    font-size: 0.8em;
  }
  .isotope.style-0 .line1.bold,
  .video-overlay-content.style-0 .line1.bold {
    font-weight: bold;
  }
  .isotope.style-0 .line1.italic,
  .video-overlay-content.style-0 .line1.italic {
    font-style: italic;
  }
  .isotope.style-0 .line1.underline,
  .video-overlay-content.style-0 .line1.underline {
    text-decoration: underline;
  }
}
.isotope.style-0 .line2,
.video-overlay-content.style-0 .line2 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4em;
}
.isotope.style-0 .line2.bold,
.video-overlay-content.style-0 .line2.bold {
  font-weight: bold;
}
.isotope.style-0 .line2.italic,
.video-overlay-content.style-0 .line2.italic {
  font-style: italic;
}
.isotope.style-0 .line2.underline,
.video-overlay-content.style-0 .line2.underline {
  text-decoration: underline;
}
.isotope.style-0 .line2.arial,
.video-overlay-content.style-0 .line2.arial {
  font-family: Arial;
}
.isotope.style-0 .line2.learningCurve,
.video-overlay-content.style-0 .line2.learningCurve {
  font-family: learning_curve;
}
.isotope.style-0 .line2.robotoSlab,
.video-overlay-content.style-0 .line2.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-0 .line2.serifPro,
.video-overlay-content.style-0 .line2.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-0 .line2,
  .video-overlay-content.style-0 .line2 {
    font-size: 2.5em;
  }
  .isotope.style-0 .line2.bold,
  .video-overlay-content.style-0 .line2.bold {
    font-weight: bold;
  }
  .isotope.style-0 .line2.italic,
  .video-overlay-content.style-0 .line2.italic {
    font-style: italic;
  }
  .isotope.style-0 .line2.underline,
  .video-overlay-content.style-0 .line2.underline {
    text-decoration: underline;
  }
  .isotope.style-0 .line2.arial,
  .video-overlay-content.style-0 .line2.arial {
    font-family: Arial;
  }
  .isotope.style-0 .line2.learningCurve,
  .video-overlay-content.style-0 .line2.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-0 .line2.robotoSlab,
  .video-overlay-content.style-0 .line2.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-0 .line2.serifPro,
  .video-overlay-content.style-0 .line2.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-0 .line3,
.video-overlay-content.style-0 .line3 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}
.isotope.style-0 .line3.bold,
.video-overlay-content.style-0 .line3.bold {
  font-weight: bold;
}
.isotope.style-0 .line3.italic,
.video-overlay-content.style-0 .line3.italic {
  font-style: italic;
}
.isotope.style-0 .line3.underline,
.video-overlay-content.style-0 .line3.underline {
  text-decoration: underline;
}
.isotope.style-0 .line3.arial,
.video-overlay-content.style-0 .line3.arial {
  font-family: Arial;
}
.isotope.style-0 .line3.learningCurve,
.video-overlay-content.style-0 .line3.learningCurve {
  font-family: learning_curve;
}
.isotope.style-0 .line3.robotoSlab,
.video-overlay-content.style-0 .line3.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-0 .line3.serifPro,
.video-overlay-content.style-0 .line3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-0 .line3,
  .video-overlay-content.style-0 .line3 {
    font-size: 1.25em;
  }
  .isotope.style-0 .line3.bold,
  .video-overlay-content.style-0 .line3.bold {
    font-weight: bold;
  }
  .isotope.style-0 .line3.italic,
  .video-overlay-content.style-0 .line3.italic {
    font-style: italic;
  }
  .isotope.style-0 .line3.underline,
  .video-overlay-content.style-0 .line3.underline {
    text-decoration: underline;
  }
  .isotope.style-0 .line3.arial,
  .video-overlay-content.style-0 .line3.arial {
    font-family: Arial;
  }
  .isotope.style-0 .line3.learningCurve,
  .video-overlay-content.style-0 .line3.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-0 .line3.robotoSlab,
  .video-overlay-content.style-0 .line3.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-0 .line3.serifPro,
  .video-overlay-content.style-0 .line3.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-0 .cta,
.video-overlay-content.style-0 .cta {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 1.5625em;
}

.isotope.style-1 .line1,
.video-overlay-content.style-1 .line1 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.875em;
}
.isotope.style-1 .line1.bold,
.video-overlay-content.style-1 .line1.bold {
  font-weight: bold;
}
.isotope.style-1 .line1.italic,
.video-overlay-content.style-1 .line1.italic {
  font-style: italic;
}
.isotope.style-1 .line1.underline,
.video-overlay-content.style-1 .line1.underline {
  text-decoration: underline;
}
.isotope.style-1 .line1.arial,
.video-overlay-content.style-1 .line1.arial {
  font-family: Arial;
}
.isotope.style-1 .line1.learningCurve,
.video-overlay-content.style-1 .line1.learningCurve {
  font-family: learning_curve;
}
.isotope.style-1 .line1.robotoSlab,
.video-overlay-content.style-1 .line1.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-1 .line1.serifPro,
.video-overlay-content.style-1 .line1.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-1 .line1,
  .video-overlay-content.style-1 .line1 {
    font-size: 0.8em;
  }
  .isotope.style-1 .line1.bold,
  .video-overlay-content.style-1 .line1.bold {
    font-weight: bold;
  }
  .isotope.style-1 .line1.italic,
  .video-overlay-content.style-1 .line1.italic {
    font-style: italic;
  }
  .isotope.style-1 .line1.underline,
  .video-overlay-content.style-1 .line1.underline {
    text-decoration: underline;
  }
  .isotope.style-1 .line1.arial,
  .video-overlay-content.style-1 .line1.arial {
    font-family: Arial;
  }
  .isotope.style-1 .line1.learningCurve,
  .video-overlay-content.style-1 .line1.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-1 .line1.robotoSlab,
  .video-overlay-content.style-1 .line1.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-1 .line1.serifPro,
  .video-overlay-content.style-1 .line1.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-1 .line2,
.video-overlay-content.style-1 .line2 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
  font-size: 4em;
}
.isotope.style-1 .line2.bold,
.video-overlay-content.style-1 .line2.bold {
  font-weight: bold;
}
.isotope.style-1 .line2.italic,
.video-overlay-content.style-1 .line2.italic {
  font-style: italic;
}
.isotope.style-1 .line2.underline,
.video-overlay-content.style-1 .line2.underline {
  text-decoration: underline;
}
.isotope.style-1 .line2.arial,
.video-overlay-content.style-1 .line2.arial {
  font-family: Arial;
}
.isotope.style-1 .line2.learningCurve,
.video-overlay-content.style-1 .line2.learningCurve {
  font-family: learning_curve;
}
.isotope.style-1 .line2.robotoSlab,
.video-overlay-content.style-1 .line2.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-1 .line2.serifPro,
.video-overlay-content.style-1 .line2.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-1 .line2,
  .video-overlay-content.style-1 .line2 {
    font-size: 2.5em;
  }
  .isotope.style-1 .line2.bold,
  .video-overlay-content.style-1 .line2.bold {
    font-weight: bold;
  }
  .isotope.style-1 .line2.italic,
  .video-overlay-content.style-1 .line2.italic {
    font-style: italic;
  }
  .isotope.style-1 .line2.underline,
  .video-overlay-content.style-1 .line2.underline {
    text-decoration: underline;
  }
  .isotope.style-1 .line2.arial,
  .video-overlay-content.style-1 .line2.arial {
    font-family: Arial;
  }
  .isotope.style-1 .line2.learningCurve,
  .video-overlay-content.style-1 .line2.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-1 .line2.robotoSlab,
  .video-overlay-content.style-1 .line2.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-1 .line2.serifPro,
  .video-overlay-content.style-1 .line2.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-1 .line3,
.video-overlay-content.style-1 .line3 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}
.isotope.style-1 .line3.bold,
.video-overlay-content.style-1 .line3.bold {
  font-weight: bold;
}
.isotope.style-1 .line3.italic,
.video-overlay-content.style-1 .line3.italic {
  font-style: italic;
}
.isotope.style-1 .line3.underline,
.video-overlay-content.style-1 .line3.underline {
  text-decoration: underline;
}
.isotope.style-1 .line3.arial,
.video-overlay-content.style-1 .line3.arial {
  font-family: Arial;
}
.isotope.style-1 .line3.learningCurve,
.video-overlay-content.style-1 .line3.learningCurve {
  font-family: learning_curve;
}
.isotope.style-1 .line3.robotoSlab,
.video-overlay-content.style-1 .line3.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-1 .line3.serifPro,
.video-overlay-content.style-1 .line3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-1 .line3,
  .video-overlay-content.style-1 .line3 {
    font-size: 1.25em;
  }
  .isotope.style-1 .line3.bold,
  .video-overlay-content.style-1 .line3.bold {
    font-weight: bold;
  }
  .isotope.style-1 .line3.italic,
  .video-overlay-content.style-1 .line3.italic {
    font-style: italic;
  }
  .isotope.style-1 .line3.underline,
  .video-overlay-content.style-1 .line3.underline {
    text-decoration: underline;
  }
  .isotope.style-1 .line3.arial,
  .video-overlay-content.style-1 .line3.arial {
    font-family: Arial;
  }
  .isotope.style-1 .line3.learningCurve,
  .video-overlay-content.style-1 .line3.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-1 .line3.robotoSlab,
  .video-overlay-content.style-1 .line3.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-1 .line3.serifPro,
  .video-overlay-content.style-1 .line3.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-1 .line3,
  .video-overlay-content.style-1 .line3 {
    font-size: 1.25em;
  }
}
.isotope.style-1 .cta,
.video-overlay-content.style-1 .cta {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
  font-size: 1.5625em;
}

.isotope.style-2 .line1,
.video-overlay-content.style-2 .line1 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
  font-size: 4em;
  line-height: 1em;
}
.isotope.style-2 .line1.bold,
.video-overlay-content.style-2 .line1.bold {
  font-weight: bold;
}
.isotope.style-2 .line1.italic,
.video-overlay-content.style-2 .line1.italic {
  font-style: italic;
}
.isotope.style-2 .line1.underline,
.video-overlay-content.style-2 .line1.underline {
  text-decoration: underline;
}
.isotope.style-2 .line1.arial,
.video-overlay-content.style-2 .line1.arial {
  font-family: Arial;
}
.isotope.style-2 .line1.learningCurve,
.video-overlay-content.style-2 .line1.learningCurve {
  font-family: learning_curve;
}
.isotope.style-2 .line1.robotoSlab,
.video-overlay-content.style-2 .line1.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-2 .line1.serifPro,
.video-overlay-content.style-2 .line1.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line1,
  .video-overlay-content.style-2 .line1 {
    font-size: 2.5em;
  }
  .isotope.style-2 .line1.bold,
  .video-overlay-content.style-2 .line1.bold {
    font-weight: bold;
  }
  .isotope.style-2 .line1.italic,
  .video-overlay-content.style-2 .line1.italic {
    font-style: italic;
  }
  .isotope.style-2 .line1.underline,
  .video-overlay-content.style-2 .line1.underline {
    text-decoration: underline;
  }
  .isotope.style-2 .line1.arial,
  .video-overlay-content.style-2 .line1.arial {
    font-family: Arial;
  }
  .isotope.style-2 .line1.learningCurve,
  .video-overlay-content.style-2 .line1.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-2 .line1.robotoSlab,
  .video-overlay-content.style-2 .line1.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-2 .line1.serifPro,
  .video-overlay-content.style-2 .line1.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line1,
  .video-overlay-content.style-2 .line1 {
    font-size: 2.5em;
  }
}
.isotope.style-2 .line2,
.video-overlay-content.style-2 .line2 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
  font-size: 4em;
}
.isotope.style-2 .line2.bold,
.video-overlay-content.style-2 .line2.bold {
  font-weight: bold;
}
.isotope.style-2 .line2.italic,
.video-overlay-content.style-2 .line2.italic {
  font-style: italic;
}
.isotope.style-2 .line2.underline,
.video-overlay-content.style-2 .line2.underline {
  text-decoration: underline;
}
.isotope.style-2 .line2.arial,
.video-overlay-content.style-2 .line2.arial {
  font-family: Arial;
}
.isotope.style-2 .line2.learningCurve,
.video-overlay-content.style-2 .line2.learningCurve {
  font-family: learning_curve;
}
.isotope.style-2 .line2.robotoSlab,
.video-overlay-content.style-2 .line2.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-2 .line2.serifPro,
.video-overlay-content.style-2 .line2.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line2,
  .video-overlay-content.style-2 .line2 {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line2,
  .video-overlay-content.style-2 .line2 {
    font-size: 2.5em;
  }
  .isotope.style-2 .line2.bold,
  .video-overlay-content.style-2 .line2.bold {
    font-weight: bold;
  }
  .isotope.style-2 .line2.italic,
  .video-overlay-content.style-2 .line2.italic {
    font-style: italic;
  }
  .isotope.style-2 .line2.underline,
  .video-overlay-content.style-2 .line2.underline {
    text-decoration: underline;
  }
  .isotope.style-2 .line2.arial,
  .video-overlay-content.style-2 .line2.arial {
    font-family: Arial;
  }
  .isotope.style-2 .line2.learningCurve,
  .video-overlay-content.style-2 .line2.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-2 .line2.robotoSlab,
  .video-overlay-content.style-2 .line2.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-2 .line2.serifPro,
  .video-overlay-content.style-2 .line2.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-2 .line3,
.video-overlay-content.style-2 .line3 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}
.isotope.style-2 .line3.bold,
.video-overlay-content.style-2 .line3.bold {
  font-weight: bold;
}
.isotope.style-2 .line3.italic,
.video-overlay-content.style-2 .line3.italic {
  font-style: italic;
}
.isotope.style-2 .line3.underline,
.video-overlay-content.style-2 .line3.underline {
  text-decoration: underline;
}
.isotope.style-2 .line3.arial,
.video-overlay-content.style-2 .line3.arial {
  font-family: Arial;
}
.isotope.style-2 .line3.learningCurve,
.video-overlay-content.style-2 .line3.learningCurve {
  font-family: learning_curve;
}
.isotope.style-2 .line3.robotoSlab,
.video-overlay-content.style-2 .line3.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-2 .line3.serifPro,
.video-overlay-content.style-2 .line3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line3,
  .video-overlay-content.style-2 .line3 {
    font-size: 1.25em;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-2 .line3,
  .video-overlay-content.style-2 .line3 {
    font-size: 1.25em;
  }
  .isotope.style-2 .line3.bold,
  .video-overlay-content.style-2 .line3.bold {
    font-weight: bold;
  }
  .isotope.style-2 .line3.italic,
  .video-overlay-content.style-2 .line3.italic {
    font-style: italic;
  }
  .isotope.style-2 .line3.underline,
  .video-overlay-content.style-2 .line3.underline {
    text-decoration: underline;
  }
  .isotope.style-2 .line3.arial,
  .video-overlay-content.style-2 .line3.arial {
    font-family: Arial;
  }
  .isotope.style-2 .line3.learningCurve,
  .video-overlay-content.style-2 .line3.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-2 .line3.robotoSlab,
  .video-overlay-content.style-2 .line3.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-2 .line3.serifPro,
  .video-overlay-content.style-2 .line3.serifPro {
    font-family: sourceserif_pro;
  }
}
.isotope.style-2 .cta,
.video-overlay-content.style-2 .cta {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5625em;
}

.isotope.style-3 .line1,
.video-overlay-content.style-3 .line1 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4em;
}
.isotope.style-3 .line1.bold,
.video-overlay-content.style-3 .line1.bold {
  font-weight: bold;
}
.isotope.style-3 .line1.italic,
.video-overlay-content.style-3 .line1.italic {
  font-style: italic;
}
.isotope.style-3 .line1.underline,
.video-overlay-content.style-3 .line1.underline {
  text-decoration: underline;
}
.isotope.style-3 .line1.arial,
.video-overlay-content.style-3 .line1.arial {
  font-family: Arial;
}
.isotope.style-3 .line1.learningCurve,
.video-overlay-content.style-3 .line1.learningCurve {
  font-family: learning_curve;
}
.isotope.style-3 .line1.robotoSlab,
.video-overlay-content.style-3 .line1.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-3 .line1.serifPro,
.video-overlay-content.style-3 .line1.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line1,
  .video-overlay-content.style-3 .line1 {
    font-size: 2.5em;
  }
  .isotope.style-3 .line1.bold,
  .video-overlay-content.style-3 .line1.bold {
    font-weight: bold;
  }
  .isotope.style-3 .line1.italic,
  .video-overlay-content.style-3 .line1.italic {
    font-style: italic;
  }
  .isotope.style-3 .line1.underline,
  .video-overlay-content.style-3 .line1.underline {
    text-decoration: underline;
  }
  .isotope.style-3 .line1.arial,
  .video-overlay-content.style-3 .line1.arial {
    font-family: Arial;
  }
  .isotope.style-3 .line1.learningCurve,
  .video-overlay-content.style-3 .line1.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-3 .line1.robotoSlab,
  .video-overlay-content.style-3 .line1.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-3 .line1.serifPro,
  .video-overlay-content.style-3 .line1.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line1,
  .video-overlay-content.style-3 .line1 {
    font-size: 2.5em;
  }
}
.isotope.style-3 .line2,
.video-overlay-content.style-3 .line2 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4em;
}
.isotope.style-3 .line2.bold,
.video-overlay-content.style-3 .line2.bold {
  font-weight: bold;
}
.isotope.style-3 .line2.italic,
.video-overlay-content.style-3 .line2.italic {
  font-style: italic;
}
.isotope.style-3 .line2.underline,
.video-overlay-content.style-3 .line2.underline {
  text-decoration: underline;
}
.isotope.style-3 .line2.arial,
.video-overlay-content.style-3 .line2.arial {
  font-family: Arial;
}
.isotope.style-3 .line2.learningCurve,
.video-overlay-content.style-3 .line2.learningCurve {
  font-family: learning_curve;
}
.isotope.style-3 .line2.robotoSlab,
.video-overlay-content.style-3 .line2.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-3 .line2.serifPro,
.video-overlay-content.style-3 .line2.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line2,
  .video-overlay-content.style-3 .line2 {
    font-size: 2.5em;
  }
  .isotope.style-3 .line2.bold,
  .video-overlay-content.style-3 .line2.bold {
    font-weight: bold;
  }
  .isotope.style-3 .line2.italic,
  .video-overlay-content.style-3 .line2.italic {
    font-style: italic;
  }
  .isotope.style-3 .line2.underline,
  .video-overlay-content.style-3 .line2.underline {
    text-decoration: underline;
  }
  .isotope.style-3 .line2.arial,
  .video-overlay-content.style-3 .line2.arial {
    font-family: Arial;
  }
  .isotope.style-3 .line2.learningCurve,
  .video-overlay-content.style-3 .line2.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-3 .line2.robotoSlab,
  .video-overlay-content.style-3 .line2.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-3 .line2.serifPro,
  .video-overlay-content.style-3 .line2.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line2,
  .video-overlay-content.style-3 .line2 {
    font-size: 2.5em;
  }
}
.isotope.style-3 .line3,
.video-overlay-content.style-3 .line3 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}
.isotope.style-3 .line3.bold,
.video-overlay-content.style-3 .line3.bold {
  font-weight: bold;
}
.isotope.style-3 .line3.italic,
.video-overlay-content.style-3 .line3.italic {
  font-style: italic;
}
.isotope.style-3 .line3.underline,
.video-overlay-content.style-3 .line3.underline {
  text-decoration: underline;
}
.isotope.style-3 .line3.arial,
.video-overlay-content.style-3 .line3.arial {
  font-family: Arial;
}
.isotope.style-3 .line3.learningCurve,
.video-overlay-content.style-3 .line3.learningCurve {
  font-family: learning_curve;
}
.isotope.style-3 .line3.robotoSlab,
.video-overlay-content.style-3 .line3.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-3 .line3.serifPro,
.video-overlay-content.style-3 .line3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line3,
  .video-overlay-content.style-3 .line3 {
    font-size: 1.25em;
  }
  .isotope.style-3 .line3.bold,
  .video-overlay-content.style-3 .line3.bold {
    font-weight: bold;
  }
  .isotope.style-3 .line3.italic,
  .video-overlay-content.style-3 .line3.italic {
    font-style: italic;
  }
  .isotope.style-3 .line3.underline,
  .video-overlay-content.style-3 .line3.underline {
    text-decoration: underline;
  }
  .isotope.style-3 .line3.arial,
  .video-overlay-content.style-3 .line3.arial {
    font-family: Arial;
  }
  .isotope.style-3 .line3.learningCurve,
  .video-overlay-content.style-3 .line3.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-3 .line3.robotoSlab,
  .video-overlay-content.style-3 .line3.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-3 .line3.serifPro,
  .video-overlay-content.style-3 .line3.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-3 .line3,
  .video-overlay-content.style-3 .line3 {
    font-size: 1.25em;
  }
}
.isotope.style-3 .cta,
.video-overlay-content.style-3 .cta {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  color: __storyIsotopeBrandColor__;
  font-size: 1.5625em;
}

.isotope.style-4 .line1,
.video-overlay-content.style-4 .line1 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4em;
}
.isotope.style-4 .line1.bold,
.video-overlay-content.style-4 .line1.bold {
  font-weight: bold;
}
.isotope.style-4 .line1.italic,
.video-overlay-content.style-4 .line1.italic {
  font-style: italic;
}
.isotope.style-4 .line1.underline,
.video-overlay-content.style-4 .line1.underline {
  text-decoration: underline;
}
.isotope.style-4 .line1.arial,
.video-overlay-content.style-4 .line1.arial {
  font-family: Arial;
}
.isotope.style-4 .line1.learningCurve,
.video-overlay-content.style-4 .line1.learningCurve {
  font-family: learning_curve;
}
.isotope.style-4 .line1.robotoSlab,
.video-overlay-content.style-4 .line1.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-4 .line1.serifPro,
.video-overlay-content.style-4 .line1.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line1,
  .video-overlay-content.style-4 .line1 {
    font-size: 2.5em;
  }
  .isotope.style-4 .line1.bold,
  .video-overlay-content.style-4 .line1.bold {
    font-weight: bold;
  }
  .isotope.style-4 .line1.italic,
  .video-overlay-content.style-4 .line1.italic {
    font-style: italic;
  }
  .isotope.style-4 .line1.underline,
  .video-overlay-content.style-4 .line1.underline {
    text-decoration: underline;
  }
  .isotope.style-4 .line1.arial,
  .video-overlay-content.style-4 .line1.arial {
    font-family: Arial;
  }
  .isotope.style-4 .line1.learningCurve,
  .video-overlay-content.style-4 .line1.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-4 .line1.robotoSlab,
  .video-overlay-content.style-4 .line1.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-4 .line1.serifPro,
  .video-overlay-content.style-4 .line1.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line1,
  .video-overlay-content.style-4 .line1 {
    font-size: 2.5em;
  }
}
.isotope.style-4 .line2,
.video-overlay-content.style-4 .line2 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 4em;
}
.isotope.style-4 .line2.bold,
.video-overlay-content.style-4 .line2.bold {
  font-weight: bold;
}
.isotope.style-4 .line2.italic,
.video-overlay-content.style-4 .line2.italic {
  font-style: italic;
}
.isotope.style-4 .line2.underline,
.video-overlay-content.style-4 .line2.underline {
  text-decoration: underline;
}
.isotope.style-4 .line2.arial,
.video-overlay-content.style-4 .line2.arial {
  font-family: Arial;
}
.isotope.style-4 .line2.learningCurve,
.video-overlay-content.style-4 .line2.learningCurve {
  font-family: learning_curve;
}
.isotope.style-4 .line2.robotoSlab,
.video-overlay-content.style-4 .line2.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-4 .line2.serifPro,
.video-overlay-content.style-4 .line2.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line2,
  .video-overlay-content.style-4 .line2 {
    font-size: 2.5em;
  }
  .isotope.style-4 .line2.bold,
  .video-overlay-content.style-4 .line2.bold {
    font-weight: bold;
  }
  .isotope.style-4 .line2.italic,
  .video-overlay-content.style-4 .line2.italic {
    font-style: italic;
  }
  .isotope.style-4 .line2.underline,
  .video-overlay-content.style-4 .line2.underline {
    text-decoration: underline;
  }
  .isotope.style-4 .line2.arial,
  .video-overlay-content.style-4 .line2.arial {
    font-family: Arial;
  }
  .isotope.style-4 .line2.learningCurve,
  .video-overlay-content.style-4 .line2.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-4 .line2.robotoSlab,
  .video-overlay-content.style-4 .line2.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-4 .line2.serifPro,
  .video-overlay-content.style-4 .line2.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line2,
  .video-overlay-content.style-4 .line2 {
    font-size: 2.5em;
  }
}
.isotope.style-4 .line3,
.video-overlay-content.style-4 .line3 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 2.5em;
}
.isotope.style-4 .line3.bold,
.video-overlay-content.style-4 .line3.bold {
  font-weight: bold;
}
.isotope.style-4 .line3.italic,
.video-overlay-content.style-4 .line3.italic {
  font-style: italic;
}
.isotope.style-4 .line3.underline,
.video-overlay-content.style-4 .line3.underline {
  text-decoration: underline;
}
.isotope.style-4 .line3.arial,
.video-overlay-content.style-4 .line3.arial {
  font-family: Arial;
}
.isotope.style-4 .line3.learningCurve,
.video-overlay-content.style-4 .line3.learningCurve {
  font-family: learning_curve;
}
.isotope.style-4 .line3.robotoSlab,
.video-overlay-content.style-4 .line3.robotoSlab {
  font-family: roboto_slab;
}
.isotope.style-4 .line3.serifPro,
.video-overlay-content.style-4 .line3.serifPro {
  font-family: sourceserif_pro;
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line3,
  .video-overlay-content.style-4 .line3 {
    font-size: 1.25em;
  }
  .isotope.style-4 .line3.bold,
  .video-overlay-content.style-4 .line3.bold {
    font-weight: bold;
  }
  .isotope.style-4 .line3.italic,
  .video-overlay-content.style-4 .line3.italic {
    font-style: italic;
  }
  .isotope.style-4 .line3.underline,
  .video-overlay-content.style-4 .line3.underline {
    text-decoration: underline;
  }
  .isotope.style-4 .line3.arial,
  .video-overlay-content.style-4 .line3.arial {
    font-family: Arial;
  }
  .isotope.style-4 .line3.learningCurve,
  .video-overlay-content.style-4 .line3.learningCurve {
    font-family: learning_curve;
  }
  .isotope.style-4 .line3.robotoSlab,
  .video-overlay-content.style-4 .line3.robotoSlab {
    font-family: roboto_slab;
  }
  .isotope.style-4 .line3.serifPro,
  .video-overlay-content.style-4 .line3.serifPro {
    font-family: sourceserif_pro;
  }
}
@media only screen and (max-width: 667px) {
  .isotope.style-4 .line3,
  .video-overlay-content.style-4 .line3 {
    font-size: 1.25em;
  }
}
.isotope.style-4 .cta,
.video-overlay-content.style-4 .cta {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5625em;
}

/* 1 isotope layout */
.layout-1-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-1-isotopes #isotope-1 {
    width: 100%;
    padding-left: 0;
  }
  .layout-1-isotopes #isotope-1 .image-well {
    height: 600px;
  }
  .layout-1-isotopes #isotope-1 .cta {
    display: block;
  }
}

/* 2 isotope layout */
.layout-2-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-2-isotopes #isotope-1 {
    width: 50%;
    padding-left: 0;
  }
  .layout-2-isotopes #isotope-1 .image-well {
    height: 600px;
  }
  .layout-2-isotopes #isotope-1 .cta {
    display: block;
  }
}
.layout-2-isotopes #isotope-2 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-2-isotopes #isotope-2 {
    width: 50%;
    padding-right: 0;
  }
  .layout-2-isotopes #isotope-2 .image-well {
    height: 600px;
  }
  .layout-2-isotopes #isotope-2 .cta {
    display: block;
  }
}

/* 3 isotope layout */
.layout-3-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-3-isotopes #isotope-1 {
    width: 66.66666%;
    padding-left: 0;
  }
  .layout-3-isotopes #isotope-1 .image-well {
    height: 390px;
  }
  .layout-3-isotopes #isotope-1 .cta {
    display: block;
  }
}
.layout-3-isotopes #isotope-2 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-3-isotopes #isotope-2 {
    width: 33.33333%;
    padding-right: 0;
  }
  .layout-3-isotopes #isotope-2 .image-well {
    height: 601px;
  }
  .layout-3-isotopes #isotope-2 .cta {
    display: block;
  }
}
.layout-3-isotopes #isotope-3 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-3-isotopes #isotope-3 {
    width: 66.66666%;
    padding-left: 0;
  }
  .layout-3-isotopes #isotope-3 .image-well {
    height: 190px;
  }
}

/* 4 isotope layout */
.layout-4-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-4-isotopes #isotope-1 {
    width: 66.66666%;
    padding-left: 0;
  }
  .layout-4-isotopes #isotope-1 .image-well {
    height: 390px;
  }
  .layout-4-isotopes #isotope-1 .cta {
    display: block;
  }
}
.layout-4-isotopes #isotope-2 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-4-isotopes #isotope-2 {
    width: 33.33333%;
    padding-right: 0;
  }
  .layout-4-isotopes #isotope-2 .image-well {
    height: 600px;
  }
  .layout-4-isotopes #isotope-2 .cta {
    display: block;
  }
}
.layout-4-isotopes #isotope-3 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-4-isotopes #isotope-3 {
    width: 33.33333%;
    padding-left: 0;
  }
  .layout-4-isotopes #isotope-3 .image-well {
    height: 190px;
  }
}
.layout-4-isotopes #isotope-4 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-4-isotopes #isotope-4 {
    width: 33.33333%;
  }
  .layout-4-isotopes #isotope-4 .image-well {
    height: 190px;
  }
}

/* 5 isotope layout */
.layout-5-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-5-isotopes #isotope-1 {
    width: 66.66666%;
    padding-left: 0;
  }
  .layout-5-isotopes #isotope-1 .image-well {
    height: 390px;
  }
  .layout-5-isotopes #isotope-1 .cta {
    display: block;
  }
}
.layout-5-isotopes #isotope-2 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-5-isotopes #isotope-2 {
    width: 33.33333%;
    padding-right: 0;
  }
  .layout-5-isotopes #isotope-2 .image-well {
    height: 390px;
  }
  .layout-5-isotopes #isotope-2 .cta {
    display: block;
  }
}
.layout-5-isotopes #isotope-3 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-5-isotopes #isotope-3 {
    width: 33.33333%;
    padding-left: 0;
  }
  .layout-5-isotopes #isotope-3 .image-well {
    height: 190px;
  }
}
.layout-5-isotopes #isotope-4 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-5-isotopes #isotope-4 {
    width: 33.33333%;
  }
  .layout-5-isotopes #isotope-4 .image-well {
    height: 190px;
  }
}
.layout-5-isotopes #isotope-5 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-5-isotopes #isotope-5 {
    width: 33.33333%;
    padding-right: 0;
  }
  .layout-5-isotopes #isotope-5 .image-well {
    height: 190px;
  }
}

/* 6 isotope layout */
.layout-6-isotopes #isotope-1 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-1 {
    padding-left: 0;
    width: 66.66666%;
  }
  .layout-6-isotopes #isotope-1 .image-well {
    height: 390px;
  }
  .layout-6-isotopes #isotope-1 .cta {
    display: block;
  }
}
.layout-6-isotopes #isotope-2 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-2 {
    width: 33.33333%;
    padding-right: 0;
  }
  .layout-6-isotopes #isotope-2 .image-well {
    height: 600px;
  }
  .layout-6-isotopes #isotope-2 .cta {
    display: block;
  }
}
.layout-6-isotopes #isotope-3 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-3 {
    width: 33.33333%;
    padding-left: 0;
  }
  .layout-6-isotopes #isotope-3 .image-well {
    height: 200px;
  }
}
.layout-6-isotopes #isotope-4 {
  float: right;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-4 {
    width: 33.33333%;
  }
  .layout-6-isotopes #isotope-4 .image-well {
    height: 406px;
  }
  .layout-6-isotopes #isotope-4 .cta {
    display: block;
  }
}
.layout-6-isotopes #isotope-5 {
  float: left;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-5 {
    width: 33.33333%;
    padding-left: 0;
  }
  .layout-6-isotopes #isotope-5 .image-well {
    height: 200px;
  }
}
.layout-6-isotopes #isotope-6 {
  position: relative;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 769px) {
  .layout-6-isotopes #isotope-6 {
    width: 33.33333%;
    padding-right: 0;
    position: absolute;
  }
  .layout-6-isotopes #isotope-6 .image-well {
    height: 197px;
  }
}
.layout-6-isotopes #isotope-3 .image-well, .layout-6-isotopes #isotope-5 .image-well {
  height: 192.5px;
}

/*
888     888 8888888 8888888b.  8888888888 .d88888b.
888     888   888   888  "Y88b 888       d88P" "Y88b
888     888   888   888    888 888       888     888
Y88b   d88P   888   888    888 8888888   888     888
 Y88b d88P    888   888    888 888       888     888
  Y88o88P     888   888    888 888       888     888
   Y888P      888   888  .d88P 888       Y88b. .d88P
    Y8P     8888888 8888888P"  8888888888 "Y88888P"
*/
.isotope .image-well.videoContainer {
  padding-top: 0;
}
.isotope .image-well.videoContainer figure {
  height: 100%;
}
.isotope .image-well.videoContainer iframe {
  height: 100% !important;
}

.isoEdit {
  margin-top: 40px;
}
.isoEdit .carouselChoices {
  text-align: center;
}
.isoEdit .carouselChoices input[type="file"] {
  display: inline;
}

#loginPage {
  background-image: url("https://s7d4.scene7.com/is/image/BIworldwide/Hoth-Theme-Login-Image-GRM?scl=1");
  margin: 0;
  padding: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#loginPage .wrapper {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}

.navigation {
  list-style: none;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.navigation a {
  display: block;
}

.navigation li:nth-of-type(2) {
  flex-grow: 1;
}

.navigation li:last-of-type a {
  border-bottom: none;
}

.language_select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  width: calc(100% + 14px);
}
.language_select #languageSelectLoginPreHeader {
  order: 2;
  height: 24px;
  width: 84px;
  cursor: pointer;
}
.language_select span.customSelect.languageSelectHeader {
  order: 3;
  height: 24px;
}
.language_select img {
  vertical-align: top;
  opacity: 0.5;
}
.language_select img.globe-icon {
  width: 24px;
  height: 24px;
  order: 1;
}
.language_select img.arrow-down-icon {
  width: 16px;
  height: 16px;
  order: 4;
}

.language_select_none {
  height: 24px;
}
@media (minWidthDesktop) {
  .language_select_none {
    width: 257px;
  }
}
@media (minWidthTablet) {
  .language_select_none {
    width: 221px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .language_select_none {
    width: 271px;
  }
}

#languageSelectLoginPreHeader {
  border: 0;
  width: 84px;
  font-size: 14px;
  height: 24px;
  vertical-align: -webkit-baseline-middle;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
  background-color: #FFFFFF;
}

.link-container {
  padding: 0 5px 5px 5px;
  display: inline-flex;
  border: none;
}

.loginhelp, .contactusmsg {
  display: none;
}

.link-container.active {
  border-bottom: 2px solid #006618;
}

.form-fields {
  padding: 0;
}

#login_form_pp .sign-up-form.browse-only-form {
  display: none;
}

#loginPage .wrapper input,
#loginPage .wrapper button {
  width: 100%;
  margin: 24px 0;
  display: block;
}

#logo {
  flex-grow: 2;
  order: 3;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.primary-login-form {
  /* Hiding the login form on page load to give the application time to determine the correct state */
  opacity: 0;
}

.link-wrapper {
  width: 100%;
  margin: 24px 0;
  text-align: center;
  font-size: 16px;
}

.footer-link-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: auto 0 0 0;
}

.loginhelp {
  flex-direction: column;
}
.loginhelp form {
  padding: 0;
}

.bottom-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.bottom-links .privacy-policy {
  font-size: 12px;
}
.bottom-links .copyright {
  font-size: 11px;
}

.loginImage {
  display: none;
}

@media all and (max-width: 360px) {
  body#loginPage {
    padding: 0 8px;
  }

  #loginPage .wrapper {
    margin: 0;
    height: 90%;
    width: 100%;
    max-width: 560px;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .navigation {
    flex-flow: row wrap;
    padding: 0;
  }

  #languageSelectLoginPreHeader {
    border: 0;
    width: 180px !important;
    font-size: 14px;
    height: 24px;
    vertical-align: -webkit-baseline-middle;
    font-family: "Barlow", Helvetica, Arial, sans-serif;
  }

  .navigation a {
    padding: 0;
  }

  .navigation li:last-of-type a {
    border-bottom: none;
  }

  .footer-link-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 0;
  }

  .bottom-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media all and (min-width: 576px) {
  body#loginPage {
    padding: 3.5em;
  }

  #loginPage .wrapper {
    height: 80%;
    width: 90%;
    max-width: 736px;
    margin: 0 auto;
    padding: 40px;
  }
}
@media all and (min-width: 576px) and (orientation: landscape) {
  #loginPage .wrapper {
    padding: 16px;
  }
}

@media all and (min-width: 576px) {
  .navigation {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    padding: 0;
  }

  #languageSelectLoginPreHeader {
    border: 0;
    width: 100% !important;
    font-size: 14px;
    height: 24px;
    vertical-align: -webkit-baseline-middle;
    font-family: "Barlow", Helvetica, Arial, sans-serif;
  }

  .navigation a {
    padding: 0;
  }

  #logo {
    flex-grow: 2;
    order: 1;
    width: auto;
    display: block;
  }

  .navigation li:nth-of-type(2) {
    flex-grow: 1;
    order: 2;
  }

  .navigation li:last-of-type {
    order: 3;
  }

  .navigation li:last-of-type a {
    border-bottom: none;
  }

  .toggle-link {
    margin: 80px 0 0 0;
  }
}
@media all and (min-width: 576px) and (orientation: landscape) {
  .toggle-link {
    margin: 20px 0 0 0;
  }
}

@media all and (min-width: 576px) {
  .link-container {
    padding: 0 5px 5px 5px;
    display: inline-flex;
    border: 0;
  }
}
@media all and (min-width: 576px) and (orientation: landscape) {
  .link-container {
    padding: 0 5px;
  }
}

@media all and (min-width: 576px) {
  #login_form_pp .sign-up-form.browse-only-form {
    display: none;
  }
}
@media all and (min-width: 576px) and (orientation: landscape) and (max-width: 767px) {
  #loginPage .wrapper input,
  #loginPage .wrapper input[type='text'],
  .wrapper #login_form #loginSubmit,
  .wrapper #login_form_pp a#browse-only-button,
  .wrapper #login_form_pp a#sign-up-button {
    margin: 8px 0 0 0;
  }
}

@media all and (min-width: 576px) and (orientation: landscape) and (max-width: 767px) {
  .link-wrapper {
    margin: 8px 0;
  }
}

@media all and (min-width: 576px) {
  .privacy-policy {
    font-size: 12px;
  }

  .copyright {
    font-size: 8px;
  }
}
@media all and (min-width: 768px) {
  #loginPage .wrapper {
    height: 75%;
    max-height: 780px;
    max-width: 608px;
    margin: 80px auto 164px;
    padding: 24px 48px;
  }
}
@media all and (min-width: 768px) and (orientation: landscape) {
  #loginPage .wrapper {
    margin: auto;
    height: 90%;
  }
}

@media all and (min-width: 768px) {
  #logo {
    flex-grow: 2;
    order: 1;
    width: auto;
    display: block;
  }

  .navigation li:nth-of-type(2) {
    flex-grow: 1;
    order: 2;
  }

  .navigation li:last-of-type {
    order: 3;
  }

  .primary-login-form {
    padding: 0 56px;
    margin: 6em 0;
  }
}
@media all and (min-width: 768px) and (max-height: 768px) {
  .primary-login-form {
    margin: 4em 0;
  }
}

@media all and (min-width: 768px) {
  .loginhelp,
  .enter-security-form {
    padding: 0 56px;
    margin: 4em 0;
  }
}
@media all and (min-width: 768px) and (max-height: 768px) {
  .loginhelp,
  .enter-security-form {
    margin: 2em 0;
  }
}
@media all and (min-width: 768px) {
  .loginhelp .back-to-sign-in-form,
  .enter-security-form .back-to-sign-in-form {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    cursor: pointer;
  }
  .loginhelp .back-to-sign-in-form img,
  .enter-security-form .back-to-sign-in-form img {
    height: 17px;
    width: 17px;
    margin: 0 8px;
  }
  .loginhelp .tabs,
  .enter-security-form .tabs {
    margin-top: 20px;
  }

  .link-wrapper {
    text-align: left;
  }
}
@media all and (min-width: 768px) and (orientation: landscape) and (max-height: 600px) {
  .footer-link-container {
    margin: 50px 0 0 0;
  }
}

@media all and (min-width: 992px) {
  #loginPage .wrapper {
    margin: auto;
    max-height: 780px;
    max-width: 80%;
    height: 90%;
    width: 80%;
    padding: 24px 48px;
  }
}
@media all and (min-width: 1280px) {
  #loginPage .wrapper {
    height: 80%;
    width: 80%;
    max-width: 736px;
    max-height: 780px;
    padding: 3em;
    margin: 0 3.5em;
  }
}
@media all and (min-width: 1280px) and (max-height: 768px) {
  #loginPage .wrapper .primary-login-form {
    margin: 2em 0;
  }
}

@media all and (min-width: 1440px) {
  #loginPage .wrapper {
    width: calc(50% - 3.5em);
  }
}
.login-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-navigation .company-logo .grm-logo {
  display: block;
}
.login-navigation .company-logo .grm-logo img {
  width: 100%;
}
.login-navigation .lang-contact-wrapper {
  display: flex;
  flex-shrink: 0;
}
.login-navigation .lang-contact-wrapper .language-select {
  align-self: flex-start;
  margin-right: 14px;
}
.login-navigation .lang-contact-wrapper .language-select .language_select img.globe-icon {
  position: relative;
  right: 2px;
  bottom: 2px;
}
.login-navigation .lang-contact-wrapper .language-select .language_select .arrow-down-icon {
  position: relative;
  top: 3px;
  left: 4px;
}
.login-navigation .lang-contact-wrapper .language-select .language_select select {
  width: 100% !important;
}
.login-navigation .lang-contact-wrapper .contact-us {
  align-self: flex-start;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .login-navigation {
    flex-flow: row wrap;
  }
  .login-navigation .company-logo {
    order: 3;
    width: 100%;
  }
  .login-navigation .company-logo .grm-logo img {
    width: auto;
  }
  .login-navigation .lang-contact-wrapper {
    justify-content: space-between;
    flex-grow: 1;
  }
}
.contactusmsg {
  padding: 50px;
  font-weight: bold;
  font-size: 17px;
}
.contactusmsg .back-signin {
  font-weight: bold;
  font-size: 17px;
  color: #000000;
  cursor: pointer;
}

.signin-clickable-tag {
  text-underline-offset: 2px;
}

#brc-sign-up-section {
  margin-top: 20px;
}

#password::-ms-reveal,
input::-ms-clear {
  display: none;
}

/*
8888888b.     d8888  .d8888b.  8888888 888b    888        d8888 88888888888
888   Y88b   d88888 d88P  Y88b   888   8888b   888       d88888     888
888    888  d88P888 888    888   888   88888b  888      d88P888     888
888   d88P d88P 888 888          888   888Y88b 888     d88P 888     888
8888888P" d88P  888 888  88888   888   888 Y88b888    d88P  888     888
888      d88P   888 888    888   888   888  Y88888   d88P   888     888
888     d8888888888 Y88b  d88P   888   888   Y8888  d8888888888     888
888    d88P     888  "Y8888P88 8888888 888    Y888 d88P     888     888
*/
.pagination .itemsFound {
  text-align: center;
  bottom: 5px;
  position: relative;
  font-size: 12px;
  font-weight: bold;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
.pagination .itemsFound:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 667px) {
  .pagination .itemsFound {
    position: static;
  }
  .pagination .itemsFound > a {
    font-weight: 700;
    font-size: 12px;
    color: #000000;
  }
  .pagination .itemsFound > a:hover, .pagination .itemsFound > a:active {
    color: #000000;
    text-decoration: underline;
  }
  .pagination .itemsFound > a:disabled {
    color: #CCCCCC;
  }
}

.pagination .pageList {
  text-align: right;
  font-size: 125%;
  white-space: nowrap;
  position: relative;
  top: 10px;
  float: right;
}
.pagination .pageList.noCarousel .owl-carousel {
  display: block;
  margin: 0;
  width: auto;
}
.pagination .pageList.noCarousel .item {
  display: inline-block;
}
.pagination .pageList.noCarousel .item a:hover {
  background: #000000;
  color: #FFFFFF;
}
@media only screen and (max-width: 667px) {
  .pagination .pageList.noCarousel .item {
    width: auto;
    padding: 0 1em;
  }
}
.pagination .pageList.noCarousel .pageCarouselNext,
.pagination .pageList.noCarousel .pageCarouselPlacecard,
.pagination .pageList.noCarousel .pageCarouselPrev {
  display: none;
}
.pagination .pageList .item a:hover {
  background: #000000;
  color: #FFFFFF;
}

.gridContainer .pagination .pageList {
  width: 36%;
}

.pagination .pageList a {
  color: #999999;
  font-weight: 300;
  font-size: 15px;
  padding: 0 0.25em;
}

.pagination .pageList a.activePage {
  color: #FFFFFF;
  padding: 0 0.25em;
  background: #333333;
}

.pagination .pageList a.pageArrow {
  font-weight: normal;
  font-size: 140%;
}

.pagination .pageCarouselNext,
.pagination .pageCarouselPrev {
  width: 1em;
  display: block;
  position: absolute;
  top: 0;
}
.pagination .pageCarouselNext:hover,
.pagination .pageCarouselPrev:hover {
  cursor: pointer;
}

.pagination .pageCarouselPlacecard {
  color: #FFFFFF;
  padding: 0 0.25em;
  background: #333333;
  position: absolute;
  left: 1.5em;
  text-align: center;
  top: 1px;
  display: none;
  z-index: 99;
}
@media only screen and (max-width: 667px) {
  .pagination .pageCarouselPlacecard {
    display: none !important;
  }
}

.pagination .pageCarouselPrev {
  left: 0;
}

.pagination .pageCarouselNext {
  right: 1em;
}

.pagination .pageList .owl-carousel {
  margin-left: 1.5em;
  width: 250px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .pagination .pageList .owl-carousel {
    width: 185px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .pagination .pageList .owl-carousel {
    width: 210px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .pagination .pageList .owl-carousel {
    width: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  .pagination .pageList .owl-carousel {
    width: 250px;
  }
}
@media only screen and (min-width: 1350px) {
  .pagination .pageList .owl-carousel {
    width: 280px;
  }
}

.pagination .pageList .owl-carousel .item {
  text-align: center;
}

@media only screen and (max-width: 667px) {
  .gridContainer .pagination {
    font-size: 70%;
    margin-bottom: 40px;
  }

  .gridContainer .pagination .pageList,
  .gridContainer .pagination div {
    width: 100%;
    text-align: center;
  }

  .gridContainer .pagination .pageList .pageCarouselNext,
  .gridContainer .pagination .pageList .pageCarouselPrev {
    width: 1em;
  }

  .pagination .pageList .owl-carousel {
    width: 88%;
  }

  .pagination .itemsFound {
    margin: 2em 0 1em;
  }
}
/*
888b     d888 8888888888 .d8888b.         d8888
8888b   d8888 888       d88P  Y88b       d88888
88888b.d88888 888       888    888      d88P888
888Y88888P888 8888888   888            d88P 888
888 Y888P 888 888       888  88888    d88P  888
888  Y8P  888 888       888    888   d88P   888
888   "   888 888       Y88b  d88P  d8888888888
888       888 8888888888 "Y8888P88 d88P     888

 .d8888b.  8888888888        d8888 8888888b.   .d8888b.  888    888
d88P  Y88b 888              d88888 888   Y88b d88P  Y88b 888    888
Y88b.      888             d88P888 888    888 888    888 888    888
 "Y888b.   8888888        d88P 888 888   d88P 888        8888888888
    "Y88b. 888           d88P  888 8888888P"  888        888    888
      "888 888          d88P   888 888 T88b   888    888 888    888
Y88b  d88P 888         d8888888888 888  T88b  Y88b  d88P 888    888
 "Y8888P"  8888888888 d88P     888 888   T88b  "Y8888P"  888    888
*/
.megaSearch {
  margin: 0 0 100px 0;
  width: 55%;
  position: absolute;
  top: 5px;
  height: 85px;
  background: #FFFFFF;
  display: none;
  z-index: 99999;
  white-space: nowrap;
  display: block;
  transition: all 800ms;
  -moz-transition: all 800ms;
  -webkit-transition: all 800ms;
  opacity: 1;
  transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
@media only screen and (max-width: 667px) {
  .megaSearch {
    width: 35%;
    height: 20px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .megaSearch {
    height: 85px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .megaSearch {
    height: 85px;
  }
}

.stickOn .megaSearch {
  top: 0;
}

.searchField::-ms-clear {
  display: none;
}

.megaSearch .searchField {
  width: 100%;
  height: 100%;
  font-size: 350%;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 100;
  color: #808080;
  border: none;
  text-indent: 3px;
  margin: 16px 0px 0px 0px;
  padding-left: 75px;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .megaSearch .searchField {
    margin-top: 15px;
    font-size: 210%;
  }
}
@media only screen and (min-width: 315px) and (max-width: 419px) {
  .megaSearch .searchField {
    font-size: 12px;
    padding-left: 46px;
  }
}
@media only screen and (min-width: 420px) and (max-width: 666px) {
  .megaSearch .searchField {
    font-size: 14px;
    padding-left: 56px;
  }
}
@media only screen and (min-width: 667px) and (max-width: 768px) {
  .megaSearch .searchField {
    font-size: 190%;
    margin-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .megaSearch .searchField {
    font-size: 240%;
    margin-top: 25px;
  }
}

.lt-ie10 .megaSearch .searchField {
  margin-top: 28px;
}

.searchField.tt-input::-ms-clear {
  display: none;
}

.megaSearch .megaSearchPlaceholder {
  position: relative;
  top: 23px;
  width: 100%;
  height: 100%;
  font-size: 350%;
  font-style: italic;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  padding-left: 2%;
  font-weight: 100;
  color: #808080;
  border: none;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (orientation: portrait) {
  .megaSearch .megaSearchPlaceholder {
    top: 34px;
  }
}

.lt-ie10 .megaSearch .ieFix {
  display: block;
  z-index: 10001;
}

.megaSearch .searchField:focus {
  outline: none;
}

.megaSearch .twitter-typeahead {
  margin-top: 2em;
}

.megaSearch .searchIcon {
  position: absolute;
  color: #808080;
  font-size: 300%;
  top: 15px;
  width: 50px;
  left: 5px;
}
@media only screen and (min-width: 315px) and (max-width: 666px) {
  .megaSearch .searchIcon {
    font-size: 22px;
    top: 9px;
  }
}
@media only screen and (min-width: 667px) and (max-width: 768px) {
  .megaSearch .searchIcon {
    font-size: 240%;
  }
}
.megaSearch .searchIcon:hover {
  cursor: pointer;
}

.megaSearch .pointsSearchIcon {
  display: none;
}

.megaSearch .searchIcon .endor-mag {
  margin-left: 30px;
}

.megaSearch .searchIcon .endor-mag,
.megaSearch .searchIcon .megaSearchHideTrigger {
  display: block;
  margin-left: 20px;
}

.megaSearch .searchIcon .endor-slider,
.megaSearch .searchIcon .megaSearchHideTrigger {
  display: inline-block;
}

.megaSearch .endor-search-spin {
  top: -117px;
  position: relative;
  left: 4px;
  font-size: 75%;
  color: #EEEEEE;
}

.megaSearch .searchIcon .endor-mag {
  float: left;
  padding-right: 1%;
  right: 20%;
}

.megaSearch .searchIcon .endor-slider {
  padding-right: 15%;
  padding-left: 30%;
}

.megaSearch .searchIcon .megaSearchHideTrigger {
  float: right;
  margin-top: -1%;
  font-size: 92%;
}
@media only screen and (max-width: 667px) {
  .megaSearch .searchIcon .megaSearchHideTrigger {
    padding-right: 0;
  }
}

.megaSearch .searchIcon .endor-close {
  font-size: 85%;
}

.megaSearch .searchIcon a.megaSearchHideTrigger {
  color: #808080;
}

.megaSearch .searchIcon a.megaSearchHideTrigger:hover {
  text-decoration: none;
}

.searchFlyoutRangeContainer {
  display: none;
  width: 100%;
  height: 150px;
  background-color: #FFFFFF;
}
.searchFlyoutRangeContainer .searchFlyoutRangeContainerInputs {
  width: auto;
  margin-left: 40%;
}
.searchFlyoutRangeContainer .searchFlyoutRangeContainerInputs input {
  display: inline-block;
  float: left;
  margin-right: 25px;
  margin-top: 50px;
}
.searchFlyoutRangeContainer .points-range-dash {
  display: inline-block;
  width: 10px;
  height: 3px;
  background-color: #7C7C7C;
}

.twitter-typeahead {
  width: 100%;
}

.typeahead {
  background-color: #FFFFFF;
}

.tt-hint {
  color: #CCCCCC;
}

.tt-dropdown-menu {
  width: 100%;
  margin-top: 25px;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: none;
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 150%;
  line-height: 1.3em;
}

.tt-suggestion.tt-cursor {
  color: #333333;
  background-color: #E3E3E3;
}

.tt-suggestion strong {
  color: #FF0000;
  font-weight: 300;
}

.tt-suggestion p {
  margin: 0;
}

.search-header span {
  font-size: 15px;
  text-transform: none;
  line-height: 0;
}
.search-header .sep {
  padding: 0 5px;
}
.search-header .search-links {
  position: relative;
  float: right;
  margin-top: 7px;
}
.search-header .search-links > div > span,
.search-header .search-links > span {
  color: #808080;
  font-size: 12px;
}
.search-header .search-links > div > span > a {
  text-decoration: underline;
  color: #0054A6;
  font-size: 15px;
}
.search-header .search-links > div > span > a:active, .search-header .search-links > div > span > a:focus, .search-header .search-links > div > span > a:hover {
  color: #000000;
}

.searchHeader h1.page-title {
  font-size: 55px;
  text-transform: uppercase;
  margin-bottom: -15px;
}
@media only screen and (max-width: 667px) {
  .searchHeader h1.page-title {
    line-height: 0.6em;
  }
}
.searchHeader h1.page-title em {
  font-size: 30%;
  margin-left: 1em;
  font-style: normal;
  color: #808080;
}
@media only screen and (max-width: 667px) {
  .searchHeader h1.page-title em {
    display: block;
    margin-left: 0;
    line-height: 60px;
  }
}

.search-links {
  text-align: right;
}
@media only screen and (max-width: 667px) {
  .search-links {
    text-align: left;
  }
}
.search-links a {
  text-decoration: underline;
}

.breadcrumb-container {
  padding-right: 8px;
  padding-left: 3px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
@media (max-width: 575.98px) {
  .breadcrumb-container {
    padding-right: 0px;
    padding-left: 0px;
  }
}

.menu_detail {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.menu_detail ul {
  margin-top: 20px;
  padding: 0px;
  color: #404040;
}

.menu_detail .list_li_details {
  float: left;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
}
.menu_detail .list_li_details .list_li_details_wrapper {
  display: inline;
  margin: 4px 4px;
}
.menu_detail .list_li_details .list_li_details_wrapper img.grm-icon {
  width: 12px;
}

.menu_detail .link_details {
  color: #58595A;
  font-size: 100%;
}

.list_li_details:last-of-type .link_details {
  color: #58595A;
}

.menu_detail .chevron-right {
  float: left;
  margin-top: -6px;
  font-size: 25px;
  color: #58595A;
  font-weight: 100;
}

.menu_detail .link_details:hover {
  color: #000000;
}

.menu_detail .link_details:focus {
  outline: 1px dotted #000000;
}

.menu_detail .link_details_active {
  color: #000000;
  cursor: default;
  outline: 0;
}

.menu_detail .link_details_active:hover,
.menu_detail .link_details_active:active {
  color: #000000;
  cursor: default;
}

.pagination_menu {
  border-top: 1px solid #D9D9D9;
  margin-bottom: 20px;
  display: block;
  clear: both;
}

.blackout_fixed {
  overflow-y: hidden;
}

.blackout_search {
  background: rgba(0, 0, 0, 0.25);
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 180px;
  left: 0;
  display: none;
}
@media only screen and (max-width: 666px) and (min-width: 420px) {
  .blackout_search {
    top: 56px;
  }
}

.slideOut {
  width: 70%;
  opacity: 1;
}
@media only screen and (max-width: 768px) and (min-width: 420px) {
  .slideOut {
    width: 84%;
  }
}
@media only screen and (max-width: 419px) and (min-width: 300px) {
  .slideOut {
    width: 80%;
  }
}

@-webkit-keyframes fadeinout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeoutin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.searchTrigger {
  position: relative;
  z-index: 999;
  transition: all 700ms;
  -moz-transition: all 700ms;
  -webkit-transition: all 700ms;
  display: inline-block;
}

.megaSearchHideTrigger {
  z-index: 1;
  position: relative;
  transition: all 700ms;
  -moz-transition: all 700ms;
  -webkit-transition: all 700ms;
  display: inline-block;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  margin: 0px -95px 0px 0px;
  bottom: 4px;
  float: right;
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
  .megaSearchHideTrigger {
    font-size: 35px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .megaSearchHideTrigger {
    font-size: 35px;
  }
}

.point-range-trigger {
  z-index: 1;
  position: relative;
  transition: all 700ms;
  -moz-transition: all 700ms;
  -webkit-transition: all 700ms;
  display: inline-block;
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  margin: 0px -147px 0px 75px;
  bottom: 4px;
  float: left;
}

.zoomOut {
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

.zoomIn {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

@media all and (max-width: 767px) {
  .back-to-search {
    display: none;
  }
}
#search-container {
  background-color: #F6F7F8;
  padding: 20px 0px;
}
#search-container .search-wrapper {
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}
#search-container .search-wrapper .category-wrapper .dropdown {
  padding-right: 5px;
}
#search-container .search-wrapper .category-wrapper .dropdown button.dropdown-toggle {
  height: 50px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  border-radius: 8px 0 0 8px;
  border: 0;
  padding: 16px;
}
#search-container .search-wrapper .category-wrapper .dropdown button.dropdown-toggle:focus {
  outline: 0;
}
#search-container .search-wrapper .category-wrapper .dropdown button.dropdown-toggle img.default {
  width: 12px;
  display: inline-block;
  position: relative;
  left: 5px;
}
#search-container .search-wrapper .category-wrapper .dropdown button.dropdown-toggle img.opened {
  width: 12px;
  display: none;
  position: relative;
  left: 5px;
}
#search-container .search-wrapper .category-wrapper .dropdown.open {
  background-color: #FFFFFF;
}
#search-container .search-wrapper .category-wrapper .dropdown.open button.dropdown-toggle {
  color: #006618;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
#search-container .search-wrapper .category-wrapper .dropdown.open button.dropdown-toggle img.default {
  width: 12px;
  display: none;
  position: relative;
  left: 5px;
}
#search-container .search-wrapper .category-wrapper .dropdown.open button.dropdown-toggle img.opened {
  width: 12px;
  display: inline-block;
  position: relative;
  left: 5px;
}
#search-container .search-wrapper .category-wrapper .dropdown ul.dropdown-menu {
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 1px 0px;
  width: 235px;
  padding: 12px 0px;
}
#search-container .search-wrapper .category-wrapper .dropdown ul.dropdown-menu li a {
  display: inline-block;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  padding: 8px 20px;
  width: 100%;
  white-space: normal;
}
#search-container .search-wrapper .category-wrapper .dropdown ul.dropdown-menu li a:hover {
  background-color: #F6F7F8;
  color: #000000;
  text-decoration: none;
}
#search-container .search-wrapper .category-wrapper .dropdown ul.dropdown-menu li a.active {
  color: #006618;
}
#search-container .search-wrapper .search-input-wrapper {
  flex-grow: 1;
  position: relative;
  margin-right: 2px;
  height: 50px;
}
#search-container .search-wrapper .search-input-wrapper input {
  width: 100%;
  height: 50px;
  caret-color: #888888;
  border: 0;
  padding: 12px 0 12px 16px;
}
#search-container .search-wrapper .search-input-wrapper input:focus {
  outline: 0;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
#search-container .search-wrapper .search-input-wrapper input::placeholder {
  color: #8C8F93;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
#search-container .search-wrapper .search-input-wrapper .typeahead-wrapper {
  padding: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  margin-top: 1px;
}
#search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle {
  height: 50px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.45px;
  line-height: 17px;
  border-radius: 2px 0 0 2px;
  background-color: #FFFFFF;
  border: 0;
  border-left: 1px solid #DEDFE1;
  padding-top: 10px;
  padding: 10px 16px 0px;
}
#search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle:focus {
  outline: 0;
}
#search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle label.floating-label {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.36px;
  line-height: 12px;
  position: absolute;
  top: 10px;
}
#search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle img.default {
  width: 12px;
  display: inline-block;
}
#search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle img.opened {
  width: 12px;
  display: none;
}
#search-container .search-wrapper .points-wrapper .dropdown.open button.dropdown-toggle {
  color: #000000;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
#search-container .search-wrapper .points-wrapper .dropdown.open button.dropdown-toggle img.default {
  width: 12px;
  display: none;
}
#search-container .search-wrapper .points-wrapper .dropdown.open button.dropdown-toggle img.opened {
  width: 12px;
  display: inline-block;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu {
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  margin: 1px 0px;
  width: 271px;
  right: 0;
  left: initial;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .divider {
  margin-top: 24px;
  background-color: #E7E8E9;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 15px 17px 15px;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper .splitter {
  height: 1px;
  width: 6.39px;
  border: 1px solid #979797;
  border-radius: 1.5px;
  background-color: #D8D8D8;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper .grm-form-group {
  margin: 0;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper .grm-form-group input {
  height: 40px;
  width: 107.02px;
  border: 0.5px solid #595959;
  border-radius: 2px;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper .grm-form-group.has-error input {
  border: 0.5px solid #D0023E;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .grm-checkbox label {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .grm-checkbox label::before {
  top: 0px;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-actions {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-actions .points-clear a {
  color: #6A6A6A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.45px;
  line-height: 17px;
  text-decoration: none;
  cursor: pointer;
}
#search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-actions .points-done a {
  color: #006618;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.45px;
  line-height: 17px;
  cursor: pointer;
}
#search-container .search-wrapper .search-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5px;
  padding-left: 20px;
}
#search-container .search-wrapper .search-btn-wrapper button:focus {
  outline: 0;
}
#search-container .search-wrapper .search-btn-wrapper .grm-search-btn-xs {
  height: 40px;
  width: 40px;
  border-radius: 3px;
  background-color: #000000;
}

@media (max-width: 575.98px) {
  #search-container {
    padding: 20px 1px;
  }
  #search-container .search-wrapper .search-input-wrapper input:focus {
    box-shadow: none;
  }
  #search-container .search-wrapper .points-wrapper {
    flex-shrink: 0;
  }
  #search-container .search-wrapper .points-wrapper .dropdown {
    position: relative;
  }
  #search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle {
    background-color: #FFFFFF;
    border-left: 1px solid #DEDFE1;
    padding: 10px 10px 0px;
  }
  #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu {
    width: 100%;
  }
  #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .show_me_checkbox-xs {
    padding: 20px 4px;
  }
  #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper {
    padding-top: 0px;
    padding-bottom: 6px;
  }
  #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper .grm-form-group input {
    width: 125px;
  }
  #search-container .search-wrapper .points-wrapper .dropdown.open button.dropdown-toggle {
    box-shadow: none;
  }
  #search-container .search-wrapper .search-btn-wrapper {
    padding-left: 0;
  }
  #search-container .search-wrapper .search-btn-wrapper .grm-search-btn-xs img {
    width: 20px;
  }
}
.user-is-tabbing #search-container .search-wrapper .category-wrapper .dropdown button.dropdown-toggle:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #search-container .search-wrapper .search-input-wrapper input:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #search-container .search-wrapper .points-wrapper .dropdown button.dropdown-toggle:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #search-container .search-wrapper .search-btn-wrapper button:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #search-container .search-wrapper .category-wrapper .dropdown ul.dropdown-menu li a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-actions .points-clear a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-actions .points-done a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing .grm-checkbox input[type="checkbox"]:focus + label {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing .grm-checkbox input[type="radio"]:focus + label {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing .filter-container .filter-collape-head a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing .filter-container .filter-collape-head .filter-clear:focus {
  outline: 2px dashed #595959 !important;
}

@media only screen and (min-width: 315px) and (max-width: 419px) {
  #search-container .search-wrapper .points-wrapper .dropdown div.dropdown-menu .points-range_wrapper {
    display: block;
  }
}
/* forms
8888888888
888
888
8888888  .d88b.  888d888 88888b.d88b.  .d8888b
888     d88""88b 888P"   888 "888 "88b 88K
888     888  888 888     888  888  888 "Y8888b.
888     Y88..88P 888     888  888  888      X88
888      "Y88P"  888     888  888  888  88888P'
*/
.endor-form {
  position: relative;
}
.endor-form ul {
  padding: 0;
  margin: 0;
}
.endor-form ul li {
  list-style-type: none;
  position: relative;
}
.endor-form ul.payment-type li {
  clear: both;
}
.endor-form input {
  height: auto;
  color: #000000;
  text-transform: none;
  margin: 0;
  background: transparent;
}
.endor-form input:focus {
  outline: 1px dotted #000000;
}
.endor-form input,
.endor-form textarea {
  border: 1px solid;
  padding: 10px 15px 9px;
  font-size: 12px;
  outline: none;
}
.endor-form textarea {
  height: 195px;
}
.endor-form input::-webkit-input-placeholder {
  color: #CCCCCC;
}
.endor-form input:-moz-placeholder {
  color: #CCCCCC;
}
.endor-form input::-moz-placeholder {
  color: #CCCCCC;
}
.endor-form input:-ms-input-placeholder {
  color: #CCCCCC;
}
.endor-form input[type='email'],
.endor-form input[type='password'],
.endor-form input[type='text'],
.endor-form textarea {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  width: 100%;
  margin-bottom: 29px;
  resize: none;
}
.endor-form input:active, .endor-form input:focus,
.endor-form select:active,
.endor-form select:focus,
.endor-form textarea:active,
.endor-form textarea:focus {
  border-color: #000000;
  border: 2px solid #000000;
}
.endor-form input[type="submit"].btn-jumbo {
  height: auto;
  width: auto;
  padding: 14px 12px;
}
.endor-form label {
  display: block;
}
.endor-form .textarea-container label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-size: 14px;
}
.endor-form input[type='checkbox'],
.endor-form input[type='radio'] {
  border: 0;
}
.endor-form input[type='checkbox'] + label,
.endor-form input[type='radio'] + label {
  display: inline-block;
  font-weight: 500;
  top: 0;
  position: absolute;
  text-indent: 10px;
}
.endor-form input[type='checkbox']:focus,
.endor-form input[type='radio']:focus {
  outline: 1px dotted #000000;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .endor-form input[type='radio'] {
    padding: 1px;
  }
  .endor-form input[type='radio']:checked {
    background: #333333;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .endor-form input[type='radio'] {
    padding: 1px;
  }
  .endor-form input[type='radio']:checked {
    background: #333333;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .endor-form input[type='radio'] {
    padding: 1px;
  }
  .endor-form input[type='radio']:checked {
    background: #333333;
  }
}
.endor-form .radio-title {
  margin-bottom: 15px;
}
.endor-form .radio-container ul {
  margin-bottom: 20px;
}
.endor-form .radio-container li {
  margin-bottom: 5px;
}
.endor-form .checkbox-container {
  margin-bottom: 30px;
}
.endor-form .checkbox-container,
.endor-form .radio-container li {
  position: relative;
}
.endor-form .btn-error,
.endor-form .error-msg {
  display: none;
}
.endor-form .btn-error {
  border: 0;
  background: #FFFFFF;
  background: transparent;
  z-index: 100;
}
.endor-form .btn-error:active, .endor-form .btn-error:focus {
  outline: none;
}
.endor-form .error-msg {
  color: #D0023E;
  position: absolute;
  opacity: 0;
  display: none;
  right: 15px;
  width: 100%;
  padding-left: 30px;
  z-index: 999;
}
.endor-form .error-msg span {
  margin-top: -29px;
  display: block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.endor-form .error-msg .caret {
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  bottom: -5px;
  right: 15px;
}
.endor-form .textarea-container .error-msg {
  bottom: 0px;
}
.endor-form .field-error input,
.endor-form .field-error textarea {
  border-color: #D0023E;
}
.endor-form .field-error .custom-select {
  border-color: #D0023E;
}
.endor-form .field-error .endor-down-arrow {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.endor-form .field-error .btn-error {
  display: block;
}
.endor-form .field-error .btn-error .endor-alert, .endor-form .field-error .btn-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .btn-error i,
.endor-form .field-error .btn-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .btn-error i {
  color: #D0023E;
}
.endor-form .select-container {
  min-height: 38px;
  margin-bottom: 27px;
}
.endor-form .row {
  position: relative;
  margin-top: 5px;
}
.endor-form .input-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 16px;
  font-size: 24px;
  text-align: center;
  bottom: 32px;
  bottom: 29px\9;
}
.endor-form .input-icon .spinner {
  display: block;
}
.endor-form .textarea-container .input-icon {
  bottom: 195px;
}
.endor-form .email-address.valid .input-icon i {
  color: #2A843C;
  display: block;
  content: '\e810';
}
.endor-form .pw-match-icon.pw-normal, .endor-form .pw-match-icon.pw-strong, .endor-form .pw-match-icon.pw-weak,
.endor-form .pw-strength-icon.pw-normal,
.endor-form .pw-strength-icon.pw-strong,
.endor-form .pw-strength-icon.pw-weak {
  display: block;
}
.endor-form .pw-match-icon.pw-normal i:before, .endor-form .pw-match-icon.pw-weak i:before,
.endor-form .pw-strength-icon.pw-normal i:before,
.endor-form .pw-strength-icon.pw-weak i:before {
  content: '\e819';
}
.endor-form .pw-match-icon.pw-strong i:before,
.endor-form .pw-strength-icon.pw-strong i:before {
  content: '\e810';
}
.endor-form .pw-match-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak i {
  color: #D0023E;
}
.endor-form .pw-match-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal i {
  color: #FFAB00;
}
.endor-form .pw-match-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong i {
  color: #006618;
}
.endor-form .error-msg.pw-weak span {
  background-color: #D0023E;
}
.endor-form .error-msg.pw-weak .caret {
  border-top: 5px solid #D0023E;
}
.endor-form .error-msg.pw-normal span {
  background-color: #FFAB00;
}
.endor-form .error-msg.pw-normal .caret {
  border-top: 5px solid #FFAB00;
}
.endor-form .error-msg.pw-strong span {
  background-color: #2A843C;
}
.endor-form .error-msg.pw-strong .caret {
  border-top: 5px solid #2A843C;
}
.endor-form .field-error .pw-match-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon i {
  display: block;
}
.endor-form .tooltip .tooltip-inner {
  border-radius: 0;
  -webkit-border-radius: 0;
}
.endor-form .tooltip.pw-weak .tooltip-inner {
  background-color: #FF0000;
}
.endor-form .tooltip.pw-weak .tooltip-arrow {
  border-left-color: #FF0000;
}
.endor-form .tooltip.pw-normal .tooltip-inner {
  background-color: #FFAB00;
}
.endor-form .tooltip.pw-normal .tooltip-arrow {
  border-left-color: #FFAB00;
}
.endor-form .tooltip.pw-strong .tooltip-inner {
  background-color: #2A843C;
}
.endor-form .tooltip.pw-strong .tooltip-arrow {
  border-left-color: #2A843C;
}
.endor-form .field-error .tooltip.pw-normal .tooltip-inner, .endor-form .field-error .tooltip.pw-weak .tooltip-inner {
  background-color: #FFFFFF;
}
.endor-form .field-error .tooltip.pw-normal .tooltip-arrow, .endor-form .field-error .tooltip.pw-weak .tooltip-arrow {
  border-left-color: #FFFFFF;
}
.endor-form .search-container {
  position: relative;
  width: 100%;
  margin-bottom: 39px;
}
.endor-form .search-container input {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 300;
}
.endor-form .search-container input[type="submit"] {
  text-indent: -9999px;
}
.endor-form .search-container .endor-mag,
.endor-form .search-container input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}
.endor-form .search-container .endor-mag {
  text-align: center;
  font-size: 30px;
  line-height: 58px;
}

.select-container {
  position: relative;
}
.select-container .btn-sort,
.select-container select {
  width: 100%;
  height: auto;
  color: #000000;
  text-transform: none;
  margin: 0;
  background: transparent;
  resize: none;
  font-size: 14px;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  margin-bottom: 29px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  outline: none;
}
.select-container .btn-sort,
.select-container .custom-select {
  border: 1px solid #000000;
  padding: 11px 12px 8px;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9999999;
}
.select-container .btn-error {
  right: 1px;
  bottom: 3px;
}
.select-container .endor-down-arrow {
  color: #000000;
  background: transparent;
  width: 36px;
  height: 36px;
  display: block;
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 22px;
  line-height: 38px;
  text-indent: 8px;
  cursor: pointer;
}
.select-container .endor-down-arrow:after {
  content: '\e833';
  color: #000000;
}
.select-container .endor-down-arrow:disabled {
  color: #CCCCCC;
}
.select-container .error-msg {
  padding-left: 0;
  right: auto;
  bottom: 40px;
}
.select-container .btn-sort {
  margin-bottom: 0;
}
.select-container .btn-sort .endor-down-arrow {
  text-indent: 4px;
}
.select-container .btn-sort span {
  float: left;
}
.select-container .btn-sort span > span {
  float: none;
  text-transform: none;
  font-size: 80%;
}
.select-container .sort-by {
  display: none;
  position: absolute;
  left: 0;
  top: 38px;
  border: 1px solid #D8D8D8;
  border-top: 0;
  padding: 10px 15px 0;
  margin: 0;
  width: 100%;
  z-index: 999;
  background-color: #FFFFFF;
}
.select-container .sort-by li {
  list-style-type: none;
  padding-bottom: 10px;
}
@media only screen and (max-width: 667px) {
  .select-container .sort-by li {
    padding-bottom: 15px;
  }
}
.select-container .sort-by li a {
  color: #000000;
}
@media only screen and (max-width: 667px) {
  .select-container .sort-by li a {
    font-size: 14px;
  }
}
.select-container .sort-by li a:active, .select-container .sort-by li a:hover, .select-container .sort-by li a:visited {
  text-decoration: underline;
}
.select-container .sort-by.open {
  display: block;
}
.select-container.tab-pane-sort {
  display: block;
  margin: 15px 0;
}
@media only screen and (min-width: 767px) {
  .select-container.tab-pane-sort {
    display: none;
  }
}

.btn-next-seg {
  display: none;
}
@media only screen and (min-width: 767px) {
  .btn-next-seg {
    display: block;
  }
}

.blocker,
.submit-blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  z-index: 999;
  display: block;
  background-color: #FFFFFF;
}

button.btn-jumbo {
  white-space: nowrap;
}

.bootstrap-datetimepicker-widget .btn {
  border: 0;
}

.placeSlider {
  position: absolute;
  top: 0;
  background: #FFFFFF;
  padding: 6px 15px 0;
  display: none;
  border: solid 1px #000000;
  border-bottom: none;
  font-size: 12px;
  color: #000000;
  font-weight: 600;
}
@media only screen and (max-width: 667px) {
  .placeSlider {
    display: none !important;
  }
}

#convert .endor-form {
  margin-top: 25px;
}
#convert input[type="text"] {
  width: 30%;
  margin-right: 15px;
}

#statement .endor-print {
  font-size: 25px;
}
#statement input.datepicker {
  width: 150px;
  border: 1px solid #595959;
  padding: 10px 15px 9px;
  font-size: 12px;
  outline: none;
}
#statement #account {
  font-weight: 600;
  padding-top: 20px;
  margin-bottom: 0;
}
#statement #acctNumber {
  font-size: 200%;
}
#statement .summary {
  border-bottom: solid 1px #D8D8D8;
  border-top: solid 1px #D8D8D8;
  padding-top: 10px;
}
#statement .summary h4 {
  font-size: 14px;
  margin-bottom: 0;
}
#statement .summary p {
  font-size: 40px;
  font-weight: 600;
  text-align: right;
}
#statement .summary p span {
  font-size: 10px;
  font-weight: 300;
}
#statement .details h4 {
  padding: 1em 0;
}
#statement .details table {
  width: 100%;
  background: #D8D8D8;
}
#statement .details table th {
  padding: 0.25em 1em;
}
#statement .details table td {
  padding: 0.5em 1em;
  background: #FFFFFF;
  border-bottom: solid 1px #D8D8D8;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.select-container {
  position: relative;
}
.select-container .btn-sort,
.select-container select {
  width: 100%;
  height: auto;
  color: #000000;
  text-transform: none;
  margin: 0;
  background: transparent;
  resize: none;
  font-size: 14px;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  margin-bottom: 29px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  outline: none;
}
.select-container .btn-sort,
.select-container .custom-select {
  border: 1px solid #000000;
  padding: 11px 12px 8px;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select-container .btn-sort:disabled, .select-container .btn-sort.customSelectDisabled,
.select-container .custom-select:disabled,
.select-container .custom-select.customSelectDisabled {
  cursor: not-allowed;
}
.select-container .btn-error {
  right: 1px;
  bottom: 3px;
}
.select-container .endor-down-arrow {
  color: #000000;
  background: transparent;
  width: 36px;
  height: 36px;
  display: block;
  position: absolute;
  right: 1px;
  top: 1px;
  font-size: 22px;
  line-height: 38px;
  text-indent: 8px;
  cursor: pointer;
}
.select-container .endor-down-arrow:after {
  content: '\e833';
  color: #000000;
}
.select-container .error-msg {
  padding-left: 0;
  right: auto;
  bottom: 40px;
}
.select-container .btn-sort {
  margin-bottom: 0;
}
.select-container .btn-sort .endor-down-arrow {
  text-indent: 4px;
}
.select-container .btn-sort span {
  float: left;
}
.select-container .btn-sort span > span {
  float: none;
  text-transform: none;
  font-size: 80%;
}
.select-container .sort-by {
  display: none;
  position: absolute;
  left: 0;
  top: 38px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  padding: 10px 15px 0;
  margin: 0;
  width: 100%;
  z-index: 999;
  background-color: #FFFFFF;
}
.select-container .sort-by li {
  list-style-type: none;
  padding-bottom: 10px;
}
@media only screen and (max-width: 667px) {
  .select-container .sort-by li {
    padding-bottom: 15px;
  }
}
.select-container .sort-by li a {
  color: #000000;
  display: block;
}
@media only screen and (max-width: 667px) {
  .select-container .sort-by li a {
    font-size: 14px;
  }
}
.select-container .sort-by li a:active, .select-container .sort-by li a:hover, .select-container .sort-by li a:visited {
  text-decoration: underline;
}
.select-container .sort-by.open {
  display: block;
}
.select-container.tab-pane-sort {
  display: block;
  margin: 15px 0;
}
@media only screen and (min-width: 767px) {
  .select-container.tab-pane-sort {
    display: none;
  }
}

.itemGrid .select-container .btn-sort .endor-down-arrow {
  text-indent: 0;
}

form label {
  /* font-size: 12px; */
}

.endor-form label {
  display: block;
  top: -2px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0px 1px 0px;
}

.tab-nav ul li a {
  border-bottom: none;
  border-right: none;
}

.tab-nav ul li.active {
  border-right: none;
}

textarea + div.error-msg {
  margin-bottom: 0px;
}

.endor-form .field-error input:focus, .endor-form .field-error textarea:focus {
  outline: none;
}

.grm-btn {
  display: inline-block;
  width: 130px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
}

a.grm-btn {
  line-height: 40px;
}
a.grm-btn:hover {
  color: #FFFFFF;
}

input[type="button"].grm-btn, input[type="reset"].grm-btn, input[type="submit"].grm-btn {
  padding: 0;
}

.grm-btn-primary {
  color: #FFFFFF;
  color: __buttonTextColor__;
  border: 1px solid #000000;
  border: 1px solid __buttonBorderColor__;
  border-radius: 8px;
  background-color: #000000;
  background-color: __buttonBackgroundColor__;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.grm-btn-primary.disabled, .grm-btn-primary:disabled {
  background-color: #ABABAB;
  border: 0;
  cursor: not-allowed;
}
.grm-btn-primary.disabled:hover, .grm-btn-primary:disabled:hover {
  background-color: #ABABAB;
}
.grm-btn-primary.disabled:active, .grm-btn-primary:disabled:active {
  background-color: #ABABAB;
}
.grm-btn-primary:hover {
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  background-color: #006618;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.grm-btn-primary:focus {
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  background-color: #006618;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.grm-btn-primary:active {
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  background-color: #00761C;
  box-shadow: 0 0 1px 2px rgba(37, 109, 230, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.grm-btn-secondary {
  color: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  background-color: #FFFFFF;
}
.grm-btn-secondary.disabled, .grm-btn-secondary:disabled {
  border: 0;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  color: #B0B0B0;
  cursor: not-allowed;
}
.grm-btn-secondary.disabled:hover, .grm-btn-secondary:disabled:hover {
  background-color: #FFFFFF;
}
.grm-btn-secondary.disabled:active, .grm-btn-secondary:disabled:active {
  background-color: #FFFFFF;
}
.grm-btn-secondary:hover {
  color: #000000;
  border: 0;
  border-radius: 8px;
  background-color: #006618;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.grm-btn-secondary:active {
  color: #000000;
  border: 0;
  border-radius: 8px;
  background-color: #00761C;
  box-shadow: 0 0 1px 2px rgba(37, 109, 230, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.grm-btn-md {
  height: 50px;
  width: 163px;
}

a.grm-btn-md {
  line-height: 50px;
}

.grm-btn-lg {
  height: 60px;
  width: 163px;
}

a.grm-btn-lg {
  line-height: 60px;
}

.grm-btn-block {
  width: 100%;
}

.grm-form {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  position: relative;
}
.grm-form .grm-btn {
  outline: 0 !important;
}
.grm-form .grm-form-group {
  position: relative;
  margin-bottom: 24px;
}
.grm-form .grm-form-group .error-msg-container {
  position: absolute;
}
.grm-form .grm-form-group .error-msg-container .error-msg {
  color: #D0023E;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 12px;
  opacity: 0;
}
.grm-form .grm-form-group .error-msg-container .error-msg img.grm-png-icon {
  width: 10px;
  margin-right: 3px;
}
.grm-form .grm-form-group.has-error input, .grm-form .grm-form-group.has-error textarea, .grm-form .grm-form-group.has-error select {
  border: 1px solid #D0023E;
}
.grm-form .grm-form-group.has-error .error-msg-container .error-msg {
  opacity: 1;
}
.grm-form .grm-form-group label {
  margin: 0;
}
.grm-form .grm-form-group input[type='email'], .grm-form .grm-form-group input[type='password'], .grm-form .grm-form-group input[type='text'], .grm-form .grm-form-group textarea {
  -webkit-appearance: none;
  width: 100%;
  margin-bottom: 0;
  resize: none;
}
.grm-form .grm-form-group input {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 12px 0 12px 16px;
  border: 1px solid #595959;
  border-radius: 2px;
  font-weight: 500;
  color: #000000;
}
.grm-form .grm-form-group input:focus {
  /* WCAG 4870 - SortSite CSS border issue addressed */
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}
.grm-form .grm-form-group textarea {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 12px 0 12px 16px;
  border: 1px solid #595959;
  border-radius: 2px;
  font-weight: 500;
  color: #000000;
  min-height: 250px;
}
.grm-form .grm-form-group textarea:focus {
  /* WCAG 4870 - SortSite CSS border issue addressed */
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}
.grm-form .grm-form-group.floating label {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  position: absolute;
  top: 12px;
  left: 16px;
  transition: all 200ms;
}
.grm-form .grm-form-group.floating input:invalid {
  box-shadow: none;
}
.grm-form .grm-form-group.floating input:focus {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating input:valid {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating input:disabled {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating input:read-only {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating input.readonly {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating input:focus + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating input:valid + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating input:disabled + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating input:read-only + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating input.readonly + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating textarea:invalid {
  box-shadow: none;
}
.grm-form .grm-form-group.floating textarea:focus {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating textarea:valid {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating textarea:disabled {
  padding: 18px 0px 6px 16px;
}
.grm-form .grm-form-group.floating textarea:focus + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating textarea:valid + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating textarea:disabled + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating .bootstrap-datetimepicker-widget + label {
  top: 0px;
  font-size: 10px;
  line-height: 12px;
  padding: 4px 0 2px 0;
}
.grm-form .grm-form-group.floating input + label {
  animation: repaint 1000s infinite linear;
}
.grm-form .grm-form-group.read-only input {
  border: 1px solid #E7E8E9;
  color: #979797;
  font-weight: 600;
}

@keyframes repaint {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.999;
  }
}
.user-is-tabbing .grm-form .grm-form-group input:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing .grm-form .grm-form-group textarea:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}

.grm-chips {
  padding: 0px 0px 16px 0px;
}

.grm-chip {
  border-radius: 14px;
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  padding: 8px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 12px;
  margin-right: 8px;
  margin-top: 8px;
}
.grm-chip.view-fpd-modal {
  cursor: pointer;
}
.grm-chip .user-text {
  text-transform: initial;
}
.grm-chip.editable {
  cursor: pointer;
}

.grm-chip--primary {
  background-color: #F2F4F6;
  color: #000000;
}

.grm-alert {
  position: relative;
  display: flex;
  flex-flow: row;
  background: #FFFFFF;
  color: #000000;
  margin: 10px 0px;
  padding-left: 8px;
  border-radius: 2px;
}
.grm-alert div.grm-alert-icon {
  padding: 8px 8px 8px 0px;
  display: none;
}
.grm-alert div.grm-alert-icon img {
  display: block !important;
  height: 16px;
}
.grm-alert .grm-alert-message {
  margin: 0;
  margin-right: 24px;
  padding: 10px;
}
.grm-alert .grm-alert-message .alert-greet {
  font-weight: 600;
}
.grm-alert .grm-alert-message a {
  color: #FFFFFF;
  text-decoration: underline;
}
.grm-alert a.grm-alert-icon.grm-alert-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 4px 8px;
  display: none;
}
.grm-alert a.grm-alert-icon.grm-alert-close img {
  height: 16px;
  width: 16px;
}

.grm-alert.grm-alert-dismissible a.grm-alert-icon.grm-alert-close {
  display: block;
}

.grm-alert.grm-alert-sucess {
  background-color: #006618;
  color: #FFFFFF;
}
.grm-alert.grm-alert-sucess div.grm-alert-icon {
  padding: 11px 8px 11px 0px;
  display: block;
}
.grm-alert.grm-alert-sucess div.grm-alert-icon img.sucess {
  display: block !important;
}
.grm-alert.grm-alert-sucess p.grm-alert-message {
  padding: 10px 0px;
}

.grm-alert.grm-alert-generic {
  background-color: #4A5465;
  color: #FFFFFF;
}
.grm-alert.grm-alert-generic div.grm-alert-icon {
  padding: 11px 8px 11px 0px;
  display: block;
}
.grm-alert.grm-alert-generic div.grm-alert-icon img.generic {
  display: block !important;
}
.grm-alert.grm-alert-generic p.grm-alert-message {
  padding: 10px 0px;
}

.grm-alert.grm-alert-info {
  background-color: #256DE6;
  color: #FFFFFF;
}
.grm-alert.grm-alert-info div.grm-alert-icon {
  padding: 11px 8px 11px 0px;
  display: block;
}
.grm-alert.grm-alert-info div.grm-alert-icon img.info {
  display: block !important;
}
.grm-alert.grm-alert-info p.grm-alert-message {
  padding: 10px 0px;
}

.grm-alert.grm-alert-warning {
  background-color: #C04E02;
  color: #FFFFFF;
}
.grm-alert.grm-alert-warning div.grm-alert-icon {
  padding: 11px 8px 11px 0px;
  display: block;
}
.grm-alert.grm-alert-warning div.grm-alert-icon img.warning {
  display: block !important;
}
.grm-alert.grm-alert-warning p.grm-alert-message {
  padding: 10px 0px;
}

.grm-alert.grm-alert-danger {
  background-color: #AC152F;
  color: #FFFFFF;
}
.grm-alert.grm-alert-danger div.grm-alert-icon {
  padding: 10px 8px 10px 0px;
  display: block;
}
.grm-alert.grm-alert-danger div.grm-alert-icon img.error {
  display: block !important;
}
.grm-alert.grm-alert-danger p.grm-alert-message {
  padding: 10px 0px;
}

.grm-checkbox input[type="checkbox"] {
  opacity: 0;
}

.grm-checkbox input[type="radio"] {
  opacity: 0;
}

.grm-checkbox label {
  position: relative;
  display: inline-block;
  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
  padding-left: 28px;
}

.grm-checkbox label::before,
.grm-checkbox label::after {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23FFFFFF'%3E%3Cpath%20d='M9%2016.2l-4.2-4.2-1.4%201.4%205.6%205.6%2012-12-1.4-1.4z'/%3E%3C/svg%3E");
  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.grm-checkbox label::before {
  height: 20px;
  width: 20px;
  border: 1px solid;
  left: 0px;
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  top: 3px;
}

/*Checkmark of the fake checkbox*/
.grm-checkbox label::after {
  height: 5px;
  width: 9px;
  border-left: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  left: 4px;
  top: 4px;
  color: #FFFFFF;
}

/*Hide the checkmark by default*/
.grm-checkbox input[type="checkbox"] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.grm-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #006618;
  border: 0;
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.grm-checkbox input[type="checkbox"]:focus + label::before {
  outline: none;
}

/*Hide the checkmark by default*/
.grm-checkbox input[type="radio"] + label::after {
  content: none;
}

/*Unhide on the checked state*/
/*.grm-checkbox input[type="radio"]:checked + label::after {
    content: "";  
}*/
.grm-checkbox input[type="radio"]:checked + label::before {
  background-color: #006618;
  border: 0;
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.grm-checkbox input[type="radio"]:focus + label::before {
  outline: none;
}

/*
 .d888 888                            888
d88P"  888                            888
888    888                            888
888888 888 888  888  .d88b.  888  888 888888
888    888 888  888 d88""88b 888  888 888
888    888 888  888 888  888 888  888 888
888    888 Y88b 888 Y88..88P Y88b 888 Y88b.
888    888  "Y88888  "Y88P"   "Y88888  "Y888
                888
           Y8b d88P
            "Y88P"
*/
.flyout {
  background: #F2F2F2;
  right: 0;
  padding: 0.9em;
  width: 330px;
  z-index: 101;
  font-size: 50%;
}

.flyout-toggle {
  display: inline-block;
}

/*
 .d8888b.        d8888 8888888b. 88888888888
d88P  Y88b      d88888 888   Y88b    888
888    888     d88P888 888    888    888
888           d88P 888 888   d88P    888
888          d88P  888 8888888P"     888
888    888  d88P   888 888 T88b      888
Y88b  d88P d8888888888 888  T88b     888
 "Y8888P" d88P     888 888   T88b    888

8888888888 888    Y88b   d88P  .d88888b.  888     888 88888888888
888        888     Y88b d88P  d88P" "Y88b 888     888     888
888        888      Y88o88P   888     888 888     888     888
8888888    888       Y888P    888     888 888     888     888
888        888        888     888     888 888     888     888
888        888        888     888     888 888     888     888
888        888        888     Y88b. .d88P Y88b. .d88P     888
888        88888888   888      "Y88888P"   "Y88888P"      888
*/
.cartFlyout {
  position: fixed;
  background: #FFFFFF;
  width: 450px;
  z-index: 1235;
  font-size: 18px;
  display: none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  padding: 0;
  margin: 0;
  z-index: 9999;
}
@media only screen and (max-width: 991px) {
  .cartFlyout {
    right: 30px;
    top: 0px;
  }
}
@media only screen and (max-width: 667px) {
  .cartFlyout {
    top: auto;
  }
}
.cartFlyout .cartItemTrash {
  cursor: pointer;
}
.cartFlyout .close-flycart {
  float: right;
  top: 12px;
  position: absolute;
  right: 20px;
  display: none;
}
@media (max-width: 767px) {
  .cartFlyout .close-flycart {
    display: block;
  }
}

@media (min-width: 768px) {
  .cartFlyout {
    z-index: 9999 !important;
    width: 450px !important;
  }

  .cartFlyout::after, .cartFlyout::before {
    bottom: 100%;
    right: 2%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .cartFlyout::before {
    border-color: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-width: 10px;
    margin-left: -11px;
  }

  .cartFlyout::after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #FFFFFF;
    border-width: 10px;
    margin-left: -10px;
  }
}
#cartFlyoutInner {
  display: flex;
  flex-direction: column;
}

.cartFlyout h2 {
  border-bottom: 1px solid #DEDFE1;
  border-radius: 3px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin: 16px 24px;
  padding: 0;
  padding-bottom: 1em;
}

.cartFlyout.noItem {
  right: 10px;
  top: -70px;
}
.cartFlyout.noItem h2 {
  display: none;
}
.cartFlyout.noItem .subtotal {
  display: none;
}

.stuckNav .cartFlyout.noItem {
  top: -38px;
}

.cartFlyout.noItem .btn-primary:hover {
  color: #FFFFFF;
  background: #333333;
}

.cartFlyout .cartItem {
  float: left;
  width: 100%;
  margin: 0 0 0.5em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 8px 0;
}

.cartFlyout .cartItem .itemImage {
  float: left;
  width: 80px;
  margin: 0 24px 0 0;
}

.cartFlyout .cartItem .itemImage img {
  width: 80px;
  height: 80px;
}

.cartFlyout .cartItem .itemDescription {
  font-size: 70%;
  float: left;
  width: 70%;
}

.cartFlyout .cartItem .itemDescription .itemPrice {
  text-align: right;
  font-weight: 600;
}

.cartFlyout .cartItem .deleteIcon .grm-icon.cancel-circle-icon {
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 767px) {
  .cartFlyout .cartItem .deleteIcon {
    width: 0%;
    text-align: right;
  }
}

.cartFlyout .subtotal {
  font-size: 80%;
  font-weight: 700;
  padding-bottom: 0.9em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cartFlyout .subtotal .amount {
  color: #006618;
}
.cartFlyout .subtotal .amount span:first-of-type {
  margin: 0 4px 0 0;
}

.cartFlyout h3 span {
  display: block;
  float: right;
  padding-right: 1.5em;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}

.cartFlyout .buttonArea {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 24px;
}
.cartFlyout .buttonArea .button-primary,
.cartFlyout .buttonArea .button-secondary {
  width: 100%;
}
.cartFlyout .buttonArea .view-cart-form {
  flex-grow: 2;
  margin: 0 12px 0 0;
}
.cartFlyout .buttonArea .cart-flyout-checkout {
  flex-grow: 2;
  margin: 0 0 0 12px;
}

.cartFlyout .cartempty {
  text-align: center;
  background-color: #F2F4F6;
  margin: 11px 12px;
  height: 211px;
  padding: 60px 106px;
}
.cartFlyout .cartempty img {
  height: 59px;
  width: 64px;
}
.cartFlyout .cartempty .round {
  box-sizing: border-box;
  height: 23px;
  width: 23px;
  border: 2px solid #FFFFFF;
  border-radius: 11.5px;
  background-color: #0B0B0B;
  position: relative;
  bottom: 3px;
  right: 20px;
  display: inline-block;
}
.cartFlyout .cartempty .round span {
  height: 17px;
  width: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  vertical-align: text-top;
}
.cartFlyout .cartempty p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  color: #000000;
}

.blackout {
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

#itemPrice {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: inherit;
  font-size: 12px;
  font-weight: bold;
}

.cart-flyout-wrapper-fixedOn {
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  right: 0;
}

.cart-flyout-wrapper .cartItem {
  margin: 0;
  padding: 16px 24px;
}
.cart-flyout-wrapper .cartItem .itemDescription .itemName a.itemLink {
  color: #000000;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
.cart-flyout-wrapper .cartItem .itemDescription .itemInfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 18px;
  color: #000000;
  font-family: Barlow;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}
.cart-flyout-wrapper .cartItem .itemDescription .product-option-group span {
  color: #58595A;
  font-family: Barlow;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
}
.cart-flyout-wrapper .cartItem .itemDescription .productId {
  color: #58595A;
  font-family: Barlow;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
}
.cart-flyout-wrapper .cartItem .grm-alert {
  display: none;
  width: 100%;
}
.cart-flyout-wrapper .cartItem .grm-alert .grm-alert-icon img {
  width: 16px;
  height: 16px;
}
.cart-flyout-wrapper .cartItem .grm-alert .grm-alert-message {
  font-size: 14px;
}
.cart-flyout-wrapper .cartItem.addedToCart {
  background-color: #EDF7EF;
}
.cart-flyout-wrapper .cartItem.addedToCart .grm-alert {
  display: flex;
}
.cart-flyout-wrapper .cartItem.subtotal {
  border-bottom: 1px solid #DEDFE1;
  border-radius: 3px;
  margin: 0px 24px;
  width: auto;
  padding: 16px 0px;
}

@media (max-width: 991.98px) {
  .cart-flyout-wrapper.fixedOn {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
  }
}
/*
         888                        888                        888
         888                        888                        888
         888                        888                        888
 .d8888b 88888b.   .d88b.   .d8888b 888  888  .d88b.  888  888 888888
d88P"    888 "88b d8P  Y8b d88P"    888 .88P d88""88b 888  888 888
888      888  888 88888888 888      888888K  888  888 888  888 888
Y88b.    888  888 Y8b.     Y88b.    888 "88b Y88..88P Y88b 888 Y88b.
 "Y8888P 888  888  "Y8888   "Y8888P 888  888  "Y88P"   "Y88888  "Y888
*/
.checkoutcart {
  display: inline !important;
  align-self: center;
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.15);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.15);
  padding: 10px 15px;
  border-radius: 2px;
  background-color: #FFFFFF;
}
.checkoutcart img {
  width: 18px;
}
.checkoutcart span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.52px;
  line-height: 19px;
}
@media only screen and (max-width: 667px) {
  .checkoutcart span {
    font-size: 14px;
  }
}

.checkout-page {
  background-color: #F6F7F8;
}

.checkout .order-summary {
  margin-top: 0px;
}
.checkout .order-summary .tinySummary {
  width: 100%;
  text-align: left;
  font-size: 85% !important;
}
.checkout .order-summary .tinySummary span {
  font-size: 100% !important;
  margin-bottom: 0;
}
.checkout .order-summary .tinySummary.col-md-7 {
  margin-bottom: 10px;
}
.checkout .nomargin {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.checkout .nopadding {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.checkout .checkout-tab-nav ul.nav {
  background-color: #FFFFFF;
  display: flex;
  height: inherit;
  justify-content: space-between;
}
.checkout .checkout-tab-nav ul.nav li {
  border-right: none;
  text-align: center;
  border-bottom: 5px solid #DEDFE1;
}
.checkout .checkout-tab-nav ul.nav li a {
  border-right: none;
  padding: 14px 0px;
  font-size: 10px;
  font-weight: 600;
  color: #58595A;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  border-bottom: 0px;
}
.checkout .checkout-tab-nav ul.nav li a:hover {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 667px) {
  .checkout .checkout-tab-nav ul.nav li a {
    display: none;
    padding: 0px;
  }
}
.checkout .checkout-tab-nav ul.nav li.active, .checkout .checkout-tab-nav ul.nav li.beforeactive {
  border-bottom: 5px solid #4A5465;
}
.checkout .checkout-tab-nav ul.nav li.active a, .checkout .checkout-tab-nav ul.nav li.beforeactive a {
  color: #000000;
}
.checkout .checkout-tab-nav ul.nav li:hover {
  border-bottom: 5px solid #4A5465;
}
.checkout .checkout-tab-nav ul.nav li:hover a {
  color: #000000;
}
.checkout .headermenu .checkout-tab-nav.tab-nav {
  display: unset !important;
}
.checkout .content {
  background-color: #F6F7F8;
}
.checkout .content .grm-btn-secondary, .checkout .content .grm-btn-primary {
  width: 100%;
}
.checkout .content .collapse-tab-content {
  margin-top: 0px;
}
.checkout .content .tophead {
  margin-top: 0;
}
.checkout .content .tophead h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 24px;
}
.checkout .content .tophead h6 {
  font-size: 12px;
  margin-bottom: 24px;
}
.checkout .content #btn-add-address {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.45px;
  margin-bottom: 16px;
}
.checkout .content .savedaddress ul {
  padding-left: 0;
}
.checkout .content .savedaddress ul li {
  margin-bottom: 8px;
  border: 1px solid #DEDFE1;
  background-color: #FFFFFF;
  border-radius: 2px;
}
.checkout .content .savedaddress ul li .addressfull {
  margin: 16px;
}
.checkout .content .savedaddress ul li .addressfull .title {
  border-bottom: 1px solid #DEDFE1;
  line-height: 17px;
  padding-bottom: 12px;
}
.checkout .content .savedaddress ul li .addressfull .title .grm-checkbox label {
  position: absolute;
  left: 0px;
  word-wrap: break-word;
}
.checkout .content .savedaddress ul li .addressfull .title .grm-checkbox label:after {
  top: 7px;
  width: 8px;
}
.checkout .content .savedaddress ul li .addressfull .title .grm-checkbox label:before {
  border-radius: 50%;
}
.checkout .content .savedaddress ul li .addressfull .title span {
  font-size: 14px;
  font-weight: normal;
}
.checkout .content .savedaddress ul li .addressfull .title label {
  font-weight: 600;
  padding-top: 2px;
  font-size: 14px;
  cursor: pointer;
}
.checkout .content .savedaddress ul li .addressfull .title .btn-edit {
  padding-right: 16px;
}
.checkout .content .savedaddress ul li .addressfull .title .btn-unstyled {
  font-size: 12px;
  color: #58595A;
}
.checkout .content .savedaddress ul li .addressfull .title .btn-unstyled img {
  width: 18px;
  padding-right: 3px;
}
.checkout .content .savedaddress ul li .addressfull .title .btn-unstyled span {
  position: relative;
  top: 2px;
  font-size: 12px;
}
.checkout .content .savedaddress ul li .addressfull .cusaddress {
  padding-top: 9px;
  font-size: 12px;
  line-height: 20px;
}
@media only screen and (max-width: 667px) {
  .checkout .content .savedaddress ul li .addressfull .cusaddress .contact {
    padding-top: 9px;
  }
}
.checkout .content .savedaddress ul li.active {
  border: 1px solid #006618;
}
.checkout .content #address-form {
  color: #000000;
}
.checkout .content #address-form h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  padding: 21px 0px 23px 0px;
}
.checkout .content #address-form .shipping-address-full {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 15px 20px 20px;
}
.checkout .content #address-form .shipping-address-full ul {
  padding-left: 0px;
}
.checkout .content #address-form .shipping-address-full .select-container .customSelect {
  color: #000000;
  border: 1px solid #666666;
  border-radius: 2px;
  padding: 16px 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
}
.checkout .content #address-form .shipping-address-full .select-container .customSelect .customSelectInner {
  position: relative;
  top: 2px;
  font-size: 12px;
}
.checkout .content #address-form .shipping-address-full .select-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 6px 0 2px 16px;
}
.checkout .content #address-form .subtitle {
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 11px;
  border-bottom: 1px solid #DEDFE1;
  margin-bottom: 15px;
}
.checkout .content #address-form .subtitle.edit {
  color: #AC152F;
}
.checkout .content #address-form .grm-checkbox label {
  line-height: 14px;
}
.checkout .content #address-form .grm-checkbox label:before {
  top: 0px;
  border-radius: 50%;
}
.checkout .content #address-form .grm-checkbox.checkbox label:before {
  border-radius: 0 !important;
}
.checkout .content #address-form .radioflex {
  display: inline-flex;
}
.checkout .content #address-form .radioflex li:first-child {
  margin-right: 15px;
}
.checkout .content #address-form .select-container img {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
.checkout .content #address-form .select-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #58595A;
  font-size: 8px;
  line-height: 10px;
  padding: 6px 0 0 14px;
}
.checkout .content #verify h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 20px;
}
@media only screen and (min-width: 940px) {
  .checkout .content #verify .address-verification .nopadding:first-child {
    padding-right: 7px !important;
  }
  .checkout .content #verify .address-verification .nopadding:nth-child(2) {
    padding-left: 7px !important;
  }
}
.checkout .content #verify .address-verification .infomsg {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 18px;
}
.checkout .content #verify .address-verification h3 {
  margin-top: 0px;
  margin-bottom: 5px;
}
.checkout .content #verify .address-verification h3 span {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #C04E02;
}
.checkout .content #verify .address-verification h3 button {
  width: unset;
}
.checkout .content #verify .address-verification h3 button span {
  color: #58595A;
  font-size: 12px;
  line-height: 14px;
}
.checkout .content #verify .address-verification h3 img {
  width: 18px;
}
.checkout .content #verify .address-verification .recommendedmain {
  margin-bottom: 20px;
}
.checkout .content #verify .address-verification .recommended h3 span {
  color: #006618;
}
.checkout .content #verify .address-verification .address {
  padding: 16px;
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
}
.checkout .content #verify .address-verification .address-summary div {
  font-size: 12px;
  line-height: 20px;
}
.checkout .content #verify .address-verification .address-summary .phone {
  padding-top: 8px;
}
.checkout .content #shipping-options .products li .product {
  box-sizing: border-box;
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 17px 0px 24px 0px;
  margin-bottom: 8px;
}
.checkout .content #shipping-options .products li .product img {
  max-width: 100%;
}
.checkout .content #shipping-options .products li .product .title {
  font-size: 16px;
  line-height: 24px;
}
.checkout .content #shipping-options .products li .product .productid {
  color: #58595A;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 4px;
}
.checkout .content #shipping-options .products li .product .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
.checkout .content #shipping-options .products li .product .product-item-product-id .bullet_seperator {
  padding: 0px 4px;
  display: inline-block;
}
.checkout .content #shipping-options .products li .product .product-item-product-id .productid, .checkout .content #shipping-options .products li .product .product-item-product-id .fpd-preview {
  display: inline-block;
}
.checkout .content #shipping-options .products li .product .price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin-top: 8px;
}
.checkout .content #shipping-options .products li .product .option {
  float: left;
  display: inline-block;
  padding: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 12px;
  text-align: center;
  margin: 4px 8px 4px 0px;
  border-radius: 14px;
  background-color: #F2F4F6;
  color: #000000;
  text-transform: uppercase;
}
.checkout .content #shipping-options .products li .product .option .user-text {
  text-transform: initial;
}
.checkout .content #shipping-options .products li .product .option.view-fpd-modal {
  cursor: pointer;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox {
  margin-top: 8px;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox label {
  position: absolute;
  left: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox label:after {
  top: 7px;
  width: 8px;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox label:before {
  border-radius: 50%;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox label .price {
  color: #58595A;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox.active .price {
  color: #006618;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox input[type='radio'] + label:before {
  border-radius: 50%;
  top: 0px;
}
.checkout .content #shipping-options .products li .product .shipmethod .grm-checkbox input[type='radio'] + label:after {
  top: 4px;
  width: 8px;
}
.checkout .content #shipping-options .products li .product .singleshipmethod .grm-checkbox {
  margin-top: 8px;
}
.checkout .content #shipping-options .products li .product .singleshipmethod .grm-checkbox label {
  position: absolute;
  left: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
}
.checkout .content #shipping-options .products li .product .singleshipmethod .grm-checkbox label:before {
  background-color: transparent;
}
.checkout .content #shipping-options .products li .product .singleshipmethod .grm-checkbox label:after {
  height: 7px;
  top: 3px;
  width: 13px;
  color: #58595A;
}
.checkout .content #shipping-options .products li .product .singleshipmethod .grm-checkbox label .price {
  color: #006618;
}
.checkout .content #shipping-options .products li .product .fpd_preview_modal .grm-modal__container {
  margin: 2px 15px 0 0px;
  position: absolute;
  right: 0px;
}
.checkout .content #shipping-options .products li .product .fpd_preview_modal .grm-modal__container .grm-modal__body {
  overflow-y: auto;
  text-align: center;
}
.checkout .content #shipping-options .products li .product .fpd_preview_modal .grm-modal__container .grm-modal__body .fpd_cust_img {
  width: 100%;
}
.checkout .summary {
  margin-top: 22px;
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px;
}
.checkout .summary.fixed-pos {
  position: fixed;
  width: 33.33%;
}
.checkout .summary .title {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
  padding: 2px 0px 14px 0px;
  border-bottom: 1px solid #E7E8E9;
}
.checkout .summary .subtitle {
  font-size: 16px;
  padding: 6px 0px 9px 0px;
  clear: both;
}
.checkout .summary .price {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
  text-align: right;
  padding: 5px 0px 9px 0px;
}
.checkout .summary .taxcontent {
  font-size: 10px;
  font-weight: 300;
  padding-bottom: 17px;
  clear: both;
}
.checkout .summary .grm-btn-primary {
  width: 100%;
  margin-bottom: 0px;
}
.checkout .summary .checkout-total {
  border-top: 1px solid #DEDFE1;
  padding-top: 8px;
}
.checkout .summary .checkout-total .subtitle {
  font-size: 18px;
  line-height: 22px;
}
.checkout .summary .checkout-total .order-summary-ordertotal {
  color: #006618;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: right;
}

.checkout-content {
  /*.shipping-options .products {
      li {
          margin-bottom: 40px;
      }
      .product {
          margin-bottom: 20px;
          .image-container {
              overflow: hidden;
              width: 25%;
              margin-right: 3%;
          }
          .shipMethodSelector {
              margin-top: 10px;
          }
      }
  }*/
}
.checkout-content .add-address,
.checkout-content .address,
.checkout-content .selected-address {
  min-height: 170px;
}
.checkout-content .address-container .hide {
  display: none;
}
.checkout-content .address-container li {
  margin-bottom: 20px;
}
.checkout-content .add-address {
  padding: 5px 0;
}
.checkout-content #selected-content .tooltip .tooltip-inner {
  background-color: #FFFFFF;
  color: #563974;
}
.checkout-content #selected-content .tooltip .tooltip-arrow {
  border-left-color: #FFFFFF;
}
.checkout-content .add-address {
  background: #000000;
}
.checkout-content .use-prompt {
  background-color: #999999;
  padding: 3px;
}
.checkout-content .address-head {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 300;
  padding-top: 49px;
}
.checkout-content .address-head a {
  color: #FFFFFF;
}
.checkout-content .address-head .endor-plus-big {
  font-size: 50px;
  color: #FFFFFF;
  margin-left: 22px;
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .checkout-content .address-head .endor-plus-big {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  .checkout-content .address-head .endor-plus-big {
    margin-left: 0px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .checkout-content .address-head .endor-plus-big {
    margin-left: 0;
  }
}
.checkout-content .address-container {
  padding: 0;
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}
.checkout-content .address-container li {
  width: 100%;
  position: relative;
  float: left;
  list-style-type: none;
  overflow: visible;
  padding: 0 15px;
}
@media only screen and (min-width: 480px) {
  .checkout-content .address-container li {
    width: 50%;
  }
}
.checkout-content .address-container li.full-width {
  width: 100%;
}
.checkout-content .addAddressButton {
  margin-left: 2%;
  margin-top: 18px;
}
@media only screen and (max-width: 667px) {
  .checkout-content .addAddressButton {
    margin-left: 7%;
    margin-top: 18px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .checkout-content .addAddressButton {
    margin-top: 0;
  }
}
@media only screen and (max-width: 320px) {
  .checkout-content .addAddressButton {
    margin-left: 12%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .checkout-content .addAddressButton {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1349px) {
  .checkout-content .addAddressButton {
    margin-left: 0;
  }
}
.checkout-content #saved-addresses.highlight .address,
.checkout-content .a.highlight .address {
  border-color: #999999;
  color: #999999;
}
.checkout-content #saved-addresses.highlight .address .btn-full,
.checkout-content .a.highlight .address .btn-full {
  color: #FFFFFF;
  background-color: #999999;
}
.checkout-content #saved-addresses .address:active, .checkout-content #saved-addresses .address:focus, .checkout-content #saved-addresses .address:hover,
.checkout-content .a .address:active,
.checkout-content .a .address:focus,
.checkout-content .a .address:hover {
  color: #999999;
  border-color: #999999;
}
.checkout-content #saved-addresses .address:active .btn-full, .checkout-content #saved-addresses .address:focus .btn-full, .checkout-content #saved-addresses .address:hover .btn-full,
.checkout-content .a .address:active .btn-full,
.checkout-content .a .address:focus .btn-full,
.checkout-content .a .address:hover .btn-full {
  outline: none;
  color: #FFFFFF;
  background-color: #333333;
}
.checkout-content #saved-addresses .address:active .btn-full:active, .checkout-content #saved-addresses .address:active .btn-full:focus, .checkout-content #saved-addresses .address:active .btn-full:hover, .checkout-content #saved-addresses .address:focus .btn-full:active, .checkout-content #saved-addresses .address:focus .btn-full:focus, .checkout-content #saved-addresses .address:focus .btn-full:hover, .checkout-content #saved-addresses .address:hover .btn-full:active, .checkout-content #saved-addresses .address:hover .btn-full:focus, .checkout-content #saved-addresses .address:hover .btn-full:hover,
.checkout-content .a .address:active .btn-full:active,
.checkout-content .a .address:active .btn-full:focus,
.checkout-content .a .address:active .btn-full:hover,
.checkout-content .a .address:focus .btn-full:active,
.checkout-content .a .address:focus .btn-full:focus,
.checkout-content .a .address:focus .btn-full:hover,
.checkout-content .a .address:hover .btn-full:active,
.checkout-content .a .address:hover .btn-full:focus,
.checkout-content .a .address:hover .btn-full:hover {
  background-color: #000000;
}

.checkout-content .address-verification .address .btn-edit-new {
  float: right;
  margin-top: 0;
  display: block;
}

.address-banner {
  padding-bottom: 29px;
}
.address-banner .address-head {
  background: #999999;
  width: 100%;
  height: 100%;
  font-size: 20px;
  padding: 10px 0;
  margin-bottom: 0;
  line-height: 21px;
}
@media only screen and (min-width: 767px) {
  .address-banner .address-head {
    font-size: 52px;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 767px) {
  .address-banner .address-head .endorIcon, .address-banner .address-head .profile-options li:before, .profile-options .address-banner .address-head li:before, .address-banner .address-head .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .address-banner .address-head i, .address-banner .address-head .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .address-banner .address-head i, .address-banner .address-head .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .address-banner .address-head i,
  .address-banner .address-head .endor-form .pw-strength-icon.pw-normal i,
  .endor-form .pw-strength-icon.pw-normal .address-banner .address-head i,
  .address-banner .address-head .endor-form .pw-strength-icon.pw-strong i,
  .endor-form .pw-strength-icon.pw-strong .address-banner .address-head i,
  .address-banner .address-head .endor-form .pw-strength-icon.pw-weak i,
  .endor-form .pw-strength-icon.pw-weak .address-banner .address-head i, .address-banner .address-head .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .address-banner .address-head i,
  .address-banner .address-head .endor-form .field-error .pw-strength-icon.input-icon i,
  .endor-form .field-error .pw-strength-icon.input-icon .address-banner .address-head i, .address-banner .address-head .mobile-nav .menu li a:after, .mobile-nav .menu li .address-banner .address-head a:after {
    font-size: 116px;
  }
}
.address-banner .address-head .endorIcon.endor-edit, .address-banner .address-head .profile-options li.endor-edit:before, .profile-options .address-banner .address-head li.endor-edit:before, .address-banner .address-head .endor-form .pw-match-icon.pw-normal i.endor-edit, .endor-form .pw-match-icon.pw-normal .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .pw-match-icon.pw-strong i.endor-edit, .endor-form .pw-match-icon.pw-strong .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .pw-match-icon.pw-weak i.endor-edit, .endor-form .pw-match-icon.pw-weak .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-normal i.endor-edit,
.endor-form .pw-strength-icon.pw-normal .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-strong i.endor-edit,
.endor-form .pw-strength-icon.pw-strong .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-weak i.endor-edit,
.endor-form .pw-strength-icon.pw-weak .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .field-error .pw-match-icon.input-icon i.endor-edit, .endor-form .field-error .pw-match-icon.input-icon .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .field-error .pw-strength-icon.input-icon i.endor-edit,
.endor-form .field-error .pw-strength-icon.input-icon .address-banner .address-head i.endor-edit, .address-banner .address-head .mobile-nav .menu li a.endor-edit:after, .mobile-nav .menu li .address-banner .address-head a.endor-edit:after {
  top: -10px;
  position: relative;
}
.address-banner .address-head .endor-edit,
.address-banner .address-head .endor-marker {
  font-size: 20px;
}
@media only screen and (min-width: 767px) {
  .address-banner .address-head .endor-edit,
  .address-banner .address-head .endor-marker {
    font-size: 56px;
    position: absolute;
    right: -5px;
    top: -6px;
  }
}
.address-banner .address-head .endorIcon.endor-edit, .address-banner .address-head .profile-options li.endor-edit:before, .profile-options .address-banner .address-head li.endor-edit:before, .address-banner .address-head .endor-form .pw-match-icon.pw-normal i.endor-edit, .endor-form .pw-match-icon.pw-normal .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .pw-match-icon.pw-strong i.endor-edit, .endor-form .pw-match-icon.pw-strong .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .pw-match-icon.pw-weak i.endor-edit, .endor-form .pw-match-icon.pw-weak .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-normal i.endor-edit,
.endor-form .pw-strength-icon.pw-normal .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-strong i.endor-edit,
.endor-form .pw-strength-icon.pw-strong .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .pw-strength-icon.pw-weak i.endor-edit,
.endor-form .pw-strength-icon.pw-weak .address-banner .address-head i.endor-edit, .address-banner .address-head .endor-form .field-error .pw-match-icon.input-icon i.endor-edit, .endor-form .field-error .pw-match-icon.input-icon .address-banner .address-head i.endor-edit,
.address-banner .address-head .endor-form .field-error .pw-strength-icon.input-icon i.endor-edit,
.endor-form .field-error .pw-strength-icon.input-icon .address-banner .address-head i.endor-edit, .address-banner .address-head .mobile-nav .menu li a.endor-edit:after, .mobile-nav .menu li .address-banner .address-head a.endor-edit:after {
  top: -1px;
}

.complete-order {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 767px) {
  .complete-order {
    margin-top: 0;
  }
}

#btn-first,
ul.first-row-grid-item {
  margin-bottom: 29px;
}
@media only screen and (min-width: 767px) {
  #btn-first,
  ul.first-row-grid-item {
    margin-bottom: 0;
  }
}

.cancel-address {
  display: inline-block;
  padding: 5px 0;
  text-decoration: underline;
}

#checkout-address-form {
  /* added CSS for this tooltip
  due to bootstrap plugin conflict - 3/30/17 */
}
#checkout-address-form .btn-jumbo#edit-cancel {
  margin-top: 20px;
}
#checkout-address-form .CEP,
#checkout-address-form .postalCode,
#checkout-address-form .referenceLink {
  color: #FFFFFF;
  font-weight: bold;
}
#checkout-address-form #reference {
  position: relative;
}
#checkout-address-form .tooltipWrapper {
  display: none;
  position: absolute;
  top: 25px;
  left: 40%;
  cursor: pointer;
  width: auto;
  background-color: #000000;
  /* arrow for whats this tooltip */
}
#checkout-address-form .tooltipWrapper a {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 12px;
  padding: 15px 10px;
  line-height: 21px;
}
#checkout-address-form .tooltipWrapper :before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px;
  border-color: transparent transparent;
  border-bottom-color: #000000;
}

#address-form .alert-info,
#checkout-address-form .alert-info {
  display: none;
  position: relative;
  z-index: 2;
  margin-right: -15px;
}

.addressFormLink,
.addressFormLink:hover {
  color: #FFFFFF;
}

.payment .bottom-margin {
  margin-bottom: 30px;
}
.payment .invalidCert {
  border: 1px solid #FF0000;
}
.payment .certAmount {
  color: #006618;
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  word-wrap: break-word;
}
.payment .certAmount .certAmountApplied {
  font-size: 22px;
}
.payment .certError span {
  color: #FF0000;
  font-size: 150%;
}

.jp-card.jp-card-identified {
  box-shadow: none !important;
}

.lt-ie9 .card-wrapper {
  display: none;
}

#addCert {
  background: #000000;
  outline: none;
}

.payment .radio-container {
  white-space: nowrap;
  width: auto;
}

.summary-title .endorIcon, .summary-title .profile-options li:before, .profile-options .summary-title li:before, .summary-title .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .summary-title i, .summary-title .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .summary-title i, .summary-title .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .summary-title i,
.summary-title .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .summary-title i,
.summary-title .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .summary-title i,
.summary-title .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .summary-title i, .summary-title .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .summary-title i,
.summary-title .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .summary-title i, .summary-title .mobile-nav .menu li a:after, .mobile-nav .menu li .summary-title a:after {
  margin-top: -0.5em;
  color: #333333;
}

#final-review .products .product {
  border-top: solid 1px #CCCCCC;
  padding-top: 20px;
}

#final-review .products .product:first-child {
  border-top: none;
  padding-top: 0;
}

.order-summary .details {
  position: relative;
}

.order-summary .details .shippingInfo span {
  display: block;
  word-wrap: break-word;
}

.checkout-address-form .first-row {
  margin-bottom: 29px;
}

/*.checkout .products .product span {
    text-transform: none;
    margin-bottom: 0;
    line-height: 20px;
    font-size: 14px;
}*/
.non-cert-payment h4 .endorIcon, .non-cert-payment h4 .profile-options li:before, .profile-options .non-cert-payment h4 li:before, .non-cert-payment h4 .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .non-cert-payment h4 i, .non-cert-payment h4 .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .non-cert-payment h4 i, .non-cert-payment h4 .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .non-cert-payment h4 i,
.non-cert-payment h4 .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .non-cert-payment h4 i,
.non-cert-payment h4 .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .non-cert-payment h4 i,
.non-cert-payment h4 .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .non-cert-payment h4 i, .non-cert-payment h4 .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .non-cert-payment h4 i,
.non-cert-payment h4 .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .non-cert-payment h4 i, .non-cert-payment h4 .mobile-nav .menu li a:after, .mobile-nav .menu li .non-cert-payment h4 a:after {
  color: #999999;
}

#processing-ue.blocker {
  width: 100%;
  background-color: #FFFFFF;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}

.shippingWindow .windowExists {
  margin-bottom: 20px;
}
.shippingWindow .windowExists input {
  position: relative;
  top: -1px;
}
.shippingWindow .windowExists span {
  display: inline-block;
  margin-top: 5px;
  font-weight: 600;
}
.shippingWindow .date-from {
  text-align: right;
}
.shippingWindow .date-separator {
  text-align: center;
  padding-top: 9px;
}

/*.checkout .products {
    margin: 0;
    padding: 0;
    .product {
        list-style-type: none;
        margin-bottom: 10px;
        p {
            margin-bottom: 0;
        }
        .mobile {
            @include breakpoint(minWidthTablet) {
                display: none;
            }
        }
        span,
        strong {
            text-transform: none;
            margin-bottom: 5px;
            line-height: 12px;
            font-size: 12px;
        }
        .select-container span {
            margin-bottom: 0;
            line-height: 17px;
            color: $color-black;
        }
    }
    .description,
    .image-container {
        width: 100%;
        overflow: hidden;
    }
    .image-container {
        border: 1px solid $color-pink-swan;
        position: relative;
        float: left;
        img {
            width: 100%;
            height: auto;
        }
    }
    .description {
        position: relative;
        float: left;
        padding-left: 0;
        width: 70%;
    }
    h5 {
        margin: 0 0 5px;
        font-size: 18px;
        font-weight: 300;
        padding-top: 0;
    }
    h3 {
        margin: 0 0 5px;
        font-size: 18px;
        font-weight: 300;
        padding-top: 0;
    }
    .promocode,
    .promocode span {
        color: $color-gray;
    }
}*/
.checkout .btn-edit {
  font-size: 30px;
}

.checkout #selected-address .address .endorIcon, .checkout #selected-address .address .profile-options li:before, .profile-options .checkout #selected-address .address li:before, .checkout #selected-address .address .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .checkout #selected-address .address i, .checkout #selected-address .address .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .checkout #selected-address .address i, .checkout #selected-address .address .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .checkout #selected-address .address i,
.checkout #selected-address .address .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .checkout #selected-address .address i,
.checkout #selected-address .address .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .checkout #selected-address .address i,
.checkout #selected-address .address .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .checkout #selected-address .address i, .checkout #selected-address .address .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .checkout #selected-address .address i,
.checkout #selected-address .address .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .checkout #selected-address .address i, .checkout #selected-address .address .mobile-nav .menu li a:after, .mobile-nav .menu li .checkout #selected-address .address a:after {
  color: #333333;
}

.checkout .address .btn-edit {
  font-size: 14px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .checkout .address .btn-edit {
    margin-top: 15px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 667px) {
  .checkout .address .btn-edit {
    margin-top: 15px;
    font-size: 20px;
  }
}

.mobileCheckoutBar.navbar {
  margin-bottom: 0;
}
.mobileCheckoutBar .shortSummary {
  float: left;
  width: 100%;
}
.mobileCheckoutBar .shortSummary h2 {
  margin-top: 20px;
  padding-left: 0.5em;
  font-size: 15px;
  float: left;
  width: 60%;
}
@media only screen and (max-width: 320px) {
  .mobileCheckoutBar .shortSummary h2 {
    font-size: 12px;
  }
}
.mobileCheckoutBar .shortSummary .detailButton {
  float: right;
  padding: 10px;
  width: 40%;
  text-align: right;
}
.mobileCheckoutBar .shortSummary .detailButton a.btn-default, .mobileCheckoutBar .shortSummary .detailButton #gdpr-notice .gdpr-notice-wrapper .gdpr-notice a.gdpr-decline-button, #gdpr-notice .gdpr-notice-wrapper .gdpr-notice .mobileCheckoutBar .shortSummary .detailButton a.gdpr-decline-button {
  margin-right: 10px;
  color: __cartFlyoutButtonTextColor__;
  background: __cartFlyoutButtonBackgroundColor__;
  border-color: __cartFlyoutButtonBorderColor__;
}
.mobileCheckoutBar .shortSummary .detailButton .closed,
.mobileCheckoutBar .shortSummary .detailButton .opened {
  display: none;
}
.mobileCheckoutBar .mobileSummary {
  clear: both;
  display: none;
}
.mobileCheckoutBar .mobileSummary .summary-title {
  display: none;
  text-indent: none;
}
.mobileCheckoutBar .mobileSummary .order-summary {
  margin: 0;
}
.mobileCheckoutBar .mobileSummary .order-summary .details {
  border: none;
}
.mobileCheckoutBar .mobileSummary .order-summary .description span,
.mobileCheckoutBar .mobileSummary .order-summary .details span {
  margin-bottom: 0;
}

input.btn-checkout, button.btn-checkout {
  margin-bottom: 20px;
}

.loginLink,
.registerLink {
  margin-bottom: 20px;
}
.loginLink a,
.registerLink a {
  text-decoration: underline;
  font-weight: bold;
}

.jp-card.jp-card-safari.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-safari.jp-card-identified .jp-card-front:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}

.jp-card.jp-card-ie-10.jp-card-flipped,
.jp-card.jp-card-ie-11.jp-card-flipped {
  -webkit-transform: 0;
  -moz-transform: 0;
  -ms-transform: 0;
  -o-transform: 0;
  transform: 0;
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-front,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-front {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back:after,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back:after {
  left: 18%;
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-cvc,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-cvc {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  left: 5%;
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny {
  left: 84%;
}

.jp-card.jp-card-ie-10.jp-card-flipped .jp-card-back .jp-card-shiny:after,
.jp-card.jp-card-ie-11.jp-card-flipped .jp-card-back .jp-card-shiny:after {
  left: -480%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.jp-card.jp-card-ie-10.jp-card-amex .jp-card-back,
.jp-card.jp-card-ie-11.jp-card-amex .jp-card-back {
  display: none;
}

.jp-card-logo {
  height: 36px;
  width: 60px;
  font-style: italic;
}

.jp-card-logo,
.jp-card-logo:after,
.jp-card-logo:before {
  box-sizing: border-box;
}

.jp-card-logo.jp-card-amex {
  text-transform: uppercase;
  font-size: 4px;
  font-weight: bold;
  color: #FFFFFF;
  background-image: repeating-radial-gradient(circle at center, #FFFFFF 1px, #999999 2px);
  background-image: repeating-radial-gradient(circle at center, #FFFFFF 1px, #999999 2px);
  border: 1px solid #EEEEEE;
}

.jp-card-logo.jp-card-amex:after,
.jp-card-logo.jp-card-amex:before {
  width: 28px;
  display: block;
  position: absolute;
  left: 16px;
}

.jp-card-logo.jp-card-amex:before {
  height: 28px;
  content: "american";
  top: 3px;
  text-align: left;
  padding-left: 2px;
  padding-top: 11px;
  background: #267AC3;
}

.jp-card-logo.jp-card-amex:after {
  content: "express";
  bottom: 11px;
  text-align: right;
  padding-right: 2px;
}

.jp-card.jp-card-amex.jp-card-flipped {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.jp-card.jp-card-amex.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-amex.jp-card-identified .jp-card-front:before {
  background-color: #108168;
}

.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-logo.jp-card-amex {
  opacity: 1;
}

.jp-card.jp-card-amex.jp-card-identified .jp-card-front .jp-card-cvc {
  visibility: visible;
}

.jp-card.jp-card-amex.jp-card-identified .jp-card-front:after {
  opacity: 1;
}

.jp-card-logo.jp-card-discover {
  background: #FF6600;
  color: #000000;
  text-transform: uppercase;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 9px;
  letter-spacing: 0.03em;
  border: 1px solid #EEEEEE;
}

.jp-card-logo.jp-card-discover:after,
.jp-card-logo.jp-card-discover:before {
  content: " ";
  display: block;
  position: absolute;
}

.jp-card-logo.jp-card-discover:before {
  background: #FFFFFF;
  width: 200px;
  height: 200px;
  border-radius: 200px;
  bottom: -5%;
  right: -80%;
  z-index: -1;
}

.jp-card-logo.jp-card-discover:after {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  top: 10px;
  left: 27px;
  background-color: #FFFFFF;
  background-image: -webkit-radial-gradient(#FFFFFF, #FF6600);
  background-image: radial-gradient(#ffffff, #ff6600);
  content: "network";
  font-size: 4px;
  line-height: 24px;
  text-indent: -7px;
}

.jp-card .jp-card-front .jp-card-logo.jp-card-discover {
  right: 12%;
  top: 18%;
}

.jp-card.jp-card-discover.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-discover.jp-card-identified .jp-card-front:before {
  background-color: #86B8CF;
}

.jp-card.jp-card-discover.jp-card-identified .jp-card-logo.jp-card-discover {
  opacity: 1;
}

.jp-card.jp-card-discover.jp-card-identified .jp-card-front:after {
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  transition: 400ms;
  content: " ";
  display: block;
  background-color: #FF6600;
  background-image: -webkit-linear-gradient(#FF6600, #FFA166, #FF6600);
  background-image: linear-gradient(#FF6600, #FFA166, #FF6600);
  height: 50px;
  width: 50px;
  border-radius: 25px;
  position: absolute;
  left: 100%;
  top: 15%;
  margin-left: -25px;
  box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
}

.jp-card-logo.jp-card-visa {
  background: none;
  text-transform: uppercase;
  font-family: Open Sans;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 22px;
}

.jp-card-logo.jp-card-visa:after,
.jp-card-logo.jp-card-visa:before {
  content: " ";
  display: block;
  width: 100%;
  height: 25%;
}

.jp-card-logo.jp-card-visa:before {
  background: none;
}

.jp-card-logo.jp-card-visa:after {
  background: none;
}

.jp-card.jp-card-visa.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-visa.jp-card-identified .jp-card-front:before {
  background-color: #FD992F;
}

.jp-card.jp-card-visa.jp-card-identified .jp-card-logo.jp-card-visa {
  opacity: 1;
}

.jp-card-logo.jp-card-mastercard {
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  font-size: 9px;
  line-height: 36px;
  z-index: 1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
}

.jp-card-logo.jp-card-mastercard:after,
.jp-card-logo.jp-card-mastercard:before {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
}

.jp-card-logo.jp-card-mastercard:before {
  left: 0;
  background: #FF0000;
  z-index: -1;
}

.jp-card-logo.jp-card-mastercard:after {
  right: 0;
  background: #FFAB00;
  z-index: -2;
}

.jp-card.jp-card-mastercard.jp-card-identified .jp-card-back .jp-card-logo.jp-card-mastercard,
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front .jp-card-logo.jp-card-mastercard {
  box-shadow: none;
}

.jp-card.jp-card-mastercard.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-mastercard.jp-card-identified .jp-card-front:before {
  background-color: #0061A8;
}

.jp-card.jp-card-mastercard.jp-card-identified .jp-card-logo.jp-card-mastercard {
  opacity: 1;
}

.jp-card-logo.jp-card-maestro {
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  line-height: 36px;
  z-index: 1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.6);
}

.jp-card-logo.jp-card-maestro:after,
.jp-card-logo.jp-card-maestro:before {
  content: " ";
  display: block;
  width: 36px;
  top: 0;
  position: absolute;
  height: 36px;
  border-radius: 18px;
}

.jp-card-logo.jp-card-maestro:before {
  left: 0;
  background: #0064CB;
  z-index: -1;
}

.jp-card-logo.jp-card-maestro:after {
  right: 0;
  background: #CC0000;
  z-index: -2;
}

.jp-card.jp-card-maestro.jp-card-identified .jp-card-back .jp-card-logo.jp-card-maestro,
.jp-card.jp-card-maestro.jp-card-identified .jp-card-front .jp-card-logo.jp-card-maestro {
  box-shadow: none;
}

.jp-card.jp-card-maestro.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-maestro.jp-card-identified .jp-card-front:before {
  background-color: #0B2C5F;
}

.jp-card.jp-card-maestro.jp-card-identified .jp-card-logo.jp-card-maestro {
  opacity: 1;
}

.jp-card-logo.jp-card-dankort {
  width: 60px;
  height: 36px;
  padding: 3px;
  border-radius: 8px;
  border: #000000 1px solid;
  background-color: #FFFFFF;
}

.jp-card-logo.jp-card-dankort .dk {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.jp-card-logo.jp-card-dankort .dk:before {
  background-color: #ED1C24;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}

.jp-card-logo.jp-card-dankort .dk:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7.7px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 10px 0;
  border-color: transparent #ED1C24 transparent transparent;
  z-index: 1;
}

.jp-card-logo.jp-card-dankort .d,
.jp-card-logo.jp-card-dankort .k {
  position: absolute;
  top: 50%;
  width: 50%;
  display: block;
  height: 15.4px;
  margin-top: -7.7px;
  background: #FFFFFF;
}

.jp-card-logo.jp-card-dankort .d {
  left: 0;
  border-radius: 0 8px 10px 0;
}

.jp-card-logo.jp-card-dankort .d:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #ED1C24;
  border-radius: 2px 4px 6px 0;
  height: 5px;
  width: 7px;
  margin: -3px 0 0 -4px;
}

.jp-card-logo.jp-card-dankort .k {
  right: 0;
}

.jp-card-logo.jp-card-dankort .k:after,
.jp-card-logo.jp-card-dankort .k:before {
  content: '';
  position: absolute;
  right: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: -1px;
}

.jp-card-logo.jp-card-dankort .k:before {
  top: 0;
  border-width: 8px 5px 0 0;
  border-color: #ED1C24 transparent transparent transparent;
}

.jp-card-logo.jp-card-dankort .k:after {
  bottom: 0;
  border-width: 0 5px 8px 0;
  border-color: transparent transparent #ED1C24 transparent;
}

.jp-card.jp-card-dankort.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-dankort.jp-card-identified .jp-card-front:before {
  background-color: #0055C7;
}

.jp-card.jp-card-dankort.jp-card-identified .jp-card-logo.jp-card-dankort {
  opacity: 1;
}

.jp-card-container {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  width: 350px;
  max-width: 100%;
  height: 200px;
  margin: auto;
  z-index: 1;
  position: relative;
}

@media only screen and (min-width: 1202px) {
  .jp-card-container {
    height: 220px;
  }
}
@media only screen and (min-width: 1350px) {
  .jp-card-container {
    height: 250px;
  }
}
.jp-card {
  font-family: "Helvetica Neue";
  line-height: 1;
  position: relative;
  width: 100%;
  height: 85%;
  min-width: 260px;
  border-radius: 10px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  transition: all 400ms linear;
}

.jp-card > *,
.jp-card > *:after,
.jp-card > *:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
}

.jp-card.jp-card-flipped {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.jp-card .jp-card-back,
.jp-card .jp-card-front {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  transition: all 400ms linear;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #E6E6E6;
}

.jp-card .jp-card-back:before,
.jp-card .jp-card-front:before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  transition: all 400ms ease;
}

.jp-card .jp-card-back:after,
.jp-card .jp-card-front:after {
  content: " ";
  display: block;
}

.jp-card .jp-card-back .jp-card-display,
.jp-card .jp-card-front .jp-card-display {
  color: #404040;
  font-weight: normal;
  text-shadow: 0 0 1px #000000;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  transition: opacity 400ms linear;
}

.jp-card .jp-card-back .jp-card-display.jp-card-focused,
.jp-card .jp-card-front .jp-card-display.jp-card-focused {
  opacity: 1;
  font-weight: 700;
}

.jp-card .jp-card-back .jp-card-cvc,
.jp-card .jp-card-front .jp-card-cvc {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 14px;
}

.jp-card .jp-card-back .jp-card-shiny,
.jp-card .jp-card-front .jp-card-shiny {
  width: 50px;
  height: 35px;
  border-radius: 5px;
  background: #CCCCCC;
  position: relative;
}

.jp-card .jp-card-back .jp-card-shiny:before,
.jp-card .jp-card-front .jp-card-shiny:before {
  content: " ";
  display: block;
  width: 70%;
  height: 60%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #D9D9D9;
  position: absolute;
  top: 20%;
}

.jp-card .jp-card-front .jp-card-logo {
  position: absolute;
  opacity: 0;
  right: 5%;
  top: 8%;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  transition: 400ms;
}

.jp-card .jp-card-front .jp-card-lower {
  width: 80%;
  position: absolute;
  left: 10%;
  bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .jp-card .jp-card-front .jp-card-lower {
    width: 90%;
    left: 5%;
  }
}
.jp-card .jp-card-front .jp-card-lower .jp-card-cvc {
  visibility: hidden;
  float: right;
  position: relative;
  bottom: 5px;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-number {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 18px;
  clear: both;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1350px) {
  .jp-card .jp-card-front .jp-card-lower .jp-card-number {
    font-size: 22px;
  }
}
.jp-card .jp-card-front .jp-card-lower .jp-card-expiry {
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  letter-spacing: 0;
  position: relative;
  float: right;
  width: 25%;
  font-size: 13px;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:after,
.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:before {
  font-family: "Helvetica Neue";
  font-weight: bold;
  font-size: 7px;
  white-space: pre;
  display: block;
  opacity: 0.5;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:before {
  content: attr(data-before);
  margin-bottom: 2px;
  font-size: 7px;
  text-transform: uppercase;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-expiry:after {
  position: absolute;
  content: attr(data-after);
  text-align: right;
  right: 100%;
  margin-right: 5px;
  margin-top: 2px;
  bottom: 0;
}

.jp-card .jp-card-front .jp-card-lower .jp-card-name {
  text-transform: uppercase;
  font-family: "Bitstream Vera Sans Mono", Consolas, Courier, monospace;
  font-size: 15px;
  max-height: 45px;
  position: absolute;
  bottom: 0;
  width: 190px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: horizontal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jp-card .jp-card-back {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.jp-card .jp-card-back .jp-card-bar {
  background-color: #444444;
  background-image: -webkit-linear-gradient(#444444, #333333);
  background-image: linear-gradient(#444444, #333333);
  width: 100%;
  height: 20%;
  position: absolute;
  top: 10%;
}

.jp-card .jp-card-back:after {
  content: " ";
  display: block;
  background-color: #FFFFFF;
  background-image: -webkit-linear-gradient(#FFFFFF, #FFFFFF);
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  width: 80%;
  height: 16%;
  position: absolute;
  top: 40%;
  left: 2%;
}

.jp-card .jp-card-back .jp-card-cvc {
  position: absolute;
  top: 40%;
  left: 85%;
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  transition-delay: 600ms;
}

.jp-card .jp-card-back .jp-card-shiny {
  position: absolute;
  top: 66%;
  left: 2%;
}

.jp-card .jp-card-back .jp-card-shiny:after {
  content: "This card is licensed for anyone to use anywhere for free.\\AIt comes with no warranty.\\A For support issues, please visit: www.bank.com.";
  position: absolute;
  left: 120%;
  top: 5%;
  color: #FFFFFF;
  font-size: 7px;
  width: 230px;
  opacity: 0.5;
}

.jp-card.jp-card-identified {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.jp-card.jp-card-identified .jp-card-back,
.jp-card.jp-card-identified .jp-card-front {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}

.jp-card.jp-card-identified .jp-card-back:before,
.jp-card.jp-card-identified .jp-card-front:before {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  transition: all 400ms ease;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  opacity: 1;
}

.jp-card.jp-card-identified .jp-card-back .jp-card-logo,
.jp-card.jp-card-identified .jp-card-front .jp-card-logo {
  box-shadow: none;
}

.jp-card.jp-card-identified.no-radial-gradient .jp-card-back:before,
.jp-card.jp-card-identified.no-radial-gradient .jp-card-front:before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), -webkit-linear-gradient(-245deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.03) 4px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), repeating-linear-gradient(210deg, rgba(255, 255, 255, 0) 1px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.05) 4px), linear-gradient(-25deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 90%);
}

.lt-ie9 #payment-form .card-info {
  width: 100%;
}
.lt-ie9 #payment-form .card-wrapper {
  display: none;
}
.lt-ie9 #payment-form .cardTypeDropdown {
  display: block !important;
}

@media only screen and (max-width: 1199px) {
  .jp-card {
    min-width: 200px;
    height: 86%;
    font-size: 50%;
  }

  .jp-card .jp-card-front .jp-card-lower .jp-card-name {
    font-size: 15px;
  }

  .jp-card .jp-card-front .jp-card-lower .jp-card-number {
    font-size: 15px;
  }
}
#registrationForm {
  min-height: 70vh;
}
@media only screen and (max-width: 667px) {
  #registrationForm {
    min-height: 150vh;
    padding-left: 1px;
  }
}

button.btn-unstyled.btn-edit-new.pane-toggle.btn-next-seg:focus {
  outline: 2px dotted #757575 !important;
}

button.btn-full.btn-verified-entered-address:focus {
  outline: 2px dotted #757575;
}

button.btn-unstyled.btn-trash:focus, button.btn-unstyled.btn-edit:focus {
  outline: 2px dotted #757575;
}

.btn-unstyled {
  padding: 0;
  margin: 0;
  background: transparent;
  height: auto;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 0;
}

.btn-full {
  color: #FFFFFF;
  padding: 0 8px;
  margin: 0;
  background: #737373;
  font-size: 12px;
  height: auto;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 0;
  width: 100%;
  text-align: center;
  font-weight: 300;
  height: 30px;
  line-height: 30px;
}

.inputzip_success_note {
  border: 1.3px solid #00761C !important;
  background-color: #E5F3E8;
}

.img-success-mark {
  position: relative;
  top: -20px;
  left: 5px;
  float: right;
}

.disable-checkout-tab {
  pointer-events: none;
}

.order-summary {
  margin: 30px 0;
}
.order-summary .summary-title {
  font-size: 18px;
  padding: 10px 15px;
  background-color: #595959;
  margin-left: 0;
  margin-right: 0;
  color: #FFFFFF;
}
.order-summary .summary-title strong span, .order-summary .summary-title strong.col-md-2 {
  color: #FFFFFF;
}
.order-summary .details {
  border: 1px solid #595959;
  border-top: 0;
  padding: 15px 15px 25px;
}
.order-summary .details .col-sm-offset-7 {
  float: right;
  margin-right: 3%;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .order-summary .details .col-sm-offset-7 {
    margin-right: 0;
  }
}
.order-summary .description span,
.order-summary .details span {
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
  color: #000000;
}
.order-summary .description span[role="heading"],
.order-summary .details span[role="heading"] {
  font-size: 16px;
}
.order-summary .description .time,
.order-summary .details .time {
  display: inline-block;
  float: right;
}
.order-summary .orderDate {
  float: right;
}
.order-summary .supportButtonContainer {
  width: 33.33333333%;
  overflow: hidden;
  word-break: break-word;
  float: right;
  margin-top: 30px;
}
.order-summary .support-text {
  text-align: center;
  padding-right: 0;
}

.my-account .order-summary {
  margin: 0;
}
.my-account .order-summary .summary-title,
.my-account .order-summary .summary-title span {
  font-size: 16px;
}
.my-account .order-summary .summary-title {
  padding-left: 3px;
  color: #FFFFFF;
}
.my-account .order-summary .summary-title span {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media only screen and (min-width: 767px) {
  .my-account .order-summary .support {
    margin-right: -15px;
  }
}
.my-account .order-summary .support.approvalsReject {
  margin-top: 20px;
  margin-right: 0;
}
.my-account .order-summary .support.approvalsReject .btn {
  margin-right: 0;
  width: 100%;
}
.my-account .order-summary .support.approvalsApprove {
  margin-top: 20px;
}
.my-account .order-summary .support.approvalsApprove .btn {
  margin-right: 0;
  width: 100%;
}
.my-account .order-summary .support .call-out {
  text-align: right;
  text-decoration: underline;
  display: block;
  margin-bottom: 10px;
}
.my-account .order-summary .support .btn {
  margin-right: 30px;
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .my-account .order-summary .support .btn {
    margin: 0 0 0 30px;
  }
}
.my-account .order-summary .details {
  padding-bottom: 15px;
}
.my-account .order-summary .big {
  font-size: 18px;
}
.my-account .order-summary .align-right {
  text-align: left;
  margin-left: 66%;
}
@media only screen and (max-width: 667px) {
  .my-account .order-summary .align-right {
    margin-left: 0;
  }
}
.my-account .order-summary .total {
  margin-bottom: 30px;
}

.order-summary .products {
  margin: 0;
  padding: 0;
}
.order-summary .products .product {
  list-style-type: none;
  margin-bottom: 20px;
  border-top: solid 1px #e6e6e6;
}
.order-summary .products .product p {
  margin-bottom: 0;
}
@media only screen and (min-width: 767px) {
  .order-summary .products .product .mobile {
    display: none;
  }
}
.order-summary .products .product span.valueColumn,
.order-summary .products .product strong {
  text-transform: none;
  margin-bottom: 5px;
  line-height: 12px;
  font-size: 14px;
}
.order-summary .products .description,
.order-summary .products .image-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1em;
}
.order-summary .products .description {
  overflow: visible;
}
.order-summary .products .image-container {
  border: 1px solid #000000;
  position: relative;
  float: left;
}
@media only screen and (min-width: 767px) {
  .order-summary .products .image-container {
    width: 33.33333%;
  }
}
.order-summary .products .image-container img {
  width: 100%;
  height: auto;
}
.order-summary .products .description {
  position: relative;
  float: right;
  padding: 15px 0 0;
}
.order-summary .products .description .select-container {
  margin-top: 20px;
}
@media only screen and (min-width: 767px) {
  .order-summary .products .description {
    padding: 0 0 0 15px;
    width: 66.6666%;
  }
}
.order-summary .products h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
.order-summary .products .promocode,
.order-summary .products .promocode span {
  color: #808080;
}

.checkout .products .product:first-child,
.order-summary .products .product:first-child {
  border-top: none;
}

.order-summary .btn.col-sm-offset-6 {
  margin-left: 35%;
}
@media only screen and (max-width: 667px) {
  .order-summary .btn.col-sm-offset-6 {
    margin-left: 0;
  }
}

.password-rules {
  margin-bottom: 40px;
  display: none;
  color: #000000;
}

.support-text {
  text-align: right;
  font-weight: 300;
  padding-right: 11%;
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .support-text {
    padding: 0;
    text-align: left;
  }
}

#frmContactUsOrd #orderDetailsTable .itemUpdated.itemList {
  float: left;
  width: 100%;
  padding: 10px 0;
  border-bottom: solid 1px #e6e6e6;
  margin-bottom: 20px;
}

.orderhistory {
  background-color: #F6F7F8;
  padding: 20px 0px 40px 0px;
}
.orderhistory .nomargin {
  margin-left: 0;
  margin-right: 0;
}
.orderhistory .row {
  padding-top: 10px;
}
.orderhistory .noleftpad {
  padding-left: 0px;
}
.orderhistory .ordertitle {
  opacity: 0.9;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.38px;
  line-height: 24px;
  margin-bottom: 16px;
  padding: 0;
}
.orderhistory .orderaddress, .orderhistory .summary {
  border: 1px solid #E7E8E9;
  border-radius: 2px 2px;
  background-color: #FFFFFF;
  padding-bottom: 20px;
}
.orderhistory .title {
  padding: 16px 0px;
  opacity: 0.9;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
  border-bottom: 1px solid #DEDFE1;
}
.orderhistory .orderaddress {
  margin-bottom: 16px;
}
.orderhistory .orderaddress .address {
  font-size: 12px;
  line-height: 20px;
  padding-left: 0px;
}
.orderhistory .orderaddress .address address {
  margin-bottom: 0px;
}
.orderhistory .ordershipstatus {
  border: 1px solid #E7E8E9;
  border-radius: 2px 2px 0 0;
  background-color: #FFFFFF;
  padding-bottom: 25px;
}
.orderhistory .ordershipstatus ul {
  padding: 26px 0px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.orderhistory .ordershipstatus ul li {
  position: relative;
  width: 100%;
}
.orderhistory .ordershipstatus ul li .tab,
.orderhistory .ordershipstatus ul li .tabmsg {
  padding: 0;
  position: relative;
  display: block;
  text-align: center;
}
.orderhistory .ordershipstatus ul li .tab {
  margin: 5px auto;
  border-radius: 25px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background-color: #000000;
}
.orderhistory .ordershipstatus ul li .tab img {
  width: 12px;
  height: 12px;
  display: inline;
  color: #FFFFFF;
}
.orderhistory .ordershipstatus ul li .tabmsg {
  margin: 0px auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
  color: #000000;
}
.orderhistory .ordershipstatus ul li:not(:last-child):after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  top: 12px;
  left: 50%;
  z-index: 1;
  box-sizing: border-box;
  border: 3px solid #000000;
}
.orderhistory .ordershipstatus ul li.active .tab {
  background-color: #006618;
}
.orderhistory .ordershipstatus ul li.active .tab img {
  display: inline;
  color: #FFFFFF;
}
.orderhistory .ordershipstatus ul li.active .tabmsg {
  color: #006618;
}
.orderhistory .ordershipstatus ul li.active:after {
  box-sizing: border-box;
  border: 3px solid #DEDFE1;
}
.orderhistory .ordershipstatus ul li.active:before {
  position: absolute;
  background: linear-gradient(to right, #000000 0%, #006618 100%);
  height: 6px;
  top: 12px;
  left: -50%;
  z-index: 1;
  width: 100%;
  content: "";
}
.orderhistory .ordershipstatus ul li.active ~ li .tab {
  background-color: #DEDFE1;
}
.orderhistory .ordershipstatus ul li.active ~ li .tab img {
  display: none;
}
.orderhistory .ordershipstatus ul li.active ~ li .tabmsg {
  color: #6A6A6A;
}
.orderhistory .ordershipstatus ul li.active ~ li:after {
  box-sizing: border-box;
  border: 3px solid #DEDFE1;
}
.orderhistory .ordershipstatus ul li:first-child::before {
  background: transparent;
  border: none;
}
.orderhistory .productdetails {
  border: 1px solid #E7E8E9;
  border-top: 0px;
  background-color: #FFFFFF;
  border-radius: 0 0 2px 2px;
  background-color: #FFFFFF;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
}
.orderhistory .productdetails img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.orderhistory .productdetails .proname {
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
  color: #000000;
}
.orderhistory .productdetails .proid {
  color: #58595A;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
}
.orderhistory .productdetails .shipdate {
  display: flex;
}
.orderhistory .productdetails .shipdate div {
  margin-right: 10px;
}
.orderhistory .productdetails .favorite {
  text-align: right;
}
.orderhistory .productdetails .favorite img {
  width: 18px;
  height: 18px;
}
.orderhistory .details {
  float: left;
  display: inline-block;
  padding: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 12px;
  text-align: center;
  margin: 0 5px;
  border-radius: 14px;
  background-color: #F2F4F6;
}
.orderhistory .details:first-child {
  margin-left: 0px;
}
.orderhistory .price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
}
.orderhistory .operation {
  font-size: 12px;
  color: #000000;
  text-align: right;
  padding: 0px;
}
.orderhistory .operation div {
  display: inline-block;
}
.orderhistory .operation div img {
  width: 18px;
  height: 18px;
  padding-right: 3px;
}
.orderhistory .operation div span {
  padding-right: 18px;
}
.orderhistory .summary .order {
  font-size: 16px;
  line-height: 19px;
}
.orderhistory .summary .order span {
  padding-left: 0;
  padding-right: 0;
}
.orderhistory .summary .order .txtright {
  text-align: right;
  font-weight: 600;
}
.orderhistory .summary .order:nth-child(3) {
  padding-bottom: 10px;
  border-bottom: 1px solid #DEDFE1;
}
.orderhistory .summary .detailtxt {
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 10px;
}
.orderhistory .summary a {
  width: 100%;
}

.adjust_value {
  color: #d0023e;
}

.contact,
.faq {
  padding-top: 19px;
}
.contact .endor-form,
.faq .endor-form {
  padding-top: 40px;
}
.contact .collapse-tab-pane h5,
.faq .collapse-tab-pane h5 {
  margin: 0;
}
.contact .block-tab-nav,
.faq .block-tab-nav {
  display: none;
}
@media only screen and (min-width: 767px) {
  .contact .block-tab-nav,
  .faq .block-tab-nav {
    display: block;
  }
}
.contact .block-tab-nav > ul > li,
.faq .block-tab-nav > ul > li {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
  border: 1px solid #000000;
}
.contact .block-tab-nav > ul > li > a,
.faq .block-tab-nav > ul > li > a {
  color: #000000;
  line-height: 100px;
  text-align: center;
  padding: 0;
}
.contact .block-tab-nav > ul > li.active, .contact .block-tab-nav > ul > li:active, .contact .block-tab-nav > ul > li:focus, .contact .block-tab-nav > ul > li:hover,
.faq .block-tab-nav > ul > li.active,
.faq .block-tab-nav > ul > li:active,
.faq .block-tab-nav > ul > li:focus,
.faq .block-tab-nav > ul > li:hover {
  border-color: #D7D7D7;
}
.contact .block-tab-nav > ul > li.active a, .contact .block-tab-nav > ul > li:active a, .contact .block-tab-nav > ul > li:focus a, .contact .block-tab-nav > ul > li:hover a,
.faq .block-tab-nav > ul > li.active a,
.faq .block-tab-nav > ul > li:active a,
.faq .block-tab-nav > ul > li:focus a,
.faq .block-tab-nav > ul > li:hover a {
  background-color: #D7D7D7;
}
.contact .grid-item-alt,
.faq .grid-item-alt {
  margin-bottom: 40px;
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .contact .grid-item-alt,
  .faq .grid-item-alt {
    width: 85%;
  }
}
.contact .grid-item-alt.item-center,
.faq .grid-item-alt.item-center {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.contact .grid-item-alt.item-right,
.faq .grid-item-alt.item-right {
  float: right;
}
.contact .grid-item-alt .faq-block,
.contact .grid-item-alt .reason-block,
.faq .grid-item-alt .faq-block,
.faq .grid-item-alt .reason-block {
  display: block;
  border: 1px solid;
  border-left: 84px solid;
}
.contact .grid-item-alt .reason-block,
.faq .grid-item-alt .reason-block {
  border-color: #000000;
  text-align: center;
  line-height: 100px;
  font-size: 16px;
  color: #000000;
  height: 100px;
}
.contact .grid-item-alt .reason-block:active, .contact .grid-item-alt .reason-block:focus, .contact .grid-item-alt .reason-block:hover,
.faq .grid-item-alt .reason-block:active,
.faq .grid-item-alt .reason-block:focus,
.faq .grid-item-alt .reason-block:hover {
  text-decoration: underline;
}
.contact .grid-item-alt .faq-block,
.faq .grid-item-alt .faq-block {
  border-color: #B7B7B7;
  height: 130px;
  padding: 10px;
}
.contact .grid-item-alt .faq-block > a,
.faq .grid-item-alt .faq-block > a {
  display: block;
  text-align: right;
}
.contact .grid-item-alt ul,
.faq .grid-item-alt ul {
  margin: 10px 0 0;
  padding: 0;
}
.contact .grid-item-alt li,
.faq .grid-item-alt li {
  list-style-type: none;
}
.contact h2,
.contact h4,
.contact h5,
.faq h2,
.faq h4,
.faq h5 {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
.contact h2,
.faq h2 {
  margin-top: 0;
  font-size: 25px;
  display: none;
}
@media only screen and (min-width: 767px) {
  .contact h2,
  .faq h2 {
    display: block;
  }
}
.contact h4,
.faq h4 {
  font-weight: 700;
  margin-top: 0;
}
.contact h5,
.faq h5 {
  font-weight: 500;
  margin-bottom: 20px;
}
.contact .contact-tab-content,
.faq .contact-tab-content {
  margin-top: 0;
}
.contact .contact-tab-content .tab-pane,
.faq .contact-tab-content .tab-pane {
  margin: 10px 0;
}
.contact .faq-questions .btn-scroll,
.contact .faq-results .btn-scroll,
.faq .faq-questions .btn-scroll,
.faq .faq-results .btn-scroll {
  color: #337AB7;
  text-decoration: underline;
}
.contact .faq-questions ul,
.contact .faq-results ul,
.faq .faq-questions ul,
.faq .faq-results ul {
  padding: 0;
  margin: 0;
}
.contact .faq-questions ul li,
.contact .faq-results ul li,
.faq .faq-questions ul li,
.faq .faq-results ul li {
  list-style-type: none;
  margin-bottom: 20px;
}
.contact .faq-questions ul li a,
.contact .faq-results ul li a,
.faq .faq-questions ul li a,
.faq .faq-results ul li a {
  text-decoration: underline;
  display: inline-block;
  padding: 10px 0;
  font-size: 12px;
}
@media only screen and (max-width: 667px) {
  .contact .faq-results,
  .faq .faq-results {
    padding: 0 10px;
  }
}
.contact .faq-results .endor-angle-right, .contact .faq-results .mobile-nav .menu li a:after, .mobile-nav .menu li .contact .faq-results a:after,
.faq .faq-results .endor-angle-right,
.faq .faq-results .mobile-nav .menu li a:after,
.mobile-nav .menu li .faq .faq-results a:after {
  font-size: 200%;
  position: relative;
  top: 9px;
  color: #337AB7;
  padding: 0 10px;
}
.contact .faq-answer h4,
.faq .faq-answer h4 {
  padding-top: 110px;
}

.faq .nav .faq-answer {
  display: none;
}

.faq .answerDock h4 {
  padding-top: 3em;
}

.help-contact-info {
  margin-bottom: 15px;
  margin-top: 15px;
}
.help-contact-info > span {
  display: block;
}

.contact header.itemHeader {
  background: #CCCCCC;
  padding: 0.25em;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact header.itemHeader .padded {
  padding-left: 0.25em;
}

@media only screen and (min-width: 767px) {
  .page-header-alt span {
    float: right;
  }
}
.page-header-alt span a {
  text-decoration: underline;
}

@media only screen and (min-width: 767px) {
  .contact-tab-content .tab-pane {
    margin: 0 10px;
  }
}

.contact__query .contact__query--ask {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.1;
  color: inherit;
}
.contact__query .contact__query--lead {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.1;
  color: inherit;
}

.order__details-title {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.1;
  color: inherit;
}

.privacy__title {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy__sub-title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy__agree-disclaimer {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}

#contact-us {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  border-left: 1px solid #E7E8E9;
  padding: 24px 30px 0px 30px;
}
#contact-us .contact__title {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  line-height: 29px;
}
#contact-us .contact__query--ask {
  color: #000000;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  padding-bottom: 24px;
  margin-bottom: 0px;
}
#contact-us .contact__messsage {
  color: #000000;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 24px;
  margin-top: 13px;
  /*issue: #2377*/
}
#contact-us .contact__messsage a:focus {
  outline: 0 !important;
}
#contact-us .topic-selector {
  position: relative;
}
#contact-us .topic-selector .endor-down-arrow {
  font-size: 16px;
}
#contact-us .topic-selector .endor-down-arrow:after {
  color: #58595A;
}
#contact-us .topic-selector img.arrow-down-icon {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
#contact-us .topic-selector select {
  margin: 0;
  z-index: 9991;
}
#contact-us .topic-selector .customSelect {
  color: #000000;
  border: 1px solid #595959;
  border-radius: 2px;
  padding: 16px 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
}
#contact-us .topic-selector .customSelect .customSelectInner {
  position: relative;
  top: 2px;
  font-size: 12px;
}
#contact-us .topic-selector .contact__choosetopic {
  position: absolute;
  top: -3px;
  left: -3px;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 6px 0 2px 16px;
}
#contact-us #contact__orders .order-selector {
  position: relative;
}
#contact-us #contact__orders .order-selector img.arrow-down-icon {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
#contact-us #contact__orders .order-selector select {
  margin: 0;
}
#contact-us #contact__orders .order-selector .customSelect {
  border: 1px solid #595959;
  border-radius: 2px;
  color: #595959;
  font-size: 14px;
  line-height: 17px;
}
#contact-us #contact__orders .order-selector .customSelect .customSelectInner {
  position: relative;
}
#contact-us #contact__orders ul.contact-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#contact-us #contact__orders ul.contact-order-list > li:first-child {
  margin-top: 24px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 20px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-img img {
  height: 64px;
  width: 64px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-options .order-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-options .order-item-options {
  padding-bottom: 10px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-options .order-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-shipping-options {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
}
#contact-us #contact__orders ul.contact-order-list li.order-item .order-item-price-sm {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#contact-us .grm-form .grm-form-group.contact-comment {
  margin-bottom: 11px;
}

@media (max-width: 991.98px) {
  #contact-us {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
  #contact-us #contact__orders ul.contact-order-list li.order-item .order-item-options .order-item-product-id {
    padding-top: 0px;
  }
  #contact-us #contact__orders ul.contact-order-list li.order-item .order-shipping-options {
    padding-top: 5px;
  }
}
@media (max-width: 575.98px) {
  #contact-us {
    padding: 32px 0px 0px 1px;
  }
  #contact-us .grm-btn {
    width: 100%;
  }
  #contact-us #contact__orders ul.contact-order-list li.order-item {
    padding: 15px;
  }
  #contact-us #contact__orders ul.contact-order-list li.order-item .order-item-img img {
    height: 64px;
    width: 64px;
  }
}
.user-is-tabbing #contact-us span.customSelect.customSelectFocus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #contact-us .contact__messsage a:focus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing #help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title a:focus {
  outline: 2px dashed #595959 !important;
}
.user-is-tabbing #help-page .help__section .grm-panel-group .grm-panel-body:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing #common-right-sidebar .help-topics-wrapper ul.help-topics-nav li.help-topic a:focus {
  outline: 2px dashed #595959 !important;
}

#help-page {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  border-left: 1px solid #E7E8E9;
  padding: 24px 30px 0px 30px;
}
#help-page .help__title {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 24px;
  line-height: 29px;
}
#help-page .help__search-wrapper {
  position: relative;
}
#help-page .help__search-wrapper .grm-png-icon.left {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
}
#help-page .help__search-wrapper .help__search-input {
  height: 50px;
  width: 100%;
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding-left: 35px;
}
#help-page .help__search-wrapper .help__search-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8C8F93;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  opacity: 1;
  /* Firefox */
}
#help-page .help__search-wrapper .help__search-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8C8F93;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
}
#help-page .help__search-wrapper .help__search-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8C8F93;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
}
#help-page .help__search-wrapper .grm-png-icon.right {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 14px;
}
#help-page .help__section .help__section-title {
  color: #006618;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 22px;
  text-transform: uppercase;
  padding-bottom: 20px;
}
#help-page .help__section .grm-panel-group .grm-panel {
  margin-bottom: 0;
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading {
  padding: 15px 0px;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title a {
  display: block;
  position: relative;
  transition: all  0.5s ease;
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title a.collapsed img.grm-png-icon {
  transition: all  0.5s ease;
  transform: rotate(0deg);
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title a .grm-help-quest {
  opacity: 0.9;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.38px;
  line-height: 24px;
  width: 90%;
  display: inline-block;
}
#help-page .help__section .grm-panel-group .grm-panel .grm-panel-heading .grm-panel-title a img.grm-png-icon {
  width: 12px;
  position: absolute;
  right: 0px;
  top: 6px;
  transition: all  0.5s ease;
  transform: rotate(180deg);
}
#help-page .help__section .grm-panel-group .grm-panel-default {
  border-top: 1px solid #DEDFE1;
}
#help-page .help__section .grm-panel-group .grm-panel-default > .grm-panel-heading {
  color: #000000;
  background-color: #FFFFFF;
}
#help-page .help__section .grm-panel-group .grm-panel-body {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 20px;
}
#help-page .help__section .grm-panel-group .grm-panel-body:before, #help-page .help__section .grm-panel-group .grm-panel-body:after {
  display: table;
  content: " ";
}

@media (max-width: 991.98px) {
  #help-page {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
}
@media (max-width: 575.98px) {
  #help-page {
    padding: 32px 0px 0px 1px;
  }
}
.common__page {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  border-left: 1px solid #E7E8E9;
  padding: 24px 30px 0px 30px;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 22px;
}
.common__page img {
  width: 100%;
}
.common__page h1 {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 0px;
  margin-bottom: 24px;
}
.common__page h2 {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 24px;
}
.common__page h3 {
  color: #595959;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  margin: 0;
  margin-bottom: 16px;
}
.common__page p {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 16px;
}
.common__page ul {
  list-style: disc;
  padding-left: 25px;
}
.common__page ul li {
  padding-left: 15px;
}

@media (max-width: 991.98px) {
  .common__page {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
}
@media (max-width: 575.98px) {
  .common__page {
    padding: 32px 0px 0px 1px;
  }
  .common__page h2 {
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
  }
  .common__page h3 {
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
  }
}
/*
8888888888888     8888888888888888b    88888888888888 .d8888b.
888       888     888888       8888b   888    888    d88P  Y88b
888       888     888888       88888b  888    888    Y88b.
8888888   Y88b   d88P8888888   888Y88b 888    888     "Y888b.
888        Y88b d88P 888       888 Y88b888    888        "Y88b.
888         Y88o88P  888       888  Y88888    888          "888
888          Y888P   888       888   Y8888    888    Y88b  d88P
8888888888    Y8P    8888888888888    Y888    888     "Y8888P"
*/
.events .searchHeader h1 {
  border-bottom: solid 1px #D8D8D8;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.events .searchHeader h1 em {
  font-size: 50%;
}
.events .events-mobile-top-header {
  margin-top: 20px;
}
.events .searchHeader.eventCategory h1 {
  border-bottom: none;
  font-size: 55px;
  margin-top: 0;
  line-height: 39px;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
}
.events .eventSearchResults {
  background: #EBEBEB;
  padding: 10px;
}
.events .eventSearchResults .eventSearchResults {
  padding: 0;
}
.events .eventSearchResults h2 {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.events .eventSearchResults h2 a {
  display: inline-block;
  float: right;
  font-weight: 200;
}
.events .eventSearchResults .eventItem {
  margin: 0 -10px;
  border-top: solid 1px #CCCCCC;
  padding: 10px;
}
.events .eventSearchResults .eventItem:first-child {
  border-top: none;
  padding-top: 0;
}
.events .eventSearchResults .eventItem h3 {
  margin-top: 3px;
  margin-bottom: 4px;
  font-size: 12px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.events .eventSearchResults .eventItem h4 {
  font-size: 11px;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}
.events .eventSearchResults .eventItem span {
  font-size: 11px;
}
.events .eventSearchResults .eventExpander {
  display: none;
  border-top: solid 1px #D8D8D8;
  padding-top: 20px;
  border-top: solid 1px #CCCCCC;
  margin: 0 -10px;
  text-align: center;
}
.events .eventSearchResults .eventExpander a {
  width: auto;
  margin: 0 auto 10px;
  background: none;
}
.events .eventSearchResults .eventExpander a:hover {
  background: #404040;
}
.events .eventSearchResults .eventExpander a:active {
  background: #404040;
}
.events .eventList .event {
  margin-bottom: 30px;
  height: 82px;
}
@media only screen and (max-width: 667px) {
  .events .eventList .event {
    height: 43px;
  }
}
.events .eventList .event a {
  width: 100%;
  display: block;
  float: left;
  border: solid 1px #EBEBEB;
}
.events .eventList .event a:hover {
  background: #595959;
  color: #FFFFFF;
}
.events .eventList .event img {
  display: inline-block;
  width: 5%;
  height: 61px;
  border: none;
  visibility: hidden;
}
.events .eventList .event .wasALogo {
  display: inline-block;
  width: 80px;
  height: 83px;
  border: none;
  background: #EBEBEB;
  float: left;
}
@media only screen and (max-width: 667px) {
  .events .eventList .event .wasALogo {
    height: 48px;
    width: 50px;
  }
}
.events .eventList .event p {
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
  display: inline-block;
  float: right;
  width: 75%;
  padding: 1em 0 0.9em;
  line-height: 4em;
  margin-bottom: 0;
}
@media only screen and (max-width: 667px) {
  .events .eventList .event p {
    line-height: 1em;
    padding: 1.25em 0 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80%;
  }
}
.events .eventListHeader.row {
  margin-left: 5px;
  margin-right: 5px;
}
.events .eventListHeader .time,
.events .eventListHeader .title,
.events .eventListHeader .venue {
  background: #D8D8D8;
  margin-bottom: 5px;
}
.events .eventListHeader .time p,
.events .eventListHeader .title p,
.events .eventListHeader .venue p {
  font-family: "open_sansregular";
  font-size: 19px;
  font-weight: 100;
  padding-top: 10px;
}
.events .eventSummary {
  margin: 0;
}
.events .eventSummary h2 {
  background: #D8D8D8;
  margin: 0 -15px;
  font-size: 19px;
  font-weight: 100;
  font-family: "open_sansregular";
  padding: 0.5em 0.85em;
  margin-bottom: 20px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .events .eventSummary h2 {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .events .eventSummary h2 {
    margin-top: 20px;
  }
}
.events .eventSummary h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.events .eventSummary h4 {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .col-md-5 h3 {
    margin-bottom: 20px;
  }
  .events .eventSummary .col-md-4 h4 {
    margin-bottom: 20px;
  }
}

/* !! --- SOME OF THE STYLES FOR THE TICKET LIST AND INTERACTIVE MAP ARE IN THE _tuMap.scss FILE,
 AND SOME OF THE TICKET LIST STYLING ( TABLE COLUMNS ) AND HTML MARKUP ARE GENERATED IN
 site > src > main > web app > WEB-INF > endor-theme  > js > plugins > MapImplementation.js --- !!
*/
/*
                                    888              888          888             d8b 888
                                    888              888          888             Y8P 888
                                    888              888          888                 888
 .d88b.  888  888  .d88b.  88888b.  888888       .d88888  .d88b.  888888  8888b.  888 888
d8P  Y8b 888  888 d8P  Y8b 888 "88b 888         d88" 888 d8P  Y8b 888        "88b 888 888
88888888 Y88  88P 88888888 888  888 888         888  888 88888888 888    .d888888 888 888
Y8b.      Y8bd8P  Y8b.     888  888 Y88b.       Y88b 888 Y8b.     Y88b.  888  888 888 888
 "Y8888    Y88P    "Y8888  888  888  "Y888       "Y88888  "Y8888   "Y888 "Y888888 888 888
*/
/* GLOBAL --------------------------------------------------------------------------------------- > */
/* Typography ----------------------------- > */
/* Layout --------------------------------- > */
.centerer {
  /*  Parent element must have position: relative; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centerer-horizontal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.centerer-vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbar .row {
  max-width: 100%;
}

.go-back-button-container {
  padding-top: 35px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 667px) {
  .go-back-button-container {
    width: 100%;
    padding: 16px;
    margin-top: 25px;
    position: absolute;
  }
}
.go-back-button-container .go-back-button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: auto;
  padding: 0;
  color: #404040;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 300;
  font-size: 14px;
}
.go-back-button-container .go-back-button .go-back-icon {
  width: 14px;
  height: 14px;
  color: #404040;
  margin: 0 6px 6px 0;
}
.go-back-button-container .go-back-button .go-back-icon:hover {
  color: #000000;
}
.go-back-button-container .go-back-button span {
  color: #404040;
  width: auto;
}
.go-back-button-container .go-back-button span:hover {
  color: #000000;
}

/* HERO IMAGE ----------------------------------------------------------------------------------- > */
.hero-image .hero-img-search-container,
.hero-image .hero-img-search-container-truncated {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hero-image .hero-img-search-container img.innerImage,
.hero-image .hero-img-search-container-truncated img.innerImage {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 667px) {
  .hero-image .hero-img-search-container img.innerImage,
  .hero-image .hero-img-search-container-truncated img.innerImage {
    max-width: 200%;
    width: 200%;
    margin-left: -50%;
    overflow: hidden;
  }
}
.hero-image .hero-img-search-container-truncated {
  height: 240px;
  overflow: hidden;
}
.hero-image .hero-search-input-container {
  border: 1px solid #000000;
  height: 48px;
  width: 35%;
  min-width: 360px;
}
@media only screen and (max-width: 667px) {
  .hero-image .hero-search-input-container {
    width: 15%;
    min-width: 250px;
    font-size: 0.7em;
  }
}
.hero-image .hero-search-input-container .hero-search-input {
  float: left;
  display: inline-block;
  width: 87%;
  height: 46px;
  padding-left: 25px;
  border-width: 1px;
  border-style: none;
}
@media only screen and (max-width: 667px) {
  .hero-image .hero-search-input-container .hero-search-input {
    padding-left: 10px;
    width: 82%;
  }
}
.hero-image .hero-search-input-container .hero-search-input:focus {
  outline: none;
  border: 1px solid #000000;
}
.hero-image .hero-search-input-container .hero-search-input::-webkit-input-placeholder {
  font-style: italic;
}
.hero-image .hero-search-input-container .hero-search-input:-moz-placeholder {
  font-style: italic;
}
.hero-image .hero-search-input-container .hero-search-input::-moz-placeholder {
  font-style: italic;
}
.hero-image .hero-search-input-container .hero-search-input:-ms-input-placeholder {
  font-style: italic;
}
.hero-image .hero-search-input-container .hero-search-input::placeholder {
  font-style: italic;
}
.hero-image .hero-search-input-container .hero-search-icon {
  position: relative;
  float: left;
  display: inline-block;
  width: 13%;
  height: 46px;
  background-color: #000000;
  border-left: none;
  cursor: pointer;
}
@media only screen and (max-width: 667px) {
  .hero-image .hero-search-input-container .hero-search-icon {
    width: 18%;
  }
}
.hero-image .hero-search-input-container .hero-search-icon i.endorIcon, .hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .hero-image .hero-search-input-container .hero-search-icon i, .hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .hero-image .hero-search-input-container .hero-search-icon i, .hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .hero-image .hero-search-input-container .hero-search-icon i,
.hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .hero-image .hero-search-input-container .hero-search-icon i,
.hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .hero-image .hero-search-input-container .hero-search-icon i,
.hero-image .hero-search-input-container .hero-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .hero-image .hero-search-input-container .hero-search-icon i, .hero-image .hero-search-input-container .hero-search-icon .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .hero-image .hero-search-input-container .hero-search-icon i,
.hero-image .hero-search-input-container .hero-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .hero-image .hero-search-input-container .hero-search-icon i {
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.events {
  /* SEARCH FILTER DROPDOWNS SECTION ----------------------------------------------------------------------------------- > */
  /*
                                             888                                             888 888
                                             888                                             888 888
                                             888                                             888 888
  .d8888b   .d88b.   8888b.  888d888 .d8888b 88888b.       888d888 .d88b.  .d8888b  888  888 888 888888 .d8888b
  88K      d8P  Y8b     "88b 888P"  d88P"    888 "88b      888P"  d8P  Y8b 88K      888  888 888 888    88K
  "Y8888b. 88888888 .d888888 888    888      888  888      888    88888888 "Y8888b. 888  888 888 888    "Y8888b.
      X88  Y8b.     888  888 888    Y88b.    888  888      888    Y8b.          X88 Y88b 888 888 Y88b.       X88
   88888P'  "Y8888  "Y888888 888     "Y8888P 888  888      888     "Y8888   88888P'  "Y88888 888  "Y888  88888P'
  */
  /* END CATEGORY_SEARCH_RESULTS */
  /* SEARCH RESULTS - styles end here */
  /*
                                      888                  888
                                      888                  888
                                      888                  888
   .d88b.  888  888  .d88b.  88888b.  888888 .d8888b       88888b.   .d88b.  88888b.d88b.   .d88b.
  d8P  Y8b 888  888 d8P  Y8b 888 "88b 888    88K           888 "88b d88""88b 888 "888 "88b d8P  Y8b
  88888888 Y88  88P 88888888 888  888 888    "Y8888b.      888  888 888  888 888  888  888 88888888
  Y8b.      Y8bd8P  Y8b.     888  888 Y88b.       X88      888  888 Y88..88P 888  888  888 Y8b.
   "Y8888    Y88P    "Y8888  888  888  "Y888  88888P'      888  888  "Y88P"  888  888  888  "Y8888
  */
  /* ----- icon search filter section --------------------------------------------*/
}
.events .error-message {
  margin: 0;
}
.events .container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  overflow: hidden;
}
.events .events-breadcrumb {
  height: 40px;
}
.events .events-breadcrumb .endorBreadcrumb {
  display: block;
  margin-left: 50px;
}
.events .events-breadcrumb .endorBreadcrumb a,
.events .events-breadcrumb .endorBreadcrumb span.breadcrumb-seperator {
  color: #000000;
  display: inline-block;
  float: none;
  margin-right: 0;
  font-size: 12px;
}
.events .date-filter-outer-container,
.events .location-filter-outer-container {
  display: inline-block;
  width: 300px;
}
@media only screen and (max-width: 667px) {
  .events .date-filter-outer-container,
  .events .location-filter-outer-container {
    width: 100%;
  }
}
.events .date-filter-inner-container,
.events .location-filter-inner-container {
  min-height: 40px;
}
.events .date-filter-inner-container i:first-of-type,
.events .location-filter-inner-container i:first-of-type {
  margin-left: 10px;
}
.events .location-filter-inner-container {
  min-height: 40px;
}
.events .popular-events-heading,
.events .popular-venues-heading {
  display: inline-block;
  margin-bottom: 25px;
  line-height: 40px;
  vertical-align: 30;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-heading,
  .events .popular-venues-heading {
    display: none;
  }
}
.events .location-filter-inner-container,
.events .location-filter-dropdown-container {
  width: 100%;
  background: #FFFFFF;
  display: block;
  margin-right: 30px;
  color: #999999;
  font-size: 12px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  border: 1px solid #BBBBBB;
  outline: none;
  overflow: hidden;
}
.events .location-filter-inner-container i,
.events .location-filter-dropdown-container i {
  color: #000000;
  cursor: pointer;
}
.events .location-filter-inner-container .endor-map_pin_2,
.events .location-filter-dropdown-container .endor-map_pin_2 {
  color: #BBBBBB;
  border-left: 1px solid #BBBBBB;
  background: #F6F6F6;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  line-height: 38px;
  text-indent: 10px;
  cursor: pointer;
}
.events .date-filter-dropdown-container,
.events .location-filter-dropdown-container {
  margin-right: -254px;
  top: 0;
  padding-bottom: 10px;
  padding-top: 1.9em;
  display: none;
}
.events .date-filter-dropdown-container a,
.events .location-filter-dropdown-container a {
  text-decoration: underline;
  margin-left: 15px;
  display: block;
  clear: both;
}
.events .search-filter-section {
  height: 80px;
  background-color: #D8D8D8;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media only screen and (max-width: 667px) {
  .events .search-filter-section {
    background-color: transparent;
  }
}
.events .search-filter-section .search-filter-section-inner-container {
  height: 40px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media only screen and (max-width: 667px) {
  .events .search-filter-section .search-filter-section-inner-container {
    padding: 0 15px;
    flex-wrap: wrap;
  }
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-outer-container {
  margin-left: 25px;
}
@media only screen and (max-width: 667px) {
  .events .search-filter-section .search-filter-section-inner-container .date-filter-outer-container {
    width: 100%;
    margin-left: 0;
  }
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-dropdown-search-container,
.events .search-filter-section .search-filter-section-inner-container .location-filter-dropdown-search-container {
  margin: 5px 0 10px 0;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input {
  float: left;
  display: inline-block;
  width: 90%;
  height: 25px;
  border: 1px solid #C4C2C2;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input:focus,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input:focus {
  color: #000000;
  outline: none;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input:focus::-webkit-input-placeholder,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input:focus::-webkit-input-placeholder {
  color: transparent;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input:focus:-moz-placeholder,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input:focus:-moz-placeholder {
  color: transparent;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input:focus::-moz-placeholder,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input:focus::-moz-placeholder {
  color: transparent;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-input:focus::placeholder,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-input:focus::placeholder {
  color: transparent;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #EBEBEB;
  border: 1px solid #C4C2C2;
  border-left: none;
  cursor: pointer;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon a,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon a {
  margin: 0;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i.endorIcon, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i.endorIcon,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-match-icon.pw-normal i,
.endor-form .pw-match-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-match-icon.pw-strong i,
.endor-form .pw-match-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-match-icon.pw-weak i,
.endor-form .pw-match-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .field-error .pw-match-icon.input-icon i,
.endor-form .field-error .pw-match-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .location-filter-search-icon i {
  font-weight: 700;
}
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i.endorIcon, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i, .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i,
.events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .search-filter-section .search-filter-section-inner-container .date-filter-search-icon i {
  font-size: 15px;
  font-weight: 400;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.events .search-filter-section .search-filter-section-inner-container .filter-dropdown-show {
  display: block;
  position: absolute;
  left: 0;
  top: 39px;
  width: 100%;
  z-index: 100;
}
@media only screen and (max-width: 667px) {
  .events .search-filter-section .search-filter-section-inner-container .date-filter-outer-container {
    width: 100%;
    margin-left: 0;
  }
}
.events .search-filter-section .search-filter-section-inner-container .location-filter-outer-container {
  position: relative;
}
@media only screen and (max-width: 667px) {
  .events .search-filter-section .search-filter-section-inner-container .location-filter-outer-container {
    margin-bottom: 25px;
    width: 100%;
  }
}
.events .eventSummary {
  margin: 0;
  width: 100%;
}
.events .eventSummary h2 {
  background: #D8D8D8;
  margin: 0 -15px;
  font-size: 19px;
  font-weight: 100;
  font-family: "open_sansregular";
  padding: 0.5em 0.85em;
  margin-bottom: 20px;
}
.events .eventSummary .event-info {
  margin: 0;
  padding: 0 9%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  flex-basis: 100%;
  min-height: 150px;
  background-color: #F6F6F6;
  margin-bottom: 20px;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info {
    width: 100%;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.events .eventSummary .event-info h2 {
  background-color: transparent;
  margin: 0;
  padding: 0;
  line-height: 23px;
}
.events .eventSummary .event-info span {
  display: block;
  line-height: 16.5px;
  font-size: 12px;
}
.events .eventSummary .event-info .event-info-inner-container {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 150px;
  align-items: center;
  margin: 0;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container {
    flex-wrap: wrap;
    padding: 0;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-date-infographic {
  height: 80px;
  width: 80px;
  max-width: 80px;
  flex-basis: 80px;
  flex-grow: 1;
  padding: 2px;
  border: 2px solid #404040;
  border-radius: 8px;
  font-family: Arial;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-date-infographic {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    height: 60px;
    border: none;
    border-radius: 0;
    background-color: #EBEBEB;
    padding: 0 30px;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-date-infographic span {
  width: 100%;
  text-align: center;
  line-height: 15px;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-date-infographic span {
    text-align: left;
    display: inline-block;
    width: auto;
    font-size: 24px;
    font-family: Arial;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-month {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 700;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-month {
    font-size: 24px;
    font-family: Arial;
    margin-top: 0;
    margin-right: 10px;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-day {
  font-weight: 500;
  font-size: 35px;
  margin: 8px 0;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-day {
    font-size: 24px;
    font-family: Arial;
    margin: 0;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-time {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-date-infographic .event-time {
    display: none;
  }
}
.events .eventSummary .event-info .event-info-inner-container .event-copy {
  display: flex;
  flex-grow: 2;
  flex-direction: column;
  padding-left: 25px;
  min-height: 90px;
  align-content: center;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-info .event-info-inner-container .event-copy {
    margin-left: 0;
  }
}
.events .eventSummary .event-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-details .go-back-button-container {
    margin-top: 0;
    position: relative;
  }
}
.events .eventSummary .event-details .event-info-inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-details .event-info-inner-container {
    flex-wrap: wrap;
    height: auto;
  }
}
.events .eventSummary .event-details .event-info-inner-container .event-copy {
  height: 150px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .eventSummary .event-details .event-info-inner-container .event-copy {
    height: auto;
  }
}
.events .eventSummary .event-details .event-info-inner-container .event-copy h2 {
  width: 100%;
}
.events .eventSummary .event-details .event-info-inner-container .event-copy span {
  width: 100%;
}
.events .eventSummary .event-details .event-info-inner-container .event-copy p {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0;
}
.events .eventSummary .event-details .event-info-inner-container .event-copy p .eventsCity,
.events .eventSummary .event-details .event-info-inner-container .event-copy p .eventsState {
  width: auto;
}
.events .ticket-container {
  background: #EBEBEB;
}
.events .ticket-container h5 {
  font-weight: bold;
  font-family: Arial;
}
.events .ticket-container .points-based-search .input-container {
  width: 45%;
}
.events .ticket-container .points-based-search #events-points-based-searchresults-submit {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 100%;
  height: 30px;
  position: absolute;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  top: 3px;
  border: none;
  color: #000000;
  width: 33px;
  left: 140px;
  padding: 0;
  background: transparent;
}
.events .ticket-container .points-based-search #points-based-search-form .ceiling-container:before {
  left: 138px;
  height: 35px;
  top: 0;
  padding: 0;
}
.events .ticket-container #available-tickets {
  overflow: hidden !important;
}
.events .ticket-container #available-tickets .tuMapTicketList > table {
  table-layout: auto !important;
}
.events .ticket-container #available-tickets .select-container {
  min-height: 1px;
  width: 54px;
  max-width: 54px;
  min-width: 54px;
  height: auto;
  margin: 0 auto;
}
.events .ticket-container #available-tickets .select-container select {
  margin-bottom: 0;
}
.events .ticket-container #available-tickets .select-container .endor-down-arrow {
  height: 21px;
  width: 21px;
  line-height: 21px;
  text-indent: 2px;
  font-size: 12px;
  min-height: 1px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #C4C2C2;
  border-top: 1px solid #C4C2C2;
  border-left: 1px solid #C4C2C2;
}
.events .ticket-container #available-tickets .select-container .endor-down-arrow:after {
  color: #FFFFFF;
}
.events .ticket-container #available-tickets .select-container .custom-select {
  padding: 2px 5px;
  border: 1px solid #C4C2C2;
  color: #000000;
  width: 100%;
  margin: 0 auto;
  height: 22px;
  background-color: #FFFFFF;
}
.events #events_view .no-tickets-available,
.events #events_view .general-admission-event {
  width: 100%;
  display: none;
}
.events #events_view .no-tickets-available .failover-image-container,
.events #events_view .general-admission-event .failover-image-container {
  width: 240px;
  height: 240px;
  background-color: #EBEBEB;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.events #events_view .no-tickets-available .failover-image-container img,
.events #events_view .general-admission-event .failover-image-container img {
  width: 50%;
}
.events #events_view .no-tickets-available p, .events #events_view .no-tickets-available h1,
.events #events_view .general-admission-event p,
.events #events_view .general-admission-event h1 {
  width: 100%;
  text-align: center;
  font-family: Arial;
}
.events #events_view .no-tickets-available p,
.events #events_view .general-admission-event p {
  font-size: 18px;
}
.events #events_view .no-tickets-available h1,
.events #events_view .general-admission-event h1 {
  font-size: 24px;
  font-weight: 700;
}
.events #events_view .staticimg img {
  max-width: 100%;
  margin-top: 10px;
}
.events .filter-tickets {
  background: #EBEBEB;
  padding-top: 10px;
  min-height: 500px;
}
.events .filter-tickets h5 {
  font-weight: bold;
  font-family: Arial;
}
.events #no-tickets-available2 {
  display: none;
  text-align: center;
  margin: 50px auto;
}
.events .category-search-results {
  /* END POPULAR_EVENTS_SECTION */
}
.events .category-search-results .popular-events-section {
  /* since the animation is applied to the .mobile-overlay element it needs to be added
  after the .mobile-overlay styles to over-ride them */
  /* END FILTERS / SIDEBAR */
  /* SEARCH RESULTS SECTION */
  /* end events-search-results */
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section {
    padding: 0 0 40px 0;
  }
}
.events .category-search-results .popular-events-section .go-back-button-container {
  padding-left: 15px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .mobile-overlay {
    width: 100%;
    height: calc( 100% - 144px );
    margin-top: 200px;
    margin-left: -150%;
    z-index: 10000;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: margin-left 0.5s ease-out;
    -moz-transition: margin-left 0.5s ease-out;
    -o-transition: margin-left 0.5s ease-out;
    transition: margin-left 0.5s ease-out;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-animation-in {
  margin-left: 0;
  -webkit-transition: margin-left 0.5s ease-out;
  -moz-transition: margin-left 0.5s ease-out;
  -o-transition: margin-left 0.5s ease-out;
  transition: margin-left 0.5s ease-out;
}
.events .category-search-results .popular-events-section .search-results-total-container {
  width: 100%;
  font-family: Arial;
  font-weight: 900;
}
.events .category-search-results .popular-events-section .search-results-total-container h3 {
  width: 70%;
  padding-left: 30px;
  display: inline-block;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .search-results-total-container h3 {
    width: 100%;
    margin-top: 70px;
  }
  .events .category-search-results .popular-events-section .search-results-total-container h3 .search-results-total {
    float: right;
  }
  .events .category-search-results .popular-events-section .search-results-total-container h3 .search-results-terms {
    float: left;
    font-size: 18px;
    line-height: 26px;
    padding-right: 5px;
  }
}
.events .category-search-results .popular-events-section .search-results-total-container .search-links {
  width: 29%;
  display: inline-block;
  font-family: Arial;
  font-weight: 300;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .search-results-total-container .search-links {
    width: 100%;
    padding-left: 30px;
    padding-bottom: 20px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter {
  /* end .filters */
  /* since the animation is applied to the .filters element it needs to be added again
  after the .filters styles to over-ride them */
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter {
    padding: 0;
    margin-top: -200px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header {
  width: 100%;
  height: 50px;
  padding: 0 0 0 18px;
  font-size: 14px;
  font-family: Arial;
  background-color: #595959;
  color: #FFFFFF;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  cursor: initial;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header span {
  padding-left: 12px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header i {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header .mobile-sidebar-status-icon {
  display: none;
  transition: all 0.5s ease-out;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header {
    width: 100%;
    cursor: pointer;
  }
  .events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header .rotate-icon-forward {
    transform: rotate(180deg);
  }
  .events .category-search-results .popular-events-section .events-sidebar-filter .sidebar-header .mobile-sidebar-status-icon {
    display: inline-block;
    margin-left: 67%;
    padding: 0;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters {
  /* END section.filter */
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters {
    float: left;
  }
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters {
    margin-left: -150%;
    position: absolute;
    z-index: 10000;
    -webkit-transition: margin-left 0.5s ease-out;
    -moz-transition: margin-left 0.5s ease-out;
    -o-transition: margin-left 0.5s ease-out;
    transition: margin-left 0.5s ease-out;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters h2 {
  width: 100%;
  border: none;
  padding: 1.25em 1.2em;
  font-family: Arial;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters .date {
  padding-bottom: 6px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.location .events-container .radio-container {
  margin-bottom: 6px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter {
  padding: 0 1em;
  border-bottom: 1px solid #D9D9D9;
  /* end events-container */
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter {
    padding-bottom: 20px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter:last-of-type {
  border-bottom: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container {
  /* end radio-container */
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container {
  padding: 0;
  /* end location-filter-outer-container */
  /* end daterange */
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio {
  margin-bottom: 0.3em;
  margin-top: 0;
  float: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio label {
  padding: 0;
  margin-bottom: 0;
  padding-left: 4px;
  font-weight: normal;
  font-family: Arial;
  display: inline-block;
  position: relative;
  width: 85%;
  cursor: pointer;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio .near-me {
  width: 85%;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio input[type="radio"] {
  position: relative;
  margin: 0;
  opacity: 0;
  width: 0;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio i.endor-edit {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  float: right;
  cursor: pointer;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio i.endor-edit {
    font-size: 22px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location {
  display: block;
  border-bottom: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .custom-radio-button {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-top: 1px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .custom-radio-button {
    width: 18px;
    height: 18px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .custom-radio-button-checked {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #000000;
  position: absolute;
  margin: 2px;
  display: none;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .custom-radio-button-checked {
    width: 10px;
    height: 10px;
    margin: 3px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio-reset-button {
  display: inline-block;
  width: 16px;
  float: right;
  line-height: 16px;
  font-size: 16px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .radio-reset-button i {
  background-color: transparent;
  border-radius: 50%;
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container {
  display: none;
  font-family: Arial;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container .moreButton {
  float: none;
  text-align: left;
  margin: 0 0 18px 0;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container .moreButton a {
  font-size: 12px;
  border: none;
  background-color: transparent;
  color: #000000;
  text-decoration: underline;
  border-radius: 0;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container .moreButton a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container .moreButton {
    margin: 18px 0;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .view-more-button-container .hidden-events-total {
  display: inline-block;
  padding-left: 6px;
  text-decoration: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container {
  display: block;
  width: 100%;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-inner-container,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container {
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  color: #000000;
  font-size: 12px;
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  outline: none;
  overflow: hidden;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container {
  max-height: 0;
  -webkit-transition: max-height .2s ease-in-out;
  -moz-transition: max-height .2s ease-in-out;
  -o-transition: max-height .2s ease-in-out;
  transition: max-height .2s ease-in-out;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container a {
  text-decoration: underline;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container input[type="text"] {
  padding-left: 12px;
  outline: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 12px;
  width: 100%;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-input {
  width: 89%;
  height: 25px;
  border: 1px solid #C4C2C2;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-input {
    margin-bottom: 15px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #000000;
  border: 1px solid #000000;
  border-left: none;
  cursor: pointer;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a {
  width: 100%;
  height: 25px;
  margin: 0;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i.endorIcon, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container .sidebar-location-filter-search-icon a i {
  font-size: 10px;
  font-weight: 600;
  margin-left: 0;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show {
  max-height: 70px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show {
    max-height: 120px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .current-location {
  text-decoration: none;
  padding-top: 15px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .current-location i {
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .current-location .my-location-text {
  text-decoration: underline;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-input {
  float: left;
  display: inline-block;
  width: 90%;
  height: 25px;
  border: 1px solid #C4C2C2;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-input {
    margin-bottom: 15px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #EBEBEB;
  border: 1px solid #C4C2C2;
  border-left: none;
  cursor: pointer;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon a {
  margin: 0;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i.endorIcon, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .location-filter-outer-container .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i {
  font-weight: 700;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange {
  color: #000000;
  font-family: Arial;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange {
    font-size: 16px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections {
  width: 100%;
  position: relative;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list {
  border-radius: 0;
  box-shadow: 0 0 0 0;
  border: none;
  max-width: 100%;
  transition: none;
  left: 0;
  background: transparent;
  width: 100% !important;
  padding-bottom: 10px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-list-item,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-list-item {
  color: #333333;
  background-color: transparent;
  border-bottom: none;
  font-size: 1.3rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-list-item:hover,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-list-item:hover {
  font-size: 1.4rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-list-item .dr-item-aside,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-list-item .dr-item-aside {
  font-size: 1.2rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-days-of-week-list,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-days-of-week-list {
  background-color: transparent;
  border: none;
  text-transform: capitalize;
  font-size: 10px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-days-of-week-list .dr-day-of-week,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-days-of-week-list .dr-day-of-week {
  font-size: 1.1rem;
  font-weight: 600;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-month-switcher,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-year-switcher,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-month-switcher,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-year-switcher {
  border: none;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-month-switcher span,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-year-switcher span,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-month-switcher span,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-year-switcher span {
  font-size: 12px;
  font-weight: 600;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-current,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-current {
  background-color: transparent !important;
  color: #FFFFFF !important;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-fade,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-fade {
  color: #767676;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-fade:hover,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-fade:hover {
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list {
  font-size: 1.2rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-maybe,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-maybe {
  background-color: transparent !important;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-day,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-day {
  padding: 0.9rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-day.dr-hover {
  background-color: #767676 !important;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover:not(.dr-current),
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-day.dr-hover:not(.dr-current) {
  background-color: #767676 !important;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-before,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-day.dr-hover-before {
  border-left: 2px solid #333333 !important;
  border-radius: 0;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-after,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-day.dr-hover-after {
  border-right: 2px solid #333333 !important;
  border-radius: 0;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-start,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-start {
  border-left: 2px solid #767676 !important;
  background: #000000 !important;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-end,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-end {
  border-right: 2px solid #767676 !important;
  background: #000000 !important;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-day-list .dr-selected,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-day-list .dr-selected {
  background-color: #767676;
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher {
  border: none;
  /* had to over ride plugin styles because the
  minifier wrecks the calc() rule when a + operator is used  */
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher {
  border-radius: 0;
  height: 1.7rem;
  justify-content: flex-start;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher,
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher {
    font-size: 16px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher i {
  padding: 0.9rem;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right::before,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left::before,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher i.dr-right::before,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher i.dr-left::before {
  top: 50%;
  background-color: #767676;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right::after,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left::after,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher i.dr-right::after,
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-selections .dr-preset-list .dr-range-switcher .dr-switcher i.dr-left::after {
  top: 50%;
  margin-top: 20%;
  background-color: #767676;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input {
  border: none;
  border-radius: 0;
  background-color: transparent;
  height: 40px;
  outline: none;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates {
  justify-content: flex-start;
  min-width: calc(100% - 15px);
  padding: 0 2.4rem 0 0;
  height: 30px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates {
    min-width: calc(100% - 22px);
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .date-range-icon {
  margin: 0 35px 0 5px;
  font-size: 24px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .date-range-icon i {
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-date {
  font-size: 1.3rem;
  text-decoration: underline;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-date {
    font-size: 16px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-date.dr-active, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-date:hover, .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-date:focus {
  color: #000000;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-dates .dr-dates-dash {
  margin-bottom: 4px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-presets {
  border-left: none;
  height: 30px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-presets {
    font-size: 16px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-presets a {
  padding: 1px;
}
.events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-presets i {
  color: #000000;
  background: transparent;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-indent: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-sidebar-filter .filters section.filter .events-container .radio-container .daterange .dr-input .dr-presets i {
    font-size: 22px;
    text-indent: 8px;
  }
}
.events .category-search-results .popular-events-section .events-sidebar-filter .events-sidebar-animation-in {
  margin-left: 0;
  -webkit-transition: margin-left 0.5s ease-out;
  -moz-transition: margin-left 0.5s ease-out;
  -o-transition: margin-left 0.5s ease-out;
  transition: margin-left 0.5s ease-out;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results {
    padding: 0;
  }
}
.events .category-search-results .popular-events-section .events-search-results .events-filter-heading {
  font-size: 12px;
  margin: 0;
  font-weight: 700;
  display: inline-block;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-family: Arial;
  /* this is the input for pagination */
  /* end events-search-results-select */
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .pagination-container {
  width: 100px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .pagination-container span {
  height: 20px;
  width: 20px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .pagination-container span a {
  width: 20px;
  height: 20px;
  padding: 4px;
  background-color: #D8D8D8;
  font-size: 10px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .pagination-container span a:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .pagination-container p {
  font-weight: bold;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container input {
  width: 30px;
  padding-left: 3px;
  /* no blue outline on focus */
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container input:focus {
  outline: none;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select {
  border: none;
  width: 225px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select {
    display: none;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form {
  width: 225px;
  display: flex;
  flex-wrap: nowrap;
  min-height: 20px;
  overflow: hidden;
  align-items: center;
  padding: 10px 5px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form label {
  font-size: 12px;
  padding: 0 6px 0 0;
  margin: 0;
  font-weight: 700;
  width: 75px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form label {
    padding: 0;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form .custom-select {
  padding: 0 0 0 5px;
  border: 2px solid #404040;
  color: #40464D;
  height: 32px !important;
  width: 70% !important;
  -webkit-appearance: none !important;
  appearance: none;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  left: 70px;
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form .endor-angle-right, .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form .mobile-nav .menu li a:after, .mobile-nav .menu li .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form a:after {
  position: absolute;
  z-index: -10;
  right: 12px;
  font-size: 22px;
  background-color: transparent;
  border: none;
  transform: rotate(90deg);
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form .endor-angle-right:after, .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form .mobile-nav .menu li a:after, .mobile-nav .menu li .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .events-search-results-select .select-container > form a:after {
  color: #000000;
  font-weight: 600;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 200px;
  height: 32px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form {
    display: none;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form p {
  margin-bottom: 0;
  width: 100%;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form a {
  height: 20px;
  line-height: 20px;
  width: auto;
  padding: 10px;
  background-color: #CCCCCC;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form a:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination-view > form .search-results-active {
  color: #FFFFFF;
  background-color: #000000;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 190px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination input[type="text"] {
  height: 32px;
  border: 2px solid #404040;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination {
    width: 100%;
    float: none;
  }
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination label {
    display: none;
  }
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination input[type="text"] {
    height: 32px;
    width: 40px;
    font-size: 18px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: auto;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form {
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 10px;
    width: 100%;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  width: 75px;
  height: 32px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-container {
    width: 50%;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-container p {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-container p {
    font-size: 18px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100px;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container {
  width: 32px;
  height: 32px;
  background-color: #404040;
  margin-left: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container:hover {
  background-color: #000000;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container {
    margin-left: 16px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container a.disableLink {
  background-color: #CCCCCC;
  color: #FFFFFF;
  cursor: default;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container i {
  font-size: 24px;
  color: #FFFFFF;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .pagination-sort-container .search-results-pagination .events-pagination-form .pagination-controls .pagination-icon-container i {
    font-size: 28px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results {
  padding: 0;
  list-style-type: none;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item {
  min-height: 150px;
  padding: 15px 25px;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item:nth-child(odd) {
  background-color: #F6F6F6;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item {
    margin-bottom: 20px;
    padding: 0;
  }
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item:nth-child(even) {
    background-color: #F6F6F6;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container {
  width: 100%;
  height: auto;
  max-height: 200px;
  min-height: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container {
    width: 100%;
    min-height: 90px;
    max-height: 500px;
    align-items: flex-start;
    padding: 0;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info {
  width: 100%;
  min-height: 120px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info {
    width: 100%;
    padding-left: 0;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-height: 120px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container {
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic {
  height: 80px;
  width: 80px;
  max-width: 80px;
  min-width: 80px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  border: 2px solid #404040;
  border-radius: 8px;
  font-family: Arial;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 60px;
    border: none;
    border-radius: 0;
    background-color: #EBEBEB;
    padding: 0 30px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic span {
  width: 100%;
  text-align: center;
  line-height: 15px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic span {
    text-align: left;
    width: auto;
    font-size: 24px;
    font-family: Arial;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-month {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 700;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-month {
    font-size: 24px;
    font-family: Arial;
    margin-top: 0;
    margin-right: 10px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-day {
  font-weight: 500;
  font-size: 35px;
  margin: 8px 0;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-day {
    font-size: 24px;
    font-family: Arial;
    margin: 0;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-time {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-time {
    display: none;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy {
  width: 78%;
  padding: 0 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy {
    left: 0;
    position: relative;
    transform: none;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    min-height: 90px;
    width: 100%;
    padding: 15px 0 15px 30px;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-copy-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-copy-container {
    width: 80%;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy h5 {
  margin: 0;
  font-size: 18px;
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy h5 {
    width: 100%;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy p {
  margin-bottom: 0;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-venue {
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-venue {
    width: 100%;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-city,
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-state {
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-city,
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-state {
    width: auto;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .venue-address-format-city:after {
  content: ",";
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile {
  display: none;
  border: none;
  background-color: transparent;
  padding: 0;
  font-family: Arial;
  font-size: 48px !important;
  font-weight: 400;
  width: 20%;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile:hover {
  background-color: transparent;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile i {
  margin-left: 40%;
  color: #000000;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile {
    display: flex;
    align-items: flex-end;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container {
  font-family: Arial;
  width: auto;
  height: 40px;
  align-content: center;
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container {
    display: none;
  }
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container .popular-events-submit-button,
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container #popular-events-submit-button {
  font-size: 16px;
  border: 2px solid #1F1F1F;
  color: #1F1F1F;
  padding: 6px 25px;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container .popular-events-submit-button:hover,
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container #popular-events-submit-button:hover {
  background-color: #1F1F1F;
  color: #FFFFFF;
}
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container .popular-events-submit-button:focus,
.events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container #popular-events-submit-button:focus {
  background-color: #1F1F1F;
  color: #FFFFFF;
  outline: 2px dotted #757575;
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container {
    width: 15%;
  }
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container .popular-events-submit-button,
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container #popular-events-submit-button {
    border: none;
    height: 90px;
    font-size: 46px;
    background-color: transparent;
  }
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container .popular-events-submit-button:hover,
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .event-submit-container #popular-events-submit-button:hover {
    background-color: transparent;
  }
}
@media only screen and (max-width: 667px) {
  .events .category-search-results .popular-events-section .events-search-results .popular-events-list-results .events-list-item .event-info-container .event-info .event-info-inner-container .submit-desktop {
    display: none;
  }
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display {
  width: 100%;
  display: none;
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display .failover-image-container {
  width: 240px;
  height: 240px;
  background-color: #EBEBEB;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display .failover-image-container img {
  width: 50%;
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display p, .events .category-search-results .popular-events-section .events-search-results .no-results-display h1 {
  width: 100%;
  text-align: center;
  font-family: Arial;
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display p {
  font-size: 18px;
}
.events .category-search-results .popular-events-section .events-search-results .no-results-display h1 {
  font-size: 24px;
  font-weight: 700;
}
.events .hero-image .row {
  margin-left: 0;
  margin-right: 0;
}
.events .hero-image .icon-search-filter-section {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: open_sansbold;
  font-size: 18px;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .events .hero-image .icon-search-filter-section {
    font-size: 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .events .hero-image .icon-search-filter-section {
    font-size: 14px;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid {
  padding-left: 0;
  padding-right: 0;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-filter-inner {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results {
  flex-basis: 100%;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results {
    height: auto;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results ul {
    display: block;
  }
  .events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results ul li {
    margin: 0 5px;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .icon-search-primary-category {
  height: 72px;
  margin: 0 90px;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .icon-search-primary-category {
    margin: 0;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .nav-tabs {
  border-bottom: none;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .nav-tabs li {
  width: 20%;
  cursor: pointer;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .nav-tabs li {
    width: 20%;
    word-break: break-word;
    margin: 0;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .tab-content > .tab-pane {
  display: none;
  width: 100%;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .icon-search-results .tab-content > .active {
  display: flex;
  width: 100%;
  flex-basis: 100%;
  align-items: center;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .active {
  background-color: #1F1F1F;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-grid .active .icon-search-icon-label {
  color: #FFFFFF;
}
.events .hero-image .icon-search-filter-section .icon-search-icon-container {
  height: 200px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container {
    height: 150px;
  }
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container {
    height: 72px;
    flex-direction: row;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-container img {
  height: 95px;
  width: 95px;
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container img {
    height: 65px;
    width: 65px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container img {
    height: 65px;
    width: 65px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container img {
    height: 65px;
    width: 65px;
  }
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container img {
    height: 35px;
    width: 35px;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-icon-container .icon-search-icon-label {
  display: block;
  width: 100%;
  text-align: center;
  font-family: inherit;
  color: #404040;
  margin-top: 12px;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-icon-container .icon-search-icon-label {
    display: none;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #1F1F1F;
  padding: 15px;
  margin-bottom: 50px;
  width: 100%;
  flex-basis: 100%;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-left,
.events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-right {
  display: none;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-left,
  .events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-right {
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
  }
  .events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-left {
    display: none;
    background: linear-gradient(to right, #1f1f1f 5%, transparent);
  }
  .events .hero-image .icon-search-filter-section .icon-search-results-container .mobile-border-gradient-right {
    right: 0;
    background: linear-gradient(to left, #1f1f1f 5%, transparent);
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-basis: 100%;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category {
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row {
  margin: 10px 2%;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-height: 100%;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row {
    flex-wrap: nowrap;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row li {
  margin-bottom: 20px;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item {
  width: 16%;
  margin: 40px 20px 40px 0;
  border-right: 1px solid #5D5D5D;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item {
    width: auto;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item:last-of-type {
  border-right: none;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item p {
  color: #FFFFFF;
  font-size: 18px;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item p {
    font-size: 16px;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-secondary-category .icon-search-results-row .icon-search-secondary-category-item .icon-search-tertiary-category-item a {
  color: #FFFFFF;
  font-family: open_sansregular;
  font-size: 16px;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 40px 0;
  max-width: 90%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row {
    overflow-x: hidden;
    width: 100%;
    min-height: 230px;
    min-width: 100%;
    align-content: flex-start;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row .icon-search-secondary-category-item {
  width: auto;
  border-right: 0;
  margin-bottom: 0;
  margin: 0 15px;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row .icon-search-secondary-category-item {
    width: 41%;
    padding: 0;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row .icon-search-secondary-category-item .icon-search-results-column-header {
  margin-bottom: 10px;
  padding-right: 15px;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row .search-results-short-list {
  width: auto;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .icon-search-results-row .search-results-short-list {
    width: 100%;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .search-results-short-list-row {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .hero-image .icon-search-filter-section .icon-search-results-container .events-no-children .search-results-short-list-row {
    flex-wrap: wrap;
  }
}
.events .hero-image .icon-search-filter-section .icon-search-results-container ul {
  padding: 0;
  list-style: none;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container a {
  text-decoration: underline;
  margin-bottom: 20px;
  cursor: pointer;
}
.events .hero-image .icon-search-filter-section .icon-search-results-container .icon-search-results-column-header {
  font-weight: 700;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: pre-line;
  margin-bottom: 24px;
  padding-right: 15px;
}
.events .popular-events-section {
  padding: 0;
}
.events .popular-events-section #popular-events .location-filter-outer-container {
  vertical-align: middle;
  margin-bottom: 10px;
  width: auto;
  position: relative;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section #popular-events .location-filter-outer-container {
    margin-top: 20px;
  }
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-inner-container {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-inner-container span {
  text-decoration: underline;
  color: #000000;
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-inner-container .endor-map_pin_2 {
  position: static;
  border: none;
  background: transparent;
  color: #000000;
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-dropdown-container {
  border-radius: 8px;
  overflow: visible;
  width: 300px;
  height: 90px;
  margin: 0;
  padding: 18px 0 0 0;
  box-shadow: 0 1px 4px #BEBEBE;
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-dropdown-container:before {
  content: '';
  display: block;
  position: absolute;
  top: -20px;
  left: 48%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent #BEBEBE transparent;
  background: transparent;
  min-height: 12px;
  padding: 0;
  outline: 0;
}
.events .popular-events-section #popular-events .location-filter-outer-container .location-filter-dropdown-container:after {
  content: '';
  display: block;
  position: absolute;
  top: -18.5px;
  left: 48%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent #FFFFFF transparent;
  background: transparent;
  min-height: 12px;
  padding: 0;
  outline: 0;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section #popular-events .location-filter-outer-container .location-filter-dropdown-container {
    width: 100%;
    top: 40px;
    height: 100px;
    z-index: 10000;
  }
}
.events .popular-events-section #popular-events .filter-dropdown-show {
  display: block;
  width: 300px;
  top: 40px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section #popular-events .filter-dropdown-show a {
    padding-top: 10px;
  }
}
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container {
  height: 25px;
  margin-left: 12px;
}
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-input {
  float: left;
  display: inline-block;
  width: 88%;
  margin-bottom: 12px;
  padding-left: 6px;
  height: 25px;
  border: 1px solid #C4C2C2;
  outline: none;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-input {
    margin-bottom: 15px;
  }
}
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #000000;
  border: 1px solid #000000;
  border-left: none;
  cursor: pointer;
}
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon a {
  margin: 0;
}
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i.endorIcon, .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-normal i, .endor-form .pw-match-icon.pw-normal .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-strong i, .endor-form .pw-match-icon.pw-strong .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-match-icon.pw-weak i, .endor-form .pw-match-icon.pw-weak .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-normal i,
.endor-form .pw-strength-icon.pw-normal .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-strong i,
.endor-form .pw-strength-icon.pw-strong .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .pw-strength-icon.pw-weak i,
.endor-form .pw-strength-icon.pw-weak .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i, .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .field-error .pw-match-icon.input-icon i, .endor-form .field-error .pw-match-icon.input-icon .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i,
.events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon .endor-form .field-error .pw-strength-icon.input-icon i,
.endor-form .field-error .pw-strength-icon.input-icon .events .popular-events-section #popular-events .filter-dropdown-show .location-filter-dropdown-search-container .location-filter-search-icon i {
  font-weight: 700;
  color: #FFFFFF;
}
.events .popular-events-section #popular-events .filter-dropdown-show a {
  text-decoration: none;
}
.events .popular-events-section #popular-events .filter-dropdown-show a span {
  text-decoration: underline;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section {
    padding: 0 15px;
  }
  .events .popular-events-section #popular-events,
  .events .popular-events-section #popular-venues {
    padding-left: 0;
    padding-right: 0;
  }
}
.events .popular-events-section .tab-bottom-border {
  margin-top: 0;
  margin-bottom: 20px;
  border: 0;
  border-top: 3px solid #1F1F1F;
  display: none;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-bottom-border {
    display: block;
  }
}
.events .popular-events-section .mobile-layout {
  display: none;
  border-bottom: none;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .mobile-layout {
    display: block;
  }
}
.events .popular-events-section .mobile-layout li {
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
.events .popular-events-section .mobile-layout li a {
  border-radius: 0;
  color: #D8D8D8;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}
.events .popular-events-section .mobile-layout .active a {
  background-color: #1F1F1F;
  border: 1px solid #1F1F1F;
  box-sizing: border-box;
  color: #FFFFFF;
}
.events .popular-events-section .tab-content > .tab-pane {
  display: block;
  visibility: visible;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane {
    display: none;
    visibility: hidden;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list {
  list-style: none;
  padding: 0;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item {
  min-height: 150px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item:nth-child(odd) {
  background-color: #F6F6F6;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item {
    margin-bottom: 20px;
  }
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item:nth-child(even) {
    background-color: #F6F6F6;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container {
  width: 100%;
  min-height: 150px;
  overflow: hidden;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container {
    width: 100%;
    min-height: 90px;
    align-items: flex-start;
    padding: 0;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info {
  width: 100%;
  padding-left: 25px;
  min-height: 120px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info {
    width: 100%;
    padding-left: 0;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-height: 120px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic {
  height: 80px;
  width: 80px;
  max-width: 80px;
  min-width: 80px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  flex-basis: 80px;
  border: 2px solid #404040;
  border-radius: 8px;
  font-family: Arial;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic {
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
    border: none;
    border-radius: 0;
    background-color: #EBEBEB;
    padding: 0 30px;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic span {
  width: 100%;
  text-align: center;
  line-height: 15px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic span {
    text-align: left;
    display: inline-block;
    width: auto;
    font-size: 24px;
    font-family: Arial;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-month {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 700;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-month {
    font-size: 24px;
    font-family: Arial;
    margin-top: 0;
    margin-right: 10px;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-day {
  font-weight: 500;
  font-size: 35px;
  margin: 8px 0;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-day {
    font-size: 24px;
    font-family: Arial;
    margin: 0;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-time {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-date-infographic .event-time {
    display: none;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy {
  width: 100%;
  padding-left: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy {
    left: 0;
    position: relative;
    transform: none;
    display: inline-flex;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    min-height: 90px;
    width: 100%;
    padding: 0 30px;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-copy-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 75%;
  padding-right: 15px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-copy-container {
    padding: 15px 0;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy h5 {
  margin: 0;
  font-size: 18px;
  width: 75%;
  line-height: 21px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy h5 {
    width: 100%;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy span, .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy p {
  width: auto;
  margin-bottom: 0;
  line-height: 21px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-venue {
  width: 100%;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-city,
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .popular-event-state {
    width: auto;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .venue-address-format-city:after {
  content: ",";
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container {
  font-family: Arial;
  padding-right: 25px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container {
    height: 90px;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container .popular-events-submit-button,
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container #popular-events-submit-button {
  font-size: 16px;
  border: 2px solid #1F1F1F;
  color: #1F1F1F;
  padding: 10px 25px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container .popular-events-submit-button:hover,
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container #popular-events-submit-button:hover {
  background-color: #1F1F1F;
  color: #FFFFFF;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container .popular-events-submit-button:focus,
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container #popular-events-submit-button:focus {
  background-color: #1F1F1F;
  color: #FFFFFF;
  outline: 2px dotted #757575;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container {
    display: inline-block;
    width: 15%;
  }
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container .popular-events-submit-button {
    border: none;
    height: 90px;
    font-size: 46px;
    background-color: transparent;
  }
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .event-submit-container .popular-events-submit-button:hover {
    background-color: transparent;
  }
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-desktop {
    display: none;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile {
  display: none;
  border: none;
  background-color: transparent;
  padding: 0;
  font-family: Arial;
  font-size: 48px;
  font-weight: 400;
  width: 100%;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile:hover {
  background-color: transparent;
}
.events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile i {
  margin-left: 40%;
  color: #000000;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane .popular-events-list .events-list-item .event-info-container .event-info .event-info-inner-container .event-info-copy .submit-mobile {
    display: flex;
    align-items: flex-end;
  }
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section {
  background-color: #F6F6F6;
  height: auto;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list {
  list-style-type: none;
  padding: 10px 0 0 0;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list a {
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin: 10px 0 0 25px;
  font-size: 16px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list hr {
  border-top: 1px solid #000000;
  width: 100%;
  margin-bottom: 20px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list li:last-of-type {
  padding-bottom: 25px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list li:last-of-type hr {
  display: none;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list span {
  line-height: 21px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list .popular-venues-venue {
  display: block;
  cursor: pointer;
  line-height: 21px;
}
.events .popular-events-section .tab-content > .tab-pane .popular-venues-section .popular-venues-list .popular-venues-city {
  padding-left: 25px;
}
@media only screen and (max-width: 667px) {
  .events .popular-events-section .tab-content > .tab-pane.active {
    display: block;
    visibility: visible;
  }
}

.legend-info-container {
  border: 1px solid #999999;
  padding: 16px;
  margin: 0px auto;
}

.section-details, .description-details1, .description-details2, .section-name, .description-name {
  display: table-cell;
  line-height: 20px;
}

.section-name, .description-name {
  font-size: 12px;
  color: #000000;
  font-family: "Arial";
  font-weight: "normal";
}

.section-details, .description-details1 {
  font-size: 18px;
  color: #000000;
  font-family: "Arial";
}

.description-details2 {
  font-size: 14px;
  color: #000000;
  font-family: "Arial";
}

.section-name, .section-details {
  width: 150px;
}

.section-description {
  margin-bottom: 20px;
  list-style-type: none;
  color: #000000;
  font-family: "Arial";
}

.event-header {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  font-family: "Arial";
}

.description-extra-details {
  font-size: 14px;
  color: #000000;
  font-family: "Arial";
}

.description-extra-details-custom {
  font-size: 14px;
  color: #000000;
  font-family: "Arial";
  margin-bottom: 8px;
  display: block;
}

div#section-preview-container {
  background: transparent !important;
  padding-right: 0 !important;
}
div#section-preview-container .modal-dialog {
  position: relative;
  top: 100px;
}

img#section-preview-big {
  left: 0 !important;
  top: 0 !important;
  display: block !important;
}

.modal-header #closePreview {
  background-image: url(https://www.ticketsolutions.com/App_Themes/Ziyak/images/remove.png);
  -ms-background-repeat: no-repeat;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
}

span.customSelect.custom-select.eventsTicketQuantity.customSelectFocus {
  outline: 1px dotted #757575;
  outline-width: 2px;
}

.ticketAction button.buyLink:focus {
  outline: 1px dotted #757575;
  outline-width: 2px;
  background: #000000;
  color: #FFFFFF;
}

.go-back-button-container .go-back-button:focus {
  outline: 1px dotted #757575;
  outline-width: 2px;
}

.hero-image .hero-search-input-container .hero-search-icon a:focus {
  display: inline-block;
  width: 100%;
  height: inherit;
  outline: 2px dotted #F6F6F6 !important;
  outline-width: 2px;
}

.icon-search-primary-category li.primary-category:focus {
  outline: 1px dotted #757575;
  outline-width: 2px;
}

.icon-search-secondary-category a.icon-search-results-item-trigger:focus {
  outline: 1px dotted #757575;
}

.events-search-results .search-links {
  position: absolute;
  top: -30px;
  right: 25px;
}
.events-search-results .search-links a:focus {
  outline: 2px dotted #757575 !important;
}

.events.filter .events-container .endorIcon.endor-edit.location-edit-icon:focus, .events.filter .events-container .profile-options li.endor-edit.location-edit-icon:focus:before, .profile-options .events.filter .events-container li.endor-edit.location-edit-icon:focus:before, .events.filter .events-container .endor-form .pw-match-icon.pw-normal i.endor-edit.location-edit-icon:focus, .endor-form .pw-match-icon.pw-normal .events.filter .events-container i.endor-edit.location-edit-icon:focus, .events.filter .events-container .endor-form .pw-match-icon.pw-strong i.endor-edit.location-edit-icon:focus, .endor-form .pw-match-icon.pw-strong .events.filter .events-container i.endor-edit.location-edit-icon:focus, .events.filter .events-container .endor-form .pw-match-icon.pw-weak i.endor-edit.location-edit-icon:focus, .endor-form .pw-match-icon.pw-weak .events.filter .events-container i.endor-edit.location-edit-icon:focus,
.events.filter .events-container .endor-form .pw-strength-icon.pw-normal i.endor-edit.location-edit-icon:focus,
.endor-form .pw-strength-icon.pw-normal .events.filter .events-container i.endor-edit.location-edit-icon:focus,
.events.filter .events-container .endor-form .pw-strength-icon.pw-strong i.endor-edit.location-edit-icon:focus,
.endor-form .pw-strength-icon.pw-strong .events.filter .events-container i.endor-edit.location-edit-icon:focus,
.events.filter .events-container .endor-form .pw-strength-icon.pw-weak i.endor-edit.location-edit-icon:focus,
.endor-form .pw-strength-icon.pw-weak .events.filter .events-container i.endor-edit.location-edit-icon:focus, .events.filter .events-container .endor-form .field-error .pw-match-icon.input-icon i.endor-edit.location-edit-icon:focus, .endor-form .field-error .pw-match-icon.input-icon .events.filter .events-container i.endor-edit.location-edit-icon:focus,
.events.filter .events-container .endor-form .field-error .pw-strength-icon.input-icon i.endor-edit.location-edit-icon:focus,
.endor-form .field-error .pw-strength-icon.input-icon .events.filter .events-container i.endor-edit.location-edit-icon:focus, .events.filter .events-container .mobile-nav .menu li a.endor-edit.location-edit-icon:focus:after, .mobile-nav .menu li .events.filter .events-container a.endor-edit.location-edit-icon:focus:after {
  outline: 1px dotted #757575;
}
.events.filter .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container input.sidebar-location-filter-search-input:focus {
  outline: 0;
  border: 1px solid #000000 !important;
}
.events.filter .sidebar-location-filter-dropdown-container .sidebar-location-filter-dropdown-search-container div.sidebar-location-filter-search-icon a.location-submit-trigger:focus {
  outline: 1px dotted #e6e6e6;
  outline-offset: -2px;
}
.events.filter .sidebar-location-filter-dropdown-container .current-location:focus {
  outline: 1px dotted #757575;
  outline-offset: -1px;
}
.events.filter .custom-radio-button:focus {
  outline: 1px dotted #757575;
}
.events.filter .radio-reset-button:focus {
  outline: 1px dotted #757575;
}
.events.filter .dr-date.dr-date-start:focus {
  outline: 1px dotted #757575;
  outline-offset: -2px;
}
.events.filter .dr-date.dr-date-end:focus {
  outline: 1px dotted #757575;
  outline-offset: -2px;
}
.events.filter .date-range-picker-trigger:focus {
  outline: 0;
}
.events.filter .date-range-picker-trigger:focus i.endorIcon.endor-datepicker_2, .events.filter .date-range-picker-trigger:focus .endor-form .pw-match-icon.pw-normal i.endor-datepicker_2, .endor-form .pw-match-icon.pw-normal .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2, .events.filter .date-range-picker-trigger:focus .endor-form .pw-match-icon.pw-strong i.endor-datepicker_2, .endor-form .pw-match-icon.pw-strong .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2, .events.filter .date-range-picker-trigger:focus .endor-form .pw-match-icon.pw-weak i.endor-datepicker_2, .endor-form .pw-match-icon.pw-weak .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2,
.events.filter .date-range-picker-trigger:focus .endor-form .pw-strength-icon.pw-normal i.endor-datepicker_2,
.endor-form .pw-strength-icon.pw-normal .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2,
.events.filter .date-range-picker-trigger:focus .endor-form .pw-strength-icon.pw-strong i.endor-datepicker_2,
.endor-form .pw-strength-icon.pw-strong .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2,
.events.filter .date-range-picker-trigger:focus .endor-form .pw-strength-icon.pw-weak i.endor-datepicker_2,
.endor-form .pw-strength-icon.pw-weak .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2, .events.filter .date-range-picker-trigger:focus .endor-form .field-error .pw-match-icon.input-icon i.endor-datepicker_2, .endor-form .field-error .pw-match-icon.input-icon .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2,
.events.filter .date-range-picker-trigger:focus .endor-form .field-error .pw-strength-icon.input-icon i.endor-datepicker_2,
.endor-form .field-error .pw-strength-icon.input-icon .events.filter .date-range-picker-trigger:focus i.endor-datepicker_2 {
  outline: 1px dotted #757575;
}
.events.filter .dr-selections ul.dr-preset-list li.dr-list-item:focus {
  outline: 1px dotted #757575;
  outline-offset: -1px;
}

.events-filter-heading.search-results-pagination-view #visible-results:focus {
  outline: 2px dotted #757575;
}
.events-filter-heading.search-results-pagination-view #total-results:focus {
  outline: 2px dotted #757575;
}

.event-info .event-submit-container #popular-events-submit-button:focus {
  outline: 2px dotted #757575 !important;
}

.events-filter-heading.search-results-pagination input:focus {
  outline: 1px solid #000000 !important;
}
.events-filter-heading.search-results-pagination .pagination-controls .pagination-icon-container a:focus {
  padding: 0px 12px;
  outline: 2px dotted #757575;
}

#popular-events #location-filter-trigger:focus {
  outline: 0;
}
#popular-events #location-filter-trigger:focus .location-filter-inner-container.select-container {
  outline: 1px dotted #000000 !important;
  outline-offset: -5px;
}

#popular-venues .popular-venues-list-item .popular-venues-venue:focus {
  outline: 1px dotted #000000 !important;
}

.event-date-infographicNoBorder {
  border: 0 !important;
}

@media only screen and (min-width: 667px) and (max-width: 768px) {
  .navbar-toggle {
    margin-top: 10px;
  }
}
.navbar-toggle .icon-bar {
  background-color: #999999;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 6px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .stuckNav .navbar-toggle {
    top: 3px;
  }
}

.mobile-profile-meta {
  margin-bottom: 10px;
}
.mobile-profile-meta h4,
.mobile-profile-meta h5 {
  margin: 0;
  padding: 0;
}
.mobile-profile-meta h4 {
  font-size: 12px;
  font-weight: 300;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #999999;
  margin-bottom: 5px;
}
.mobile-profile-meta h5 {
  font-size: 32px;
  font-weight: 300;
  color: #563776;
}
.mobile-profile-meta h5 span {
  font-size: 10px;
  font-weight: 300;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #999999;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .navbar-collapse.collapse {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background-color: #000000;
}
.mobile-nav .col-xs-12 {
  padding: 0;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .mobile-nav {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.mobile-nav .menu {
  padding: 0;
  margin-bottom: 0;
}
.mobile-nav .menu > li > a {
  font-weight: 700;
  padding: 10px 0;
  text-indent: 20px;
}
.mobile-nav .menu ul {
  padding: 0;
  margin-bottom: 0;
}
.mobile-nav .menu li {
  list-style-type: none;
}
.mobile-nav .menu li a {
  min-height: 50px;
  line-height: 50px;
  display: block;
  color: #E8E8E8;
  border-bottom: 1px solid #404040;
  width: 100%;
  right: 30px;
}
.mobile-nav .menu li a:after {
  content: '\e817';
  position: relative;
  right: 22px;
  font-size: 30px;
  font-weight: 500;
  float: right;
}
.mobile-nav .menu li a.no-carret:after {
  display: none;
}
.mobile-nav .menu a[aria-expanded="true"]:after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 10px;
}
.mobile-nav ul.sub-menu a {
  padding-left: 20px;
  background-color: #404040;
  font-size: 14px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.mobile-nav ul.sub-menu a:after {
  right: 20px;
}
.mobile-nav ul.sub-menu a[aria-expanded="true"]:after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 19px;
}
.mobile-nav ul.secondary-sub-menu a {
  background-color: #CCCCCC;
  color: #000000;
  font-size: 14px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding-left: 20px;
}
.mobile-nav ul.secondary-sub-menu a:after {
  right: 30px;
}
.mobile-nav ul.tertiary-sub-menu a {
  background-color: #EEEEEE;
}
.mobile-nav ul.tertiary-sub-menu a:after {
  right: 30px;
}
.mobile-nav ul.fourth-sub-menu a {
  background-color: #FFFFFF;
}
.mobile-nav ul.fourth-sub-menu a:after {
  right: 30px;
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
    width: 330px;
  }

  .mobile-profile-meta {
    display: none;
  }
}
@media (max-width: 768px) {
  .shopFunctions .cart .itemCount {
    font-size: 60%;
    left: 1em;
  }

  .cartFlyout {
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 9997;
  }
  .cartFlyout .delete-icon {
    font-size: 20px;
  }
  .cartFlyout h3 {
    font-size: 14px;
  }
  .cartFlyout h3 span {
    padding-right: 0;
    text-align: right;
  }
}
@media only screen and (max-width: 667px) {
  .navbar-toggle .icon-bar {
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .navbar-toggle .icon-bar:nth-child(2) {
    top: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .navbar-toggle .icon-bar:nth-child(3) {
    visibility: hidden;
    opacity: 0;
  }
  .navbar-toggle .icon-bar:nth-child(4) {
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  .navbar-toggle.collapsed {
    transition-delay: 0.2s;
    float: right;
    margin-right: 0px;
  }
  .navbar-toggle.collapsed .icon-bar {
    position: relative;
    visibility: visible;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(2) {
    top: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(4) {
    bottom: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .navbar-toggle .icon-bar {
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .navbar-toggle .icon-bar:nth-child(2) {
    top: 7px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .navbar-toggle .icon-bar:nth-child(3) {
    visibility: hidden;
    opacity: 0;
  }
  .navbar-toggle .icon-bar:nth-child(4) {
    bottom: 9px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  .navbar-toggle.collapsed .icon-bar {
    position: relative;
    visibility: visible;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(2) {
    top: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(3) {
    opacity: 1;
  }
  .navbar-toggle.collapsed .icon-bar:nth-child(4) {
    bottom: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}
/*------------------------------------  GDPR  ------------------------------------*/
#gdpr-notice .gdpr-notice-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100100;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: inherit;
  line-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gdpr-notice .gdpr-notice-wrapper .gdpr-notice {
  max-width: 800px;
  margin: 10px;
  background-color: #FFFFFF;
  padding: 30px;
}
#gdpr-notice .gdpr-notice-wrapper .gdpr-notice .gdpr-policy-link {
  display: block;
  text-decoration: underline;
  font-weight: bold;
}
#gdpr-notice .gdpr-notice-wrapper .gdpr-notice .gdpr-decline-button {
  margin: 16px auto;
  padding: 8px 16px;
}
#gdpr-notice .gdpr-notice-wrapper .gdpr-notice .gdpr-decline-button:active, #gdpr-notice .gdpr-notice-wrapper .gdpr-notice .gdpr-decline-button:focus, #gdpr-notice .gdpr-notice-wrapper .gdpr-notice .gdpr-decline-button:hover {
  color: #FFFFFF;
  color: __buttonBorderColor__;
  background: #333333;
  background: __buttonTextColor__;
  border: solid 3px #333333;
  border: solid 3px __buttonBackgroundColor__;
}

.headerBar {
  background: #2E77BB;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #404040;
  color: __preheaderTextColor__;
  font-size: 85%;
  padding: 0.5em 30px;
  height: 60px;
}
.headerBar .headerInfo {
  color: #FFFFFF;
  margin: 10px 0px;
  width: 100%;
  font-size: 20px;
}
.headerBar .headerInfo .titleName {
  float: left;
  width: 10%;
}
.headerBar .headerInfo .customTitle {
  float: left;
  text-align: center;
  width: 71%;
}

.customOrderWrapper {
  background-color: #A0A0A0;
  padding: 1% 2%;
  width: 100%;
  height: auto;
  color: #000000;
  float: left;
}
.customOrderWrapper .orderDetails {
  color: #000000;
}
.customOrderWrapper .customInnerWrapper {
  background: #FFFFFF;
  width: 94%;
  height: 100%;
  margin: 0px auto;
  margin-top: 10px;
  padding-bottom: 30px;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner {
  width: 95%;
  margin: 0px auto;
  height: 100%;
  padding: 15px 0px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails {
  height: 200px;
  width: 47%;
  border: 1px solid #000000;
  border-radius: 10px;
  margin: 5px 15px;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .subheaderTitle {
  width: 28%;
  margin: -16px 3px 0px 9px;
  background: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .orderDateDetails {
  width: 80%;
  margin: 4px 0px 0px 42px;
  font-weight: bold;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .orderDateDetails .orderValue {
  font-weight: normal;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .orderShiptoDetails {
  width: 80%;
  margin: 8px 42px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .addressDetails {
  width: 80%;
  margin: 0px 75px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .orderDetails .addressDetails p {
  margin: 0px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails {
  height: auto;
  width: 100%;
  border: 1px solid #000000;
  border-radius: 10px;
  margin: 40px 0px 0px 15px;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails .subheadercustomTitle {
  width: 20%;
  margin-top: -16px;
  margin-left: 15px;
  background: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails .downloadPreview {
  width: 17%;
  margin: 500px 0px 0px 35px;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails .downloadPreview a {
  color: #337AB7;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails .imagePreview {
  width: 79%;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationDetails .imagePreview img {
  display: block;
  margin-left: 20%;
  margin-right: auto;
  width: 50%;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails {
  height: auto;
  width: 100%;
  border: 1px solid #000000;
  border-radius: 10px;
  margin: 40px 0px 0px 15px;
  float: left;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .subheadercustomTitle {
  width: 14%;
  margin-top: -16px;
  margin-left: 15px;
  background: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .frontListDetails {
  margin: 15px 0px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .backListDetails {
  margin: 0px 0px 25px 0px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .labelDetails {
  width: 80%;
  margin: 4px 0px 0px 42px;
  font-weight: bold;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .labelDetails .orderValue {
  font-weight: normal;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .labelDetails a {
  color: #337AB7;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .labelDetails .customizationFront {
  width: 79%;
  margin: 0px 75px;
}
.customOrderWrapper .customInnerWrapper .customDetailsInner .customizationFullDetails .labelDetails .customizationFront p {
  font-weight: normal;
  margin: 0px;
}

.tabs {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  margin: 0 -10px;
  /* RTL */
}
.tabs > ul {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0px 10px;
}
.tabs > ul .indicator {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #006618;
  transform: translateZ(0) translateX(0);
}
@media only screen and (max-width: 600px) {
  .tabs > ul {
    overflow-x: scroll;
  }
  .tabs > ul .indicator {
    display: none;
  }
}
.tabs > ul li {
  display: inline-block;
  font-size: 18px;
  padding: 8px 0;
  margin: 0 36px 0 0;
}
.tabs > ul li a {
  color: #58595A;
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease 0.4s;
  height: 100%;
}
.tabs > ul li a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  transform: translateZ(0) translateY(100%);
  transition: all 0.3s ease 0.3s;
  z-index: -1;
}
.tabs > ul li a[aria-selected] {
  color: #000000;
}
.tabs > ul li a[aria-selected]:before {
  transform: translateZ(0) translateY(0);
}
@media only screen and (max-width: 600px) {
  .tabs > ul li a[aria-selected]:hover {
    color: #008A21 !important;
  }
}
.tabs > ul li a:hover {
  color: #000000;
}
.tabs > ul li:hover a {
  color: #000000;
}
.tabs > section {
  position: relative;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  display: none;
  padding: 0px 10px;
}
.tabs > section.current {
  z-index: 0;
  display: block;
}
.tabs > section.exit {
  z-index: 0;
  display: block;
}
.tabs.animating .exit {
  animation-name: ltrexit;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.18, 1.14, 0.5, 1.18);
}
.tabs.animating .enter {
  animation-name: ltrenter;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.18, 1.14, 0.5, 1.18);
}
.tabs.animating.rtl .exit {
  animation-name: rtlexit;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.18, 1.14, 0.5, 1.18);
}
.tabs.animating.rtl .enter {
  animation-name: rtlenter;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.18, 1.14, 0.5, 1.18);
}

/* ltrenter */
@keyframes ltrenter {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* ltrexit */
@keyframes ltrexit {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* rtlenter */
@keyframes rtlenter {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* rtlexit */
@keyframes rtlexit {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.animate-left {
  animation: animateleft 0.3s;
}

.animate-right {
  animation: animateRight 0.3s;
}

.animate-opacity {
  animation: opac 0.3s;
}

@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes animateRight {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 30px;
  padding: 3px 16px;
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;
  color: __preheaderTextColor__;
  background-color: #000000;
  background-color: __preheaderBackgroundColor__;
}
@media (min-width: 768px) {
  .header-top {
    font-size: 13px;
  }
}
.header-top .prelogin-brc a {
  color: __preheaderTextColor__;
}
.header-top .languageSelect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}
.header-top .languageSelect .customSelectOpen,
.header-top .languageSelect select#languageSelectHeader.languageSelectHeader.hasCustomSelect {
  color: #FFFFFF;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  width: 100% !important;
  cursor: pointer;
}
.header-top .languageSelect span.customSelect.languageSelectHeader,
.header-top .languageSelect select#languageSelectHeader.languageSelectHeader.hasCustomSelect {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  height: 24px;
  cursor: pointer;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.header-top .languageSelect img {
  height: 17px;
  width: 17px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.header-top .languageSelect img.globe-icon {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0 8px 0 0;
}
.header-top .languageSelect img.arrow-down-icon {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.header-top .contact-us {
  display: none;
}
@media (min-width: 992px) {
  .header-top .contact-us {
    display: block;
    margin: auto 8px;
  }
}
.header-top .contact-us img {
  height: 17px;
  width: 17px;
}
.header-top .contact-us .help {
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  color: __preheaderTextColor__;
}

.header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 86px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
  background: #fff;
}
.header-bottom.no-nav .grm-logo {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: left;
}
.header-bottom.no-nav .headtopsec {
  justify-content: space-between;
}
.header-bottom .grm-icon {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0 8px;
}
@media (min-height: 768px) {
  .header-bottom .grm-icon {
    margin: 0;
  }
}
.header-bottom .plateau_language_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  flex-shrink: 0;
}
.header-bottom .plateau_language_select .customSelectOpen,
.header-bottom .plateau_language_select select#languageSelectHeader.languageSelectHeader.hasCustomSelect {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  width: 100% !important;
  cursor: pointer;
}
.header-bottom .plateau_language_select span.customSelect.languageSelectHeader,
.header-bottom .plateau_language_select select#languageSelectHeader.languageSelectHeader.hasCustomSelect {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  height: 24px;
  cursor: pointer;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.header-bottom .plateau_language_select img {
  vertical-align: top;
  opacity: 0.5;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.header-bottom .plateau_language_select img.globe-icon {
  width: auto;
  height: 24px;
  order: 1;
}
.header-bottom .plateau_language_select img.arrow-down-icon {
  width: auto;
  height: 16px;
  order: 4;
}
.header-bottom .headtopsec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 86px;
  width: 100%;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 9998;
  border-bottom: 1px solid #E7E8E9;
}
@media only screen and (max-width: 991px) {
  .header-bottom .headtopsec {
    -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
    border-bottom: 0px;
  }
}
.header-bottom .hamburger-menu,
.header-bottom .close-menu {
  display: none;
}
.header-bottom .hamburger-menu.active,
.header-bottom .close-menu.active {
  display: block;
}
@media (min-width: 992px) {
  .header-bottom .hamburger-menu.active,
  .header-bottom .close-menu.active {
    display: none;
  }
}
.header-bottom .grm-logo {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  align-self: center;
}
.header-bottom .grm-logo img {
  width: inherit;
  height: inherit;
}
.header-bottom .contact-us {
  display: block;
}
.header-bottom .shopping-cart {
  position: relative;
}
.header-bottom .shopping-cart .itemCount {
  display: block;
  position: absolute;
  font-size: 80%;
  color: #FFFFFF;
  background: #2A843C;
  text-align: center;
  border-radius: 1em;
  height: 1.3em;
  top: 0;
  left: 2em;
  padding: 0 0.4em;
}
.header-bottom .user-profile {
  display: none;
}
@media (min-width: 992px) {
  .header-bottom .user-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-left: 1px solid #D8D8D8;
    padding: 16px;
    margin: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-bottom .user-profile .account-balance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-bottom .user-profile .zoomoutmenu {
    display: inline !important;
    animation: zoomoutdesmenu 0.2s forwards;
  }
  .header-bottom .user-profile .zoominmenu {
    display: inline !important;
    animation: zoomindesmenu 0.2s forwards;
  }
  @keyframes zoomoutdesmenu {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }
  @keyframes zoomindesmenu {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0);
    }
  }
}
.header-bottom .user-profile .account-balance {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-weight: bold;
  color: inherit;
  color: __preheaderTextColor__;
}
.header-bottom .user-profile .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer;
}
.header-bottom .user-profile .user:hover {
  color: #000000;
}
.header-bottom .user-profile .user:hover img {
  opacity: 1;
}
.header-bottom .user-profile .user img {
  height: 12px;
  width: 12px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0;
}
.header-bottom .user-profile .user .user-name {
  margin: 0 8px 0 0;
}
.header-bottom .user-profile .secondary-navigation {
  display: none;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 110px;
  right: 24px;
  height: auto;
  width: 175px;
  background: #FFFFFF;
  text-align: left;
  z-index: 1;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  color: inherit;
  color: __largeIconColor__;
}
.header-bottom .user-profile .secondary-navigation .menu-option:hover, .header-bottom .user-profile .secondary-navigation .menu-option:focus {
  background: #F2F4F6;
  color: #000000;
}
.header-bottom .user-profile .secondary-navigation .menu-option a:link {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
}
.header-bottom .user-profile .secondary-navigation .favorites {
  border-bottom: 1px solid #58595A;
}
.header-bottom .user-profile .secondary-navigation::after,
.header-bottom .user-profile .secondary-navigation::before {
  bottom: 100%;
  right: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.header-bottom .user-profile .secondary-navigation::before {
  border-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-width: 10px;
  margin-left: -11px;
}
.header-bottom .user-profile .secondary-navigation::after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #FFFFFF;
  border-width: 10px;
  margin-left: -10px;
}
.header-bottom .language_select,
.header-bottom .prelogin-brc,
.header-bottom .userInfo {
  align-self: center;
}
.header-bottom .language_select .grm-icon,
.header-bottom .prelogin-brc .grm-icon,
.header-bottom .userInfo .grm-icon {
  padding: 0;
}

.menu-option img {
  vertical-align: middle;
  max-height: 12px;
  max-width: 12px;
  align-self: center;
}
.menu-option .grm-icon {
  padding: 0;
}

/* WCAG-4964 - Accessible menu changes starts */
.primary-navigation-desktop .previous-cate {
  border-bottom: 1px solid #E7E8E9 !important;
  margin: 0 0 8px 0;
  padding: 15px 0px 15px 10px !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.primary-navigation-desktop .previous-cate span {
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
}

.previous-category {
  border-bottom: 1px solid #E7E8E9 !important;
  margin: 5px !important;
  padding: 10px 0px 10px 10px !important;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.previous-category span {
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
}

/* WCAG-4964 - Accessible menu changes ends.  */
.menuactive span,
.menuactive a span {
  color: #006618 !important;
}

.menuactive ul li span,
.menuactive ul li a span {
  color: #000000 !important;
}

.temporary-search {
  background-color: #F5F5DC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
}
.temporary-search form#searchForm {
  width: 100%;
}
.temporary-search input#myInput {
  width: 80%;
  margin: 24px 2em;
}
.temporary-search select {
  height: 50%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.stickOn .home-menu .active > .sub-menu,
.stickOn .home-menu .active > .tertiary-sub-menu {
  height: calc(100% - 70px);
  top: 70px;
}

.stickOn .mobile-navigation .home-menu.active:not(.expanded),
.stickOn
.mobile-navigation
.home-menu.active:not(.expanded)
+ .grm-footer.active {
  height: calc((100% - 70px) / 2);
}

.stickOn .mobile-navigation .home-menu.active:not(.expanded),
.stickOn .user-profile .secondary-navigation {
  top: 70px;
}

/*.sub-menu, .tertiary-sub-menu{
    display: none;
}*/
@media (max-width: 575.98px) {
  .header-bottom .headtopsec .grm-logo img {
    width: 216px;
    height: auto;
  }
  .header-bottom.no-nav .headtopsec {
    padding: 0 8px;
  }
  .header-bottom.no-nav .headtopsec .grm-logo {
    width: 50%;
    margin: 0px 8px;
  }
  .header-bottom.no-nav .headtopsec .grm-logo img {
    width: 100%;
  }
}
@media (min-width: 2560px) {
  .ultra-monitor-container {
    width: 2560px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .ultra-monitor-checkout-container {
    width: 2560px;
    margin: auto;
  }

  .home-refresh-container.padding-bottom-filler {
    width: 2560px;
    margin: auto;
  }

  footer {
    width: -webkit-fill-available;
    margin: auto;
  }

  footer .footer-links__wrapper {
    width: 2560px;
    margin: auto;
  }

  .ultra-sceen-sticky-logo {
    position: relative;
    left: 0%;
  }

  .ultra-sceen-sticky-cart {
    position: relative;
    right: 0%;
  }

  .ultra-fixed-width {
    width: 2560px !important;
    margin: auto;
  }

  .checkout .summary.fixed-pos {
    position: relative;
    width: 97% !important;
  }

  .ultrascreen-chat-content-box {
    box-sizing: content-box;
    font-size: 28px !important;
    padding: 0.5% 1%;
  }

  img.shop-card-image {
    height: 3% !important;
  }

  .category-container .masthead-container .masthead-img {
    max-height: 450px !important;
  }
}
.category-container > .category-carousel-container {
  width: 100%;
}

.divider-line {
  border: 0;
  border-top: 2px solid #eee;
  padding: 10px 0px 10px 10px !important;
}

#common-left-sidebar {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  margin-top: 24px;
}
#common-left-sidebar nav.common-nav ul.common-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item a {
  color: #58595A;
  padding: 10px 0;
  padding-left: 20px;
  display: inline-block;
  width: 100%;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item a:hover {
  color: #000000;
  background-color: #F6F7F8;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item a:focus {
  color: #000000;
  outline: 0 !important;
  background-color: #F6F7F8;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item.selected {
  background-color: #FFFFFF;
}
#common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item.selected a {
  color: #006618;
}

.user-is-tabbing #common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item {
  margin-right: 1px;
}
.user-is-tabbing #common-left-sidebar nav.common-nav ul.common-nav-list li.common-nav-list-item a:focus {
  text-decoration: none;
  outline: 2px dashed #595959 !important;
}

#common-right-sidebar {
  display: none;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  color: #000000;
  font-size: 14px;
  margin-top: 42px;
}
#common-right-sidebar .common-email-support {
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 15px;
}
#common-right-sidebar .common-email-chat {
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  padding: 15px;
  margin-bottom: 15px;
}
#common-right-sidebar .common-email-phone {
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  padding: 15px;
}
#common-right-sidebar .help-topics-wrapper {
  padding: 17px 15px;
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  margin-bottom: 24px;
}
#common-right-sidebar .help-topics-wrapper ul.help-topics-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
}
#common-right-sidebar .help-topics-wrapper ul.help-topics-nav li.help-topic {
  text-align: left;
  padding-bottom: 7px;
}
#common-right-sidebar .help-topics-wrapper ul.help-topics-nav li.help-topic:last-child {
  padding-bottom: 0;
}
#common-right-sidebar .help-topics-wrapper ul.help-topics-nav li.help-topic a {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
#common-right-sidebar .help-topics-wrapper ul.help-topics-nav li.help-topic a.selected {
  color: #006618;
}

.tab-nav ul li.active a {
  border-right-color: #FFFFFF;
  background-color: #FFFFFF;
  color: #008A21;
}

.tab-nav ul li.active {
  border-right: none;
}

.register-form .formfield {
  margin-bottom: 29px;
  float: inherit;
}

.mobile-navigation {
  left: -110%;
  background-color: #FFFFFF;
  width: 85%;
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  z-index: 9998;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  bottom: 0;
}
.mobile-navigation .previous-category,
.mobile-navigation .previous-cate {
  cursor: pointer;
  display: none;
}
@media (min-width: 568px) {
  .mobile-navigation {
    width: 400px;
  }
}
.mobile-navigation .home-menu,
.mobile-navigation .sub-menu,
.mobile-navigation .tertiary-sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  z-index: -1;
}
.mobile-navigation .home-menu .arrow-down-icon,
.mobile-navigation .sub-menu .arrow-down-icon,
.mobile-navigation .tertiary-sub-menu .arrow-down-icon {
  display: none;
}
.mobile-navigation .grm-footer {
  display: none;
  z-index: -1;
}
.mobile-navigation .grm-footer .arrow-down-icon {
  display: none;
}
.mobile-navigation .home-menu.current {
  position: relative;
  margin-bottom: 0px;
}
.mobile-navigation .home-menu.current,
.mobile-navigation .grm-footer.current,
.mobile-navigation .sub-menu.current,
.mobile-navigation .tertiary-sub-menu.current,
.mobile-navigation .home-menu.exit,
.mobile-navigation .grm-footer.exit,
.mobile-navigation .sub-menu.exit,
.mobile-navigation .tertiary-sub-menu.exit {
  z-index: 2;
  display: block;
}
.mobile-navigation .home-menu.enter,
.mobile-navigation .grm-footer.enter,
.mobile-navigation .sub-menu.enter,
.mobile-navigation .tertiary-sub-menu.enter {
  display: block;
}
.mobile-navigation ul {
  background-color: #FFFFFF;
  width: 100%;
  padding: 0px;
}
.mobile-navigation .home-menu,
.mobile-navigation .sub-menu-ul,
.mobile-navigation .tertiary-sub-menu-ul {
  padding: 0px;
}
.mobile-navigation .home-menu li,
.mobile-navigation .sub-menu-ul li,
.mobile-navigation .tertiary-sub-menu-ul li {
  padding: 10px 24px;
}
.mobile-navigation .home-menu li span,
.mobile-navigation .sub-menu-ul li span,
.mobile-navigation .tertiary-sub-menu-ul li span {
  color: #58595A;
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 19px;
}
.mobile-navigation .home-menu li:hover, .mobile-navigation .home-menu li:hover > a,
.mobile-navigation .sub-menu-ul li:hover,
.mobile-navigation .sub-menu-ul li:hover > a,
.mobile-navigation .tertiary-sub-menu-ul li:hover,
.mobile-navigation .tertiary-sub-menu-ul li:hover > a {
  color: #000000;
}
.mobile-navigation .home-menu li .arrow-right-icon,
.mobile-navigation .sub-menu-ul li .arrow-right-icon,
.mobile-navigation .tertiary-sub-menu-ul li .arrow-right-icon {
  float: right;
  margin-top: 5px;
}
.mobile-navigation .home-menu li a,
.mobile-navigation .sub-menu-ul li a,
.mobile-navigation .tertiary-sub-menu-ul li a {
  display: block;
  margin: -8px -16px;
  padding: 8px 16px;
  font-size: 16px;
}
.mobile-navigation .home-menu {
  /*height: calc(100% / 2);*/
  /*overflow: scroll auto;*/
}
.mobile-navigation .sub-menu.active .sub-menu-ul,
.mobile-navigation .tertiary-sub-menu.active .tertiary-sub-menu-ul {
  height: 100%;
  overflow: scroll auto;
  margin-bottom: 10px;
}
.mobile-navigation .grm-footer {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.15);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.15);
  background-color: #FFFFFF;
  width: 100%;
  font-weight: bold;
  /*overflow: scroll auto;*/
}
.mobile-navigation .grm-footer .menu-option {
  padding: 12px 23px;
  border: 0;
}
.mobile-navigation .grm-footer .menu-option a {
  color: #58595a;
  font-size: 14px;
}
.mobile-navigation .grm-footer .menu-option:first-of-type {
  background-color: #FFFFFF;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100px;
  padding-top: 40px;
}
.mobile-navigation .grm-footer .menu-option:first-of-type .user-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #000000;
  position: relative;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.mobile-navigation .grm-footer .menu-option:first-of-type .user-profile .username-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mobile-navigation .grm-footer .menu-option:first-of-type .user-profile .username-balance .userName {
  font-weight: bold;
  color: #006618;
}
.mobile-navigation .grm-footer .menu-option:first-of-type .user-profile .arrow-right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.mobile-navigation .grm-footer .menu-option span {
  margin-left: 12px;
}
.mobile-navigation .grm-footer .menu-option .my-account {
  margin: 0 8px;
  max-height: 100%;
  max-width: 100%;
}
.mobile-navigation .grm-footer .menu-option:last-child {
  padding-bottom: 22px;
}
.mobile-navigation .exit {
  animation: mobnavltrexit 0.1s forwards;
}
.mobile-navigation .enter {
  animation: mobnavltrenter 0.1s forwards;
}

.mobile-navigation.showhomemenu {
  -webkit-animation: showmobnavmenu 0.1s forwards;
  animation: showmobnavmenu 0.1s forwards;
}

.mobile-navigation.hidehomemenu {
  -webkit-animation: hidemobnavmenu 0.1s forwards;
  animation: hidemobnavmenu 0.1s forwards;
}

@-webkit-keyframes showmobnavmenu {
  to {
    left: 0px;
  }
}
@keyframes showmobnavmenu {
  to {
    left: 0px;
  }
}
@-webkit-keyframes hidemobnavmenu {
  from {
    left: 0;
  }
  to {
    left: -110%;
  }
}
@keyframes hidemobnavmenu {
  from {
    left: 0;
  }
  to {
    left: -110%;
  }
}
.mobile-navigation.rtl .exit {
  animation: mobnavrtlexit 0.1s forwards;
}

.mobile-navigation.rtl .enter {
  animation: mobnavrtlenter 0.1s forwards;
}

@keyframes mobnavltrenter {
  from {
    left: 100%;
  }
  to {
    left: 0px;
  }
}
@keyframes mobnavltrexit {
  from {
    left: 0px;
  }
  to {
    left: -110%;
  }
}
@keyframes mobnavrtlenter {
  from {
    left: -110%;
  }
  to {
    left: 0%;
  }
}
@keyframes mobnavrtlexit {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}
.primary-navigation-desktop {
  display: none;
}
.primary-navigation-desktop .previous-category,
.primary-navigation-desktop .previous-cate {
  display: none;
  cursor: pointer;
}
.primary-navigation-desktop .nav-desk-menuarrow {
  display: none;
}
.primary-navigation-desktop .active {
  display: inline;
}
@media (min-width: 992px) {
  .primary-navigation-desktop {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    /* WCAG-4964 - Accessible menu changes.  */
  }
  .primary-navigation-desktop .nav-desk-menuarrow {
    z-index: 9999;
    position: absolute;
  }
  .primary-navigation-desktop .nav-desk-menuarrow::after,
  .primary-navigation-desktop .nav-desk-menuarrow::before {
    bottom: 100%;
    right: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .primary-navigation-desktop .nav-desk-menuarrow::before {
    border-color: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-width: 10px;
    margin-left: -11px;
  }
  .primary-navigation-desktop .nav-desk-menuarrow::after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #FFFFFF;
    border-width: 10px;
    margin-left: -10px;
  }
  .primary-navigation-desktop .home-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 0px;
    padding: 0px;
  }
}
@media (min-width: 992px) and (min-width: 992px) and (max-width: 1024px) {
  .primary-navigation-desktop .home-menu {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (min-width: 992px) {
  .primary-navigation-desktop .home-menu li {
    /*float: left;*/
    padding: 0 16px;
  }
  .primary-navigation-desktop .home-menu li:hover {
    cursor: pointer;
  }
}
@media (min-width: 992px) and (min-width: 992px) and (max-width: 1024px) {
  .primary-navigation-desktop .home-menu li {
    padding: 0 8px;
  }
}
@media (min-width: 992px) {
  .primary-navigation-desktop .home-menu li span {
    color: #58595A;
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 19px;
  }
  .primary-navigation-desktop .home-menu li.active span {
    color: #000000;
  }
  .primary-navigation-desktop .home-menu .arrow-down-icon {
    padding: 0px !important;
    margin: 0 0 0 8px;
    align-self: center;
  }
  .primary-navigation-desktop .home-menu .arrow-right-icon {
    display: none;
  }
  .primary-navigation-desktop .sub-menu .previous-category {
    display: flex;
  }
  .primary-navigation-desktop .tertiary-sub-menu,
  .primary-navigation-desktop .fourth-sub-menu {
    padding: 0px;
  }
  .primary-navigation-desktop .sub-menu {
    display: none;
    position: absolute;
    width: 300px;
    padding: 0px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  .primary-navigation-desktop .sub-menu .sub-menu-ul,
  .primary-navigation-desktop .tertiary-sub-menu,
  .primary-navigation-desktop .fourth-sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    z-index: -1;
    background-color: #FFFFFF;
  }
  .primary-navigation-desktop .sub-menu .sub-menu-ul .arrow-down-icon,
  .primary-navigation-desktop .tertiary-sub-menu .arrow-down-icon,
  .primary-navigation-desktop .fourth-sub-menu .arrow-down-icon {
    display: none;
  }
  .primary-navigation-desktop .sub-menu .sub-menu-ul.current,
  .primary-navigation-desktop .tertiary-sub-menu.current,
  .primary-navigation-desktop .fourth-sub-menu.current,
  .primary-navigation-desktop .sub-menu .sub-menu-ul.exit,
  .primary-navigation-desktop .tertiary-sub-menu.exit,
  .primary-navigation-desktop .fourth-sub-menu.exit {
    z-index: 2;
    display: block;
  }
  .primary-navigation-desktop .sub-menu .sub-menu-ul.enter,
  .primary-navigation-desktop .tertiary-sub-menu.enter,
  .primary-navigation-desktop .fourth-sub-menu.enter {
    z-index: 3;
    display: block;
  }
  .primary-navigation-desktop .sub-menu-ul,
  .primary-navigation-desktop .tertiary-sub-menu-ul,
  .primary-navigation-desktop .fourth-sub-menu-ul {
    max-height: 80vh;
    overflow-x: auto;
    padding: 0;
  }
  .primary-navigation-desktop .sub-menu-ul li,
  .primary-navigation-desktop .tertiary-sub-menu-ul li,
  .primary-navigation-desktop .fourth-sub-menu-ul li {
    padding: 6px 12px;
    margin: 0px 5px;
  }
  .primary-navigation-desktop .sub-menu-ul li:hover,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:hover,
  .primary-navigation-desktop .fourth-sub-menu-ul li:hover {
    cursor: pointer;
  }
  .primary-navigation-desktop .sub-menu-ul li:hover, .primary-navigation-desktop .sub-menu-ul li:hover > a,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:hover,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:hover > a,
  .primary-navigation-desktop .fourth-sub-menu-ul li:hover,
  .primary-navigation-desktop .fourth-sub-menu-ul li:hover > a {
    background-color: #F2F4F6;
    color: #000000;
  }
  .primary-navigation-desktop .sub-menu-ul li .arrow-right-icon,
  .primary-navigation-desktop .tertiary-sub-menu-ul li .arrow-right-icon,
  .primary-navigation-desktop .fourth-sub-menu-ul li .arrow-right-icon {
    float: right;
    margin-top: 5px;
  }
  .primary-navigation-desktop .sub-menu-ul li a,
  .primary-navigation-desktop .tertiary-sub-menu-ul li a,
  .primary-navigation-desktop .fourth-sub-menu-ul li a {
    display: block;
    margin: -6px -12px;
    padding: 6px 12px;
  }
  .primary-navigation-desktop .sub-menu-ul li:first-child,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:first-child,
  .primary-navigation-desktop .fourth-sub-menu-ul li:first-child {
    padding-top: 17px;
  }
  .primary-navigation-desktop .sub-menu-ul li:first-child:hover > .nav-desk-menuarrow,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:first-child:hover > .nav-desk-menuarrow,
  .primary-navigation-desktop .fourth-sub-menu-ul li:first-child:hover > .nav-desk-menuarrow {
    z-index: 0;
  }
  .primary-navigation-desktop .sub-menu-ul li:last-child,
  .primary-navigation-desktop .tertiary-sub-menu-ul li:last-child,
  .primary-navigation-desktop .fourth-sub-menu-ul li:last-child {
    padding-bottom: 17px;
  }
}
.primary-navigation-desktop .show-all-menu {
  display: inline-block;
}
.primary-navigation-desktop .hide-other-menu {
  display: none;
}
.primary-navigation-desktop .show-more-menu {
  display: inline-block;
}
.primary-navigation-desktop .hide-more-menu {
  display: none;
}
.primary-navigation-desktop .zoomoutmenu {
  display: inline;
  animation: zoomoutdesmenu 0.1s forwards;
}
.primary-navigation-desktop .zoominmenu {
  display: inline;
  animation: zoomindesmenu 0.1s forwards;
}
.primary-navigation-desktop .ltr .exit {
  animation-name: deskltrexit;
  animation-duration: 0.1s;
}
.primary-navigation-desktop .ltr .enter {
  animation-name: deskltrenter;
  animation-duration: 0.1s;
}
.primary-navigation-desktop .rtl .exit {
  animation-name: deskrtlexit;
  animation-duration: 0.1s;
}
.primary-navigation-desktop .rtl .enter {
  animation-name: deskrtlenter;
  animation-duration: 0.1s;
}
.primary-navigation-desktop .menu-li {
  overflow-x: hidden;
  background-color: #FFFFFF;
}
.primary-navigation-desktop .travelli {
  border-left: 1px solid #DEDFE1;
}
.primary-navigation-desktop .travelli img {
  max-height: 18px;
  max-width: 18px;
  margin-right: 8px;
}
.primary-navigation-desktop .ltr::-webkit-scrollbar,
.primary-navigation-desktop .rtl::-webkit-scrollbar {
  width: 0;
}

@keyframes deskltrenter {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes deskrtlenter {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes deskltrexit {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes deskrtlexit {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes zoomoutdesmenu {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomindesmenu {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
.filter-container .filter-collape-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter-container .filter-collape-head a {
  width: 100%;
}
.filter-container .filter-collape-head a img.grm-png-icon {
  height: 10px;
  width: 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter-container .filter-collape-head a.collapsed img.grm-png-icon {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.filter-container .filter-collape-head a div > i.grm-png-icon {
  height: 10px;
  width: 10px;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  /*-webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);*/
}
.filter-container .filter-collape-head a.collapsed div > i.grm-png-icon {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  /*-webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);*/
}
.filter-container .filter-collape-head a span.filter-label {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
}
.filter-container .filter-collape-head span.filter-clear {
  color: #000000;
  width: 25%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.67px;
  line-height: 12px;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-container .points-filter-container {
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #D8D8D8;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 8px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .grm-form-group {
  margin: 0;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .grm-form-group input {
  height: 40px;
  border: 0.5px solid #595959;
  border-radius: 2px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .splitter {
  height: 1px;
  width: 8px;
  border: 1px solid #979797;
  border-radius: 1.5px;
  background-color: #D8D8D8;
  margin: 0px 10px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper #points-based-category-submit {
  height: 40px;
  border-radius: 2px;
  color: #000000;
  padding: 10px;
  border: 0;
  margin-left: 10px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper #points-based-searchresults-submit {
  height: 40px;
  border-radius: 2px;
  background-color: #000000;
  color: #000000;
  padding: 10px;
  border: 0;
  margin-left: 10px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .filter-points-search-btn {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Uploaded%20to:%20SVG%20Repo,%20www.svgrepo.com,%20Generator:%20SVG%20Repo%20Mixer%20Tools%20--%3E%3Csvg%20fill='%23ffffff'%20height='16'%20width='16'%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%20500%20500'%20xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath%20d='M388.418,240.915L153.752,6.248c-8.331-8.331-21.839-8.331-30.17,0c-8.331,8.331-8.331,21.839,0,30.17L343.163,256%20L123.582,475.582c-8.331,8.331-8.331,21.839,0,30.17c8.331,8.331,21.839,8.331,30.17,0l234.667-234.667%20C396.749,262.754,396.749,249.246,388.418,240.915z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-color: black;
  background-position: center;
  width: 40px;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .points-go-wrapper {
  position: relative;
}
.filter-container .points-filter-container .filter-collape-body .points-range_wrapper .points-go-wrapper img.grm-icon-png {
  position: absolute;
  left: 22px;
  top: 12px;
  z-index: 1;
  width: 16px;
  cursor: pointer;
}
.filter-container .points-filter-container .filter-collape-body .grm-checkbox {
  padding-top: 16px;
}
.filter-container .points-filter-container .filter-collape-body .grm-checkbox label {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  position: relative;
  left: -15px;
  margin: 0;
  width: 80%;
}
.filter-container .points-filter-container .filter-collape-body .grm-checkbox label:before {
  top: 0px;
  border: 0.5px solid #595959;
  border-radius: 5px;
}
.filter-container .points-filter-container .filter-collape-body .grm-checkbox label:after {
  top: 7px;
}
.filter-container .points-filter-container .filter-collape-body .grm-checkbox .show_me-count {
  color: #000000;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  float: right;
  position: relative;
  top: 5px;
}
.filter-container .category-filter-container {
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #D8D8D8;
}
.filter-container .category-filter-container #category-filter {
  padding-bottom: 15px;
}
.filter-container .category-filter-container ul.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.filter-container .category-filter-container ul.category-list li.category-list-item {
  padding-top: 15px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.custom-list-item {
  padding-top: 0px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-1 {
  padding-left: 24px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-2 {
  padding-left: 48px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-3 {
  padding-left: 72px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-4 {
  padding-left: 96px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-5 {
  padding-left: 120px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-6 {
  padding-left: 144px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-7 {
  padding-left: 168px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item.indent-8 {
  padding-left: 192px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item .sub-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  padding-left: 24px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item {
  color: #000000;
  font-size: 14px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item .grm-checkbox label {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  left: -15px;
  margin: 0;
  width: 70%;
}
.filter-container .category-filter-container ul.category-list li.category-list-item .grm-checkbox label:before {
  top: 0px;
  border: 0.5px solid #595959;
  border-radius: 5px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item .grm-checkbox label:after {
  top: 7px;
}
.filter-container .category-filter-container ul.category-list li.category-list-item .cat-item-count {
  color: #000000;
  font-size: 10px;
  line-height: 12px;
  float: right;
  position: relative;
  top: 5px;
}
.filter-container .category-filter-container ul.category-list.child-level {
  padding-left: 24px;
}
.filter-container .attr-filter-container {
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #D8D8D8;
}
.filter-container .attr-filter-container .attr-search-wrapper {
  padding: 8px 0px 16px 0px;
}
.filter-container .attr-filter-container .attr-search-wrapper .grm-form-group {
  margin: 0;
}
.filter-container .attr-filter-container .attr-search-wrapper .grm-form-group input {
  border: 0.5px solid #595959;
  border-radius: 2px;
}
.filter-container .attr-filter-container .attr-list-wrapper {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-height: 554px;
  overflow-y: auto;
  margin-bottom: 15px;
  /* width */
  /* Track */
  /* Handle */
}
.filter-container .attr-filter-container .attr-list-wrapper.partially-expanded {
  max-height: 136px;
  overflow: hidden;
}
.filter-container .attr-filter-container .attr-list-wrapper::-webkit-scrollbar {
  width: 4px;
}
.filter-container .attr-filter-container .attr-list-wrapper::-webkit-scrollbar-track {
  background-color: #D8D8D8;
  border-radius: 2px;
}
.filter-container .attr-filter-container .attr-list-wrapper::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 2px;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item {
  color: #000000;
  font-size: 14px;
  padding-top: 15px;
  padding-right: 10px;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item:first-child {
  padding-top: 0px;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item .grm-checkbox.attr-item_checkbox label {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  left: -15px;
  margin: 0;
  width: 80%;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item .grm-checkbox.attr-item_checkbox label:before {
  top: 0px;
  border: 0.5px solid #595959;
  border-radius: 5px;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item .grm-checkbox.attr-item_checkbox label:after {
  top: 7px;
}
.filter-container .attr-filter-container .attr-list-wrapper ul.attr-list li.attr-list-item .grm-checkbox.attr-item_checkbox .attr-item-count {
  color: #000000;
  font-size: 10px;
  line-height: 12px;
  float: right;
  position: relative;
  top: 5px;
}
.filter-container .attr-filter-container .attr-list-view {
  text-align: left;
}
.filter-container .attr-filter-container .attr-list-view a:focus {
  outline: 0 !important;
}

@media only screen and (max-width: 667px) {
  .category-container {
    padding-left: 1px;
  }
}
.category-container .no-products-found {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.category-container .masthead-container .masthead-img {
  width: 100%;
  max-height: 354px;
  border-radius: 12px;
}
.category-container .masthead-container .masthead-img-with-desc {
  width: 100%;
  max-height: 354px;
  border-radius: 12px 12px 0px 0px;
}
.category-container .breadcum-container ul.breadcum-list {
  list-style: none;
  margin: 17px 0px;
  padding: 0;
  font-size: 0;
}
.category-container .breadcum-container ul.breadcum-list li.breadcum {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.category-container .breadcum-container ul.breadcum-list li.breadcum a.breadcum-link {
  color: #595959;
}
.category-container .breadcum-container ul.breadcum-list li.breadcum span.breadcum-active {
  color: #000000;
}
.category-container .breadcum-container ul.breadcum-list li.breadcum img.breadcum-img {
  height: 10px;
  width: 10px;
  margin: 0 8px;
}
.category-container .category-carousel-container {
  position: relative;
  margin: 0px 0px;
}
.category-container .category-carousel-container .carousel-prev-action {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  height: 100%;
  padding: 10px 0;
  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;
  padding-left: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), color-stop(27.97%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 27.97%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 27.97%, rgba(255, 255, 255, 0) 100%);
}
.category-container .category-carousel-container .carousel-prev-action .cat-carousel-prev {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  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;
}
.category-container .category-carousel-container .carousel-prev-action .cat-carousel-prev img {
  width: 20px;
  height: 20px;
}
.category-container .category-carousel-container .carousel-next-action {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px 0;
  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;
  padding-right: 20px;
  background: -o-linear-gradient(181.99deg, #FFFFFF 0%, #FFFFFF 27.97%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(268.01deg, #FFFFFF 0%, #FFFFFF 27.97%, rgba(255, 255, 255, 0) 100%);
}
.category-container .category-carousel-container .carousel-next-action .cat-carousel-next {
  height: 84px;
  width: 40px;
  border-radius: 20px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  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;
}
.category-container .category-carousel-container .carousel-next-action .cat-carousel-next img {
  width: 20px;
  height: 20px;
}
.category-container .category-carousel-container #product-category-carousel .owl-wrapper-outer {
  padding: 10px 0px;
}
.category-container .category-carousel-container #product-category-carousel .owl-wrapper-outer .owl-item {
  padding: 0px 12px;
  display: flex;
}
.category-container .category-carousel-container #product-category-carousel .cat-card {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  -webkit-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.category-container .category-carousel-container #product-category-carousel .cat-card a {
  display: block;
}
.category-container .category-carousel-container #product-category-carousel .cat-card:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.category-container .category-carousel-container #product-category-carousel .cat-card .cat-card-preview img {
  height: auto;
  width: 100%;
  border-radius: 12px 12px 0px 0px;
  /* @media (min-width: 1366px) and (max-width: 1919px) {
    	height: 164px;
   }
   
   @media (min-width: 1920px) and (max-width: 2560px) {
   	height: 250px;
   }*/
}
.category-container .category-carousel-container #product-category-carousel .cat-card .cat-card-label {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  padding: 15px 5px;
}
.category-container .category-carousel-container #product-category-carousel.no-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.category-container .category-carousel-container #product-category-carousel.no-carousel .cat-card {
  width: 200px;
  margin: 0 12px;
  /*@media (min-width: 1366px) {
      width: 24%;
  }*/
}
.category-container .category-heading-container {
  padding: 15px 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.category-container .category-heading-container .result-heading {
  margin-bottom: 24px;
}
@media only screen and (min-width: 320px) and (max-width: 425px) {
  .category-container .category-heading-container .result-heading .cat-heading {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 425px) {
  .category-container .category-heading-container .result-heading .cat-heading {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-left: 0px;
  }
}
.category-container .category-heading-container .result-heading .cat-item-count {
  color: #595959;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.category-container .category-heading-container .result-sorting-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .category-container .category-heading-container .result-sorting-container {
    display: grid !important;
  }
}
.category-container .category-heading-container .result-sorting-container .filter-by-container {
  height: 40px;
  padding: 12px;
  border-radius: 25px;
  margin-right: 8px;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #E7E8E9;
}
@media (max-width: 767px) {
  .category-container .category-heading-container .result-sorting-container .filter-by-container {
    border-radius: 25px;
    margin-right: 12px;
  }
}
.category-container .category-heading-container .result-sorting-container .filter-by-container img.sort-png {
  height: 20px;
  padding-right: 10px;
}
.category-container .category-heading-container .result-sorting-container .filter-by-container span.filter-by-label {
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  padding: 0;
  border: 0;
}
.category-container .category-heading-container .result-sorting-container .filter-by-container img.down-arrow-png {
  height: 20px;
  padding-left: 10px;
}
.category-container .category-heading-container .result-sorting-container .sort-container {
  height: 40px;
  padding: 12px;
  border-radius: 25px;
  margin-right: 8px;
  z-index: 1;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #E7E8E9;
}
@media (max-width: 767px) {
  .category-container .category-heading-container .result-sorting-container .sort-container {
    border-radius: 25px;
    margin-right: 0px;
  }
}
.category-container .category-heading-container .result-sorting-container .sort-container img.sort-png {
  height: 20px;
  padding-right: 10px;
}
.category-container .category-heading-container .result-sorting-container .sort-container select {
  margin: 0;
  padding: 12px;
  border: 0;
}
.category-container .category-heading-container .result-sorting-container .sort-container span.customSelect {
  z-index: initial;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  padding: 0;
  border: 0;
}
.category-container .category-heading-container .result-sorting-container .sort-container img.down-arrow-png {
  height: 20px;
  padding-left: 10px;
}
.category-container .filter-sort-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 16px;
}
.category-container .filter-sort-container .filter-bubbles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
}
@media (max-width: 768px) {
  .category-container .filter-sort-container .filter-bubbles-container {
    width: 100%;
  }
}
.category-container .filter-sort-container .filter-bubbles-container .filter-bubble {
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #000000;
  font-size: 12px;
  line-height: 14px;
  border-radius: 12px;
  background-color: #EEEEEE;
  outline: none;
  padding: 0;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  text-decoration: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.category-container .filter-sort-container .filter-bubbles-container .filter-bubble .filter-bubble-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  padding-left: 10px;
}
.category-container .filter-sort-container .filter-bubbles-container .filter-bubble .filter-bubble-close {
  padding: 5px 7px;
  cursor: pointer;
}
.category-container .filter-sort-container .filter-bubbles-container .filter-bubble .filter-bubble-close img {
  height: 12px;
  width: 12px;
}
.category-container .filter-sort-container .filter-bubbles-container .filters-clear {
  display: inline-flex;
  position: relative;
}
.category-container .filter-sort-container .filter-bubbles-container .filters-clear .clearall {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  text-decoration: underline;
}
.category-container .filter-sort-container .sort-container {
  height: 40px;
  padding: 12px;
  border-radius: 25px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.category-container .filter-sort-container .sort-container img {
  height: 20px;
  padding-right: 10px;
}
.category-container .filter-sort-container .sort-container select {
  margin: 0px;
  padding: 12px;
  border: 0px;
}
.category-container .filter-sort-container .sort-container span.customSelect {
  z-index: initial;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  padding: 0;
  border: 0;
}
.category-container .products-grid-container {
  margin: 0px -12px;
}
.category-container .products-grid-container .grmProductCard {
  border: 1px solid #f7f7f7;
  border-radius: 12px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
  box-shadow: 0 3px 4px 0 rgba(120, 120, 120, 0.3);
}
.category-container .products-grid-container .grmProductCard:hover {
  -webkit-box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
  box-shadow: 0 3px 8px 0 rgba(120, 120, 120, 0.4);
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner {
  position: relative;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets {
  position: absolute;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  position: absolute;
  transition: all .1s;
  cursor: pointer;
  white-space: nowrap;
  min-width: 42px;
  min-height: 24px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.sale {
  background-color: #D13913;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.refurb {
  background-color: #595959;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.download {
  background-color: #7157D9;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.explicit {
  background-color: #96622D;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new {
  background-color: #006618;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.living-green {
  background-color: #008075;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.new-markdown {
  background-color: #C60C29;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.minority-owned {
  background-color: #8f398f;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets .product-widget.best-buy {
  background-color: #FEEE6C;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-widgets > li:not(:last-child) span.widget-label {
  display: none;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget {
  position: relative;
  margin-bottom: 6px;
  margin-left: 0px !important;
  left: 8px !important;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner:hover > .product-widgets .product-widget span.widget-label {
  display: inline;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
  position: absolute;
  right: 12px;
  z-index: 2;
  display: none;
  height: 40px;
  border-radius: 0 0 0 2px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
@media only screen and (max-width: 667px) {
  .category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container {
    display: flex;
  }
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav {
  opacity: 0.6;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav:hover {
  opacity: 1;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav img {
  height: 24px;
  width: 24px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited {
  /*background: $color-white
    url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A") 
    no-repeat center center;*/
  opacity: 1;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited img {
  opacity: 0;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited div.icon-container {
  display: block;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveFav.favorited i {
  display: block;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart {
  opacity: 0.6;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart:hover {
  opacity: 1;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart img {
  height: 24px;
  width: 24px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A") no-repeat center center;
  padding: 5px 10px 2px 14px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted img {
  opacity: 0;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted div.icon-container {
  display: none;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.addremoveCart.carted i {
  display: none;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a {
  padding: 8px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a.progress {
  opacity: 0.3;
  cursor: progress;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .product-actions-container a:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner:hover .product-actions-container {
  display: flex;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage {
  position: relative;
  width: 100%;
  text-align: center;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink {
  position: relative;
  display: block;
  padding: 16px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img {
  max-width: 100%;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt {
  display: none;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemLink img.merchItemAlt.active {
  display: block;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .gridItemImage .gridItemActions {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  margin: 0;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo {
  text-align: left;
  padding: 0px 16px 16px 16px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .gridItemLink {
  display: block;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo p:not(:last-child) {
  margin-bottom: 3px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container {
  height: 16px;
  margin-bottom: 3px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch {
  display: inline-block;
  padding-right: 4px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark {
  display: none;
  width: 22px;
  height: 22px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  position: absolute;
  left: -3px;
  top: -3px;
  transform: rotate(45deg);
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_stem,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_stem {
  position: absolute;
  width: 1px;
  height: 7px;
  background-color: #FFFFFF;
  left: 12px;
  top: 7px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color span.po-color-checkmark .po-color-checkmark_kick,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color span.po-color-checkmark .po-color-checkmark_kick {
  position: absolute;
  width: 5px;
  height: 1px;
  background-color: #FFFFFF;
  left: 8px;
  top: 14px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.color.selected span.po-color-checkmark,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.color.selected span.po-color-checkmark {
  display: inline-block;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 9px;
  color: #ffffff;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .color-swatch span.number:after,
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .color-swatch-container .color-swatches .more-swatch span.number:after {
  content: "+1";
  position: absolute;
  left: 4px;
  top: 2px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .description {
  color: #595959;
  font-size: 12px;
  position: relative;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .price {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .productId {
  color: #58595A;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .strikeout {
  margin: 0;
  text-decoration: line-through;
  color: #D0023E;
  font-size: 14px;
  line-height: 18px;
}
.category-container .products-grid-container .grmProductCard .gridItem .gridItemInner .merchInfo .ratingQuantity {
  color: #6A6A6A;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
.category-container .products-grid-container .owl-carousel.colorChoiceItemCarousel {
  margin-bottom: -0.5px;
}
.category-container .products-grid-container .grmProductCard {
  margin: 12px;
}
.category-container .products-grid-container .row.no-gutters {
  display: flex;
  flex-wrap: wrap;
}
.category-container .pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 24px;
}
.category-container .pagination-container .cat-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e7e8e9;
  border-radius: 2px;
  background-color: #FFFFFF;
}
.category-container .pagination-container .cat-pagination .pag-carousel-prev-action {
  cursor: pointer;
  border-right: 1px solid #e7e8e9;
}
.category-container .pagination-container .cat-pagination .pag-carousel-prev-action .pag-carousel-prev img {
  width: 15px;
}
.category-container .pagination-container .cat-pagination .pag-carousel-next-action {
  cursor: pointer;
  border-left: 1px solid #e7e8e9;
}
.category-container .pagination-container .cat-pagination .pag-carousel-next-action .pag-carousel-next img {
  width: 15px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel {
  width: 200px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel.no-carousel {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel.no-carousel .item {
  min-width: 40px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item {
  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;
  height: 34px;
  margin: 0px 5px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  cursor: pointer;
  padding: 4px 9px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a:focus {
  background-color: #F2F4F6;
  outline: 3px dotted #595959 !important;
  border: 1px solid transparent;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a:hover {
  background-color: #F2F4F6;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a.active {
  display: inline-block;
  background-color: #F2F4F6;
  border-radius: 2px;
  color: #006618;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a.page-ellipse {
  cursor: context-menu;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a.page-ellipse:focus {
  background: none;
  outline: 0 !important;
}
.category-container .pagination-container .cat-pagination #category-pagination-carousel .item a.page-ellipse:hover {
  background: none;
}

.category-container.search-results.no-results-found {
  max-width: 1140px;
  margin: 0 auto;
}
.category-container.search-results .search-heading-container {
  display: block;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 0 20px 0;
}
.category-container.search-results .search-heading-container.no-results-space {
  padding: 0;
  padding-bottom: 25px;
  border-bottom: 1px solid #dedfe1;
}
.category-container.search-results .search-heading-container .result-count-label .show-result {
  color: #595959;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.category-container.search-results .search-heading-container .result-count-label .for-query {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-transform: capitalize;
}
.category-container.search-results .search-heading-container .result-count-label .no-result {
  color: #595959;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  display: block;
  padding-bottom: 10px;
}
.category-container.search-results .search-heading-container .result-count-label .no-result-hint {
  color: #595959;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  display: block;
}
.category-container.search-results .search-heading-container .view-in-events-wrapper .view-in {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}
.category-container.search-results .search-heading-container .view-in-events-wrapper .view-in-link a {
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  text-decoration: underline;
}
.category-container.search-results .search-heading-container .result-sorting-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}
@media (max-width: 575.98px) {
  .category-container.search-results .search-heading-container .result-sorting-container {
    display: grid !important;
  }
}
.category-container.search-results .search-heading-container .result-sorting-container .filter-by-container {
  height: 40px;
  padding: 12px;
  border-radius: 25px;
  margin-right: 8px;
  margin-bottom: 12px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #E7E8E9;
}
@media (max-width: 767px) {
  .category-container.search-results .search-heading-container .result-sorting-container .filter-by-container {
    border-radius: 25px;
    margin-right: 12px;
  }
}
.category-container.search-results .search-heading-container .result-sorting-container .filter-by-container img.sort-png {
  height: 20px;
  padding-right: 10px;
}
.category-container.search-results .search-heading-container .result-sorting-container .filter-by-container span.filter-by-label {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 0;
  border: 0;
}
.category-container.search-results .search-heading-container .result-sorting-container .filter-by-container img.down-arrow-png {
  height: 20px;
  padding-left: 10px;
}
.category-container.search-results .search-heading-container .result-sorting-container .sort-container {
  height: 40px;
  padding: 12px;
  border-radius: 25px;
  margin-right: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #E7E8E9;
  z-index: 1;
}
@media (max-width: 767px) {
  .category-container.search-results .search-heading-container .result-sorting-container .sort-container {
    border-radius: 25px;
    /*margin-right: 0px;*/
  }
}
.category-container.search-results .search-heading-container .result-sorting-container .sort-container img.sort-png {
  height: 20px;
  padding-right: 10px;
}
.category-container.search-results .search-heading-container .result-sorting-container .sort-container select {
  margin: 0;
  padding: 12px;
  border: 0;
}
.category-container.search-results .search-heading-container .result-sorting-container .sort-container span.customSelect {
  z-index: initial;
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 0;
  border: 0;
}
.category-container.search-results .search-heading-container .result-sorting-container .sort-container img.down-arrow-png {
  height: 20px;
  padding-left: 10px;
}

@media (max-width: 991.98px) {
  .category-container .masthead-container {
    margin: 0px -15px;
    padding: 0px 12px;
  }

  .filter-container-overlay {
    display: none;
    z-index: 9999;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    float: none;
    overflow: hidden;
  }
  .filter-container-overlay.show {
    display: block;
  }
  .filter-container-overlay .filter-container {
    background: #fff;
    padding: 20px 14PX 20PX 4PX;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
  .filter-container-overlay .filter-container .points-go-wrapper {
    display: none;
  }
  .filter-container-overlay .filter-container .filter-actions-container {
    padding-bottom: 15px;
  }
  .filter-container-overlay .filter-container .filter-actions-container .filter-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid #d8d8d8;
  }
  .filter-container-overlay .filter-container .filter-actions-container .filter-actions #filter-cancel {
    width: 35%;
    border-radius: 2px;
    background-color: #ffffff;
    border: 1px solid #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.45px;
    line-height: 17px;
    text-align: center;
  }
  .filter-container-overlay .filter-container .filter-actions-container .filter-actions #filter-apply {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    width: 60%;
  }

  .category-container
  .products-grid-container
  .gridItem
  .gridItemInner
  .product-actions-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .filter-container-overlay .filter-container {
    width: 100%;
  }

  .category-container .category-heading-container {
    display: block;
  }
  .category-container .category-heading-container .result-sorting-container {
    padding-top: 10px;
  }
  .category-container .category-heading-container .result-sorting-container .filter-by-container {
    width: 44%;
    border-radius: 25px;
    margin-right: 8px;
    margin-bottom: 12px;
    padding: 0px 20px;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .category-container .category-heading-container .result-sorting-container .filter-by-container {
    width: 38%;
  }
}
@media (max-width: 575.98px) {
  .category-container .category-heading-container .result-sorting-container .sort-container {
    border-radius: 25px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .category-container .category-heading-container .result-sorting-container .page-size-mobile {
    width: 100% !important;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .category-container .category-heading-container .result-sorting-container .filter-popup-point {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .category-container .category-carousel-container .carousel-prev-action {
    display: none;
  }
  .category-container .category-carousel-container .carousel-next-action {
    display: none;
  }

  .category-container.search-results .breadcum-container .breadcum-list {
    margin: 10px 0;
  }
  .category-container.search-results .search-heading-container {
    display: block;
    padding: 0;
    padding-bottom: 10px;
  }
  .category-container.search-results .search-heading-container .result-count-label {
    padding-bottom: 10px;
  }
  .category-container.search-results .search-heading-container .result-sorting-container {
    padding-top: 10px;
    /*.sort-container ,*/
  }
  .category-container.search-results .search-heading-container .result-sorting-container .filter-by-container,
  .category-container.search-results .search-heading-container .result-sorting-container .filter-popup-point {
    width: 100%;
    border-radius: 25px;
    margin-right: 8px;
  }
  .category-container.search-results .search-heading-container .result-sorting-container .page-size-mobile {
    border-radius: 25px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .category-container.search-results .search-heading-container .result-sorting-container .page-size-mobile {
    width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .category-container.search-results .search-heading-container .result-sorting-container .sort-asc-desc {
    border-radius: 25px;
    margin-bottom: 12px;
    margin-right: 0px;
  }
}
.recently-viewed-prods-container.recently-viewed-slider {
  margin-left: -15px;
  margin-right: -15px;
}

.user-is-tabbing span.customSelect.customSelectFocus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}
.user-is-tabbing .category-carousel-container #product-category-carousel .cat-card a:focus {
  outline: 2px dashed #595959 !important;
  outline-offset: 1px;
}

@media print {
  .plateau_refresh .grmProductCard {
    margin: 10px !important;
    box-shadow: none !important;
    border: 1px solid #eee !important;
  }
  .plateau_refresh .grmProductCard .gridItemImage .gridItemLink {
    padding: 8px !important;
  }
  .plateau_refresh .grmProductCard .gridItemImage .gridItemLink img {
    width: 171px !important;
  }
  .plateau_refresh .grmProductCard .product-widgets {
    display: none;
  }
  .plateau_refresh .grmProductCard .merchInfo {
    height: 94px !important;
    padding: 0px 8px !important;
  }
  .plateau_refresh .grmProductCard .merchInfo .description {
    line-height: 14px !important;
    font-size: 14px !important;
    display: block !important;
  }
  .plateau_refresh footer, .plateau_refresh .stickyHeader, .plateau_refresh .jumbotron, .plateau_refresh #snackbar, .plateau_refresh #cookie_modal, .plateau_refresh .wrapper {
    display: none;
  }
  .plateau_refresh *, .plateau_refresh a, .plateau_refresh a:visited {
    text-decoration: none !important;
  }
  .plateau_refresh a[href]:after {
    content: "" !important;
  }
  .plateau_refresh .row.no-gutters > [class^="col-"], .plateau_refresh .row.no-gutters > [class*=" col-"] {
    width: 25%;
  }
  .plateau_refresh .printpagebreak {
    page-break-after: always;
  }
}
@media (min-width: 360px) and (max-width: 411px) {
  .category-container .category-carousel-container #product-category-carousel .cat-card .cat-card-preview img {
    height: auto;
  }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .category-container .category-carousel-container #product-category-carousel .cat-card .cat-card-preview img {
    height: auto;
  }
}
@media (min-width: 896px) and (max-width: 900px) {
  .category-container .category-carousel-container #product-category-carousel .cat-card .cat-card-preview img {
    height: auto;
  }
}
.product-section-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1440px) {
  .product-section-container {
    width: 1440px;
  }
}
@media (min-width: 1919px) {
  .product-section-container {
    width: 1440px;
  }
}
@media (min-width: 1920px) {
  .product-section-container {
    width: 1900px;
  }
}
@media (min-width: 2560px) {
  .product-section-container {
    width: 1920px;
  }
}
@media (min-width: 3440px) {
  .product-section-container {
    width: 1920px;
  }
}
@media (min-width: 1920px) and (max-width: 2560px) {
  .category-container .masthead-container .masthead-img {
    width: 100%;
    max-height: 354px;
    border-radius: 12px;
  }
}
.filter-options {
  /* width */
  /* Track */
  /* Handle */
}
.filter-options.partially-expanded {
  max-height: 136px;
  overflow: hidden;
}
.filter-options::-webkit-scrollbar {
  width: 4px;
}
.filter-options::-webkit-scrollbar-track {
  background-color: #D8D8D8;
  border-radius: 2px;
}
.filter-options::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 2px;
}

.masthead-info {
  background-color: #F6F7F8;
  padding: 24px;
}

.masthead-info-with-desc {
  background-color: #F6F7F8;
  padding: 24px;
  border-radius: 0px 0px 12px 12px;
}

.masthead-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 33.6px;
  letter-spacing: -0.6px;
}

.masthead_description_info {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
}

@media (max-width: 425px) {
  .category-carousel-container .owl-item {
    width: 204px !important;
    /* Adjust as per your design */
  }
}
@media (min-width: 426px) and (max-width: 1024px) {
  .category-carousel-container .owl-item {
    width: 200px !important;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .category-carousel-container .owl-item {
    width: 220px !important;
  }
}
@media (min-width: 1440px) {
  .category-carousel-container .owl-item {
    width: 230px !important;
  }
}
@media (min-width: 1920px) {
  .category-carousel-container .owl-item {
    width: 280px !important;
  }
}
@media (min-width: 1900px) {
  .category-carousel-container .owl-item {
    width: 300px !important;
  }
}
@media (min-width: 2560px) {
  .category-carousel-container .owl-item {
    width: 245px !important;
  }
}
@media (max-width: 375px) {
  .category-carousel-container .owl-item {
    width: 184px !important;
    /* Adjust as per your design */
  }
}
/*Category left nave -4583 init*/
@media only screen and (min-device-width: 600px) {
  .page-count-lable {
    float: left;
    font-weight: bold;
    color: #4A5465;
    margin-top: 15px;
  }
}
@media only screen and (max-device-width: 600px) {
  /* Change to whatever media query you require */
  .page-count-lable {
    float: none;
    font-weight: bold;
    color: #4A5465;
    margin-top: 15px;
    text-align: center;
  }

  /*.category-wrapper {
      display: inline-grid;
      margin-left: 40%;
      padding-top: 7%; 
  }*/
  .mobile-page-align {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    height: 0px;
    /* height: 100px;*/
  }

  .mobile-page-align-inner {
    /*height: 100px;*/
    margin: 0 auto;
    width: 100px;
    /*margin-top: 16px;*/
  }

  .dropdown-toggle {
    margin-top: 8%;
    margin-right: 15%;
  }
}
@media only screen and (min-device-width: 768px) {
  /* More then mobile screen*/
  .pagination-total-count-align {
    float: left;
    margin-top: 36px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
  }

  .pagination-section-align {
    text-align: center;
  }

  .pagination-dropdown-div-align {
    float: right;
    text-align: right;
    margin-top: 20px;
  }

  .page-num-cls-info {
    width: 100px;
    float: right;
  }
}
@media only screen and (max-device-width: 767px) {
  /*Mobile*/
  .pagination-total-count-align {
    float: none;
    text-align: center;
    margin-top: 36px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
  }

  .pagination-section-align {
    text-align: center;
    margin-bottom: 10px;
  }

  .pagination-dropdown-div-align {
    float: none;
    text-align: center;
  }

  .page-num-cls-info {
    width: 100px;
    margin: 0 auto;
  }

  .pagination-container-mobile-align {
    padding-top: 12px !important;
  }
}
/*4583 end*/
@-moz-document url-prefix() {
  .filter-options {
    scrollbar-width: thin;
    scrollbar-color: gray  #D8D8D8;
  }
}
@media (max-width: 575.98px) {
  .filter-mobile-funnel-align {
    padding-top: 10px;
  }
}
.merchItem {
  border-radius: 15px;
}

/* 
Register
*/
.register-form .formfield {
  margin-bottom: 29px;
}
.register-form input[type='email'],
.register-form input[type='password'],
.register-form input[type='text'],
.register-form textarea, .register-form .select-container {
  margin-bottom: 0;
}
.register-form .error-msg {
  color: #D0023E;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 12px;
  opacity: 0;
  padding-left: 0px;
  position: relative;
  right: 0px;
}
.register-form .error-msg span {
  margin-top: 0px;
  display: inline;
}
.register-form .error-msg img.grm-png-icon {
  width: 10px;
  margin-right: 3px;
}
.register-form.field-error .error-msg-container .error-msg {
  opacity: 1;
}
.register-form .reg-password-rules {
  display: none;
}

@keyframes grm-modal-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grm-modal-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.grm-modal {
  display: none;
}
.grm-modal.grm-modal--show, .grm-modal.grm-modal--hide {
  display: flex;
}
.grm-modal.grm-modal--show {
  animation: grm-modal-open 0.5s;
}
.grm-modal.grm-modal--hide {
  animation: grm-modal-close 0.5s;
}
.grm-modal.grm-modal--align {
  padding: 0;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.grm-modal.grm-modal--align .grm-modal__container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #888888;
  margin: auto;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header {
  min-height: 72px;
  position: relative;
  border-radius: 2px 2px 0 0;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header.box-shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header .grm-modal__header--envelop {
  width: 90%;
  min-height: 80px;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__title {
  text-transform: uppercase;
  color: #000;
  font-family: "Barlow",Helvetica,Arial,sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 22px;
  padding: 20px 0px 0px 20px;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__subtitle {
  text-transform: none;
  color: #000;
  font-family: "Barlow",Helvetica,Arial,sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
  padding: 0px 0px 0px 20px;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header .grm-modal__close--x {
  position: absolute;
  top: 0;
  right: 0;
  height: 24px;
  width: 24px;
  margin: 24px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20fill='currentColor'%20class='bi%20bi-x'%20viewBox='0%200%2016%2016'%3E%3Cpath%20d='M4.646%204.646a.5.5%200%200%201%20.708%200L8%207.293l2.646-2.647a.5.5%200%200%201%20.708.708L8.707%208l2.647%202.646a.5.5%200%200%201-.708.708L8%208.707l-2.646%202.647a.5.5%200%200%201-.708-.708L7.293%208%204.646%205.354a.5.5%200%200%201%200-.708'/%3E%3C/svg%3E") no-repeat right top;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__header .grm-modal__close--x:hover {
  cursor: pointer;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__body {
  padding: 20px;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__body a {
  color: #008a21;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__footer {
  display: flex;
  padding: 20px;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__footer.start {
  align-items: center;
  justify-content: flex-start;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__footer.end {
  align-items: center;
  justify-content: flex-end;
}
.grm-modal.grm-modal--align .grm-modal__container .grm-modal__footer.center {
  align-items: center;
  justify-content: center;
}

#cookie_modal {
  top: initial;
  left: initial;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  justify-content: flex-end;
  align-items: flex-end;
  background: transparent;
}
#cookie_modal .grm-modal__container {
  margin: 0px 16px 16px 0px;
  border: none;
  border-radius: 2px;
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
}
#cookie_modal .grm-modal__container .grm-modal__header {
  min-height: auto;
}
#cookie_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop {
  min-height: auto;
}
#cookie_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__title {
  text-transform: initial;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.56px;
  line-height: 22px;
  padding: 16px 21px 0px 21px;
}
#cookie_modal .grm-modal__container .grm-modal__body {
  padding: 16px 21px 0px 21px;
}
#cookie_modal .grm-modal__container .grm-modal__body .cookie-notice {
  color: #000000;
  font-size: 14px;
  letter-spacing: -0.26px;
  line-height: 24px;
  margin: 0px;
}
#cookie_modal .grm-modal__container .grm-modal__footer {
  padding: 16px 21px 21px 21px;
}
#cookie_modal .grm-modal__container .grm-modal__footer .cookie-accept {
  margin-right: 20px;
}
#cookie_modal .grm-modal__container .lineBreak-cookie {
  display: none;
}
#cookie_modal .grm-modal__container .space-cookie {
  display: unset;
}
@media only screen and (max-width: 650px) {
  #cookie_modal .grm-modal__container .cookie-detail {
    padding-right: 38%;
  }
  #cookie_modal .grm-modal__container .lineBreak-cookie {
    display: unset;
  }
  #cookie_modal .grm-modal__container .space-cookie {
    display: none;
  }
}

#add_to_cart_modal .grm-modal__container {
  align-self: center;
}
#add_to_cart_modal .grm-modal__container .grm-modal__header {
  border-radius: 2px 2px 0 0;
  background-color: #F2F4F6;
  border: 1px solid #E8E8E8;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details {
  max-height: 350px;
  overflow-y: auto;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 15px;
  padding: 20px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-img img {
  height: 100px;
  width: 100px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-body .product-item-options {
  padding-bottom: 10px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__footer .view-cart {
  width: 100%;
  margin-right: 8px;
}
#add_to_cart_modal .grm-modal__container .grm-modal__footer .continue-shopping {
  width: 100%;
}

@media (max-width: 575.98px) {
  #add_to_cart_modal {
    background-color: #ffffff;
  }
  #add_to_cart_modal .grm-modal__container {
    margin: 0;
    align-self: auto;
  }
  #add_to_cart_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__title, #add_to_cart_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__subtitle {
    padding-left: 16px;
  }
  #add_to_cart_modal .grm-modal__container .grm-modal__body {
    padding: 10px 16px;
  }
  #add_to_cart_modal .grm-modal__container .grm-modal__body .item-details .product-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  #add_to_cart_modal .grm-modal__container .grm-modal__footer {
    flex-direction: column;
    padding: 20px 16px;
  }
  #add_to_cart_modal .grm-modal__container .grm-modal__footer .view-cart {
    margin-right: 0px;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 212px) and (max-width: 414px) {
  .cart_edit_thumbnail {
    width: auto !important;
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 415px) and (max-width: 470px) {
  .cart_item_titvle_align {
    padding-left: 15px;
  }
}
@media only screen and (min-width: 415px) and (max-width: 576px) {
  .align-thumbnail-cart {
    padding-top: 15px;
  }
}
@media only screen and (min-width: 415px) and (max-width: 3440px) {
  .cart_edit_thumbnail {
    width: auto !important;
    padding-left: 2rem;
  }

  .align-thumbnail-cart {
    padding-top: 15px;
  }
}
#my-whish-list {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  padding: 24px 30px 0px 30px;
  border-left: 1px solid #E7E8E9;
}
#my-whish-list .whish_list__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 29px;
  padding-bottom: 24px;
}
#my-whish-list .wishlist-sortby {
  float: right;
  position: relative;
  bottom: 40px;
}
#my-whish-list .note-align {
  width: 100%;
  position: relative;
  top: -21px;
}
#my-whish-list ul.wish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#my-whish-list ul.wish-list li.wish-list-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 12px;
  padding: 20px 15px;
  margin-bottom: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-img img {
  height: 100px;
  width: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #my-whish-list ul.wish-list li.wish-list-item .product-item-img img {
    height: 86px;
    width: 86px;
  }
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-title .notavailable {
  color: #E31C3D;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-body .product-item-options {
  padding-bottom: 10px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-body .product-item-options .grm-chips .grm-chip img {
  display: none;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img {
  display: inline-block;
  width: 10px;
}
#my-whish-list ul.wish-list li.wish-list-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .wish-list-actions {
  list-style: none;
  margin: 0;
  padding: 5px 0px;
  font-size: 0;
  text-align: right;
}
#my-whish-list ul.wish-list li.wish-list-item .wish-list-actions .wish-list-edit {
  display: inline-block;
  font-size: 12px;
  margin-right: 15px;
}
#my-whish-list ul.wish-list li.wish-list-item .wish-list-actions .wish-list-edit img {
  width: 15px;
}
#my-whish-list ul.wish-list li.wish-list-item .wish-list-actions .wish-list-to-cart {
  display: inline-block;
  font-size: 12px;
}
#my-whish-list ul.wish-list li.wish-list-item .wish-list-actions .wish-list-to-cart img {
  width: 15px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal a {
  color: #000000;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container {
  text-align: left;
  align-self: center;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__header {
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #E8E8E8;
  margin: 0px 20px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__title {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  color: #000000;
  padding-left: 0px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__subtitle {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  color: #000000;
  padding-bottom: 16px;
  padding-left: 0px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body {
  padding: 16px 20px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container {
  max-height: 350px;
  overflow-y: auto;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group em {
  font-style: normal;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option-label {
  padding: 0;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container {
  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;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option:hover {
  background-color: #F2F4F6;
  cursor: pointer;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option.selected {
  background-color: rgba(0, 138, 33, 0.1);
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option.selected + .selected-checkmark {
  height: 12px;
  width: 12px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: inherit;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 10px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .selected-checkmark {
  display: none;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option {
  border: 1px solid #58595A;
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 8px 15px 0 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.active, #my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.selected {
  border: 1px solid #006618;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.inactiveLink {
  background: linear-gradient(to left top, #FFFFFF calc(50% - 2px), #58595A, #FFFFFF calc(50%));
  opacity: .5;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option a {
  padding: 10px 8px;
  display: inline-block;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect {
  width: 100%;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  min-width: 80px;
  height: 40px;
  border-radius: 4px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span {
  height: 100%;
  min-width: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  border-radius: 0px 4px 4px 0px;
  border-left: 1px solid #676869;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span p {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0px 5px;
  border-radius: 4px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value {
  justify-content: center;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span {
  width: 100%;
  margin-left: 0px;
  border-left: none;
  border-radius: 4px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span p {
  margin-left: 0px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink {
  background: none;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a {
  cursor: not-allowed;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a span p {
  background: linear-gradient(to left top, #ffffff calc(50% - 2px), #555555, #ffffff calc(50%));
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected {
  background: transparent;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span {
  border-left: 1px solid #008a21;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span p {
  background-color: rgba(0, 138, 33, 0.1);
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value {
  border-left: none;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value span {
  border-left: none;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .dropdownSelect {
  width: 100%;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .dropdownSelect select {
  width: 80%;
  margin-top: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .shortTxt {
  width: 100%;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .shortTxt input {
  margin-top: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .longTxt {
  width: 100%;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .longTxt textarea {
  width: 100%;
  margin-top: 8px;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect label {
  color: #000000;
  margin: 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease,
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border: 1px solid #000000;
  margin: 8px 0;
  padding: 0px 8px;
  font-size: 24px;
  text-decoration: none;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers input {
  width: 42px;
  height: 42px;
  margin: 8px 0;
  text-align: center;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
}
#my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .updateWishlistBtn {
  width: 100%;
  color: #ffffff;
  margin: 24px 0px;
}

@media (max-width: 991.98px) {
  #my-whish-list {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
  #my-whish-list ul.wish-list li.wish-list-item .product-item-img img {
    height: 98px;
    width: 98px;
  }
}
@media (max-width: 575.98px) {
  #my-whish-list {
    padding: 32px 0px 0px 1px;
  }
  #my-whish-list ul.wish-list li.wish-list-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  #my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container {
    margin: 16px 16px auto 16px;
    align-self: auto;
  }
  #my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__header .grm-modal__close--x {
    margin: 14px 0px;
  }
  #my-whish-list ul.wish-list li.wish-list-item .fav_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container {
    max-height: 340px;
  }
  #my-whish-list .wishlist-sortby {
    float: none;
    position: static;
  }
  #my-whish-list .sort-wishlist-align {
    width: 100%;
  }
}
#order-confirmation {
  margin-bottom: 150px;
}
#order-confirmation .order__summary {
  border-bottom: 1px solid #DEDFE1;
  border-radius: 0.5px;
  padding-bottom: 32px;
}
#order-confirmation .order__summary .order_summary_title {
  opacity: 0.9;
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.38px;
  line-height: 24px;
}
#order-confirmation .order__summary .order_summary_text {
  color: #000000;
  font-family: "Barlow",Helvetica,Arial,sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
}
#order-confirmation .order_confirmation_id {
  display: flex;
  padding: 16px 0px;
  border-bottom: 1px solid #DEDFE1;
  border-radius: 0.5px;
  margin-bottom: 8px;
}
#order-confirmation .order_confirmation_id .order_number {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  flex-grow: 1;
}
#order-confirmation .order_confirmation_id .order_number .order_number_link {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  text-decoration: underline;
}
#order-confirmation .order_confirmation_id .order_print .print-btn {
  height: 40px;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.52px;
  line-height: 19px;
  padding: 10px 15px;
}
#order-confirmation .order_confirmation_id .order_print .print-btn img {
  height: 18px;
  width: 18px;
}
#order-confirmation .product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#order-confirmation .product-list .product-list-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  padding: 20px 15px;
  margin-bottom: 8px;
}
#order-confirmation .product-list .product-list-item .product-item-img img {
  height: 100px;
  width: 100px;
}
#order-confirmation .product-list .product-list-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#order-confirmation .product-list .product-list-item .product-item-title .notavailable {
  color: #E31C3D;
}
#order-confirmation .product-list .product-list-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#order-confirmation .product-list .product-list-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
#order-confirmation .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip img {
  display: none;
}
#order-confirmation .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img {
  display: inline-block;
  width: 10px;
}
#order-confirmation .product-list .product-list-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#order-confirmation .product-list .product-list-item .courier_delivery {
  padding-top: 8px;
}
#order-confirmation .product-list .product-list-item .courier_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
#order-confirmation .product-list .product-list-item .courier_delivery .bullet_seperator {
  padding-right: 4px;
}
#order-confirmation .product-list .product-list-item .courier_delivery .esitmated_date {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
#order-confirmation .product-list .product-list-item .electronic_delivery {
  padding-top: 8px;
}
#order-confirmation .product-list .product-list-item .electronic_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
#order-confirmation .order_shipping_address {
  border: 1px solid #dedfe1;
  border-radius: 2px;
  background-color: #fff;
  padding: 20px 15px;
  margin-bottom: 8px;
}
#order-confirmation .order_shipping_address .shipping_address_title {
  opacity: .9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DEDFE1;
}
#order-confirmation .order_shipping_address .shipping_address_wrapper {
  display: flex;
}
#order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_text {
  flex-grow: 1;
}
#order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_text .addr_line {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
#order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_contact {
  flex-grow: 1;
}
#order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_contact .contact_line {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
#order-confirmation .order_price_summary {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 20px 15px;
}
#order-confirmation .order_price_summary .order_price_summary_title {
  opacity: 0.9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
}
#order-confirmation .order_price_summary .price_list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#order-confirmation .order_price_summary .price_list .price_item {
  font-size: 14px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}
#order-confirmation .order_price_summary .price_list .price_item .price_label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
}
#order-confirmation .order_price_summary .price_list .price_item .price_value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
}
#order-confirmation .order_price_summary .price_list .price_item.price_promo .price_value {
  color: #d0023e;
}
#order-confirmation .order_price_summary .price_total {
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #DEDFE1;
  border-radius: 0.5px;
}
#order-confirmation .order_price_summary .price_total .price_label {
  opacity: 0.9;
  font-size: 18px;
  letter-spacing: -0.34px;
  line-height: 22px;
}
#order-confirmation .order_price_summary .price_total .price_value {
  opacity: 0.9;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.34px;
  line-height: 22px;
  color: #008A21;
}
#order-confirmation .order_confirmation_actions {
  margin-top: 16px;
  display: flex;
}
#order-confirmation .order_confirmation_actions .return_to_marketplace {
  flex-grow: 1;
}
#order-confirmation .order_confirmation_actions .view_order_status {
  flex-grow: 1;
  margin-left: 16px;
}
#order-confirmation .order_confirmation_actions .grm-btn {
  width: 100%;
  text-align: center;
}
#order-confirmation .order_confirmation_action_xs {
  display: none;
}

@media (max-width: 575.98px) {
  #order-confirmation .order__summary {
    padding-bottom: 12px;
  }
  #order-confirmation .product-list .product-list-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  #order-confirmation .product-list .product-list-item .courier_delivery .bullet_seperator {
    display: none;
  }
  #order-confirmation .product-list .product-list-item .courier_delivery .shipping_method_name {
    display: block;
  }
  #order-confirmation .product-list .product-list-item .courier_delivery .esitmated_date {
    display: block;
  }
  #order-confirmation .order_shipping_address .shipping_address_wrapper {
    flex-direction: column;
  }
  #order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_text {
    padding-bottom: 8px;
    border-bottom: 1px solid #DEDFE1;
  }
  #order-confirmation .order_shipping_address .shipping_address_wrapper .shipping_address_contact {
    padding-top: 8px;
  }
  #order-confirmation .order_confirmation_actions .return_to_marketplace {
    display: none;
  }
  #order-confirmation .order_confirmation_actions .view_order_status {
    margin: 0;
  }
  #order-confirmation .order_confirmation_action_xs {
    margin: 16px 0px;
    display: flex;
  }
  #order-confirmation .order_confirmation_action_xs .grm-btn {
    width: 100%;
    text-align: center;
  }
  #order-confirmation .order_confirmation_action_xs .return_to_marketplace {
    flex-grow: 1;
  }
}
@media print {
  #order-confirmation .order_print {
    display: none;
  }
  #order-confirmation .order_confirmation_actions {
    display: none;
  }
  #order-confirmation .order_confirmation_action_xs {
    display: none;
  }
}
.skillsoft-link-wrapper {
  word-break: break-all;
}

.skillsoft-linegap {
  margin-top: 5px;
}

.skillsoft-detail-item {
  font-weight: bold;
}

.final-review-container {
  padding-right: 15px;
  padding-left: 15px;
}
.final-review-container .final-review-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.38px;
  line-height: 24px;
  padding: 20px 0px;
}
.final-review-container .product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.final-review-container .product-list .product-list-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  padding: 20px 15px;
  margin-bottom: 8px;
  background: #ffffff;
}
.final-review-container .product-list .product-list-item .product-item-img {
  text-align: center;
}
.final-review-container .product-list .product-list-item .product-item-img img {
  height: 100px;
  width: 100px;
}
.final-review-container .product-list .product-list-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
.final-review-container .product-list .product-list-item .product-item-title .notavailable {
  color: #E31C3D;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-product-id .bullet_seperator {
  padding: 0px 4px;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container {
  margin: 2px 15px 0 0px;
  position: absolute;
  right: 0px;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body {
  overflow-y: auto;
  text-align: center;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body .fpd_cust_img {
  width: 100%;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip img {
  display: none;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img {
  display: inline-block;
  width: 10px;
}
.final-review-container .product-list .product-list-item .product-item-body .product-item-options .grm-chips .view-fpd-modal {
  cursor: pointer;
}
.final-review-container .product-list .product-list-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
.final-review-container .product-list .product-list-item .courier_delivery {
  padding-top: 8px;
}
.final-review-container .product-list .product-list-item .courier_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
.final-review-container .product-list .product-list-item .courier_delivery .bullet_seperator {
  padding-right: 4px;
}
.final-review-container .product-list .product-list-item .courier_delivery .esitmated_date {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
.final-review-container .product-list .product-list-item .electronic_delivery {
  padding-top: 8px;
}
.final-review-container .product-list .product-list-item .electronic_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
.final-review-container .order_shipping_address {
  border: 1px solid #dedfe1;
  border-radius: 2px;
  background-color: #fff;
  padding: 20px 15px;
  margin-bottom: 8px;
}
.final-review-container .order_shipping_address .shipping_address_title {
  opacity: .9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
  padding-bottom: 15px;
}
.final-review-container .order_shipping_address .shipping_edit {
  text-align: right;
  position: relative;
  top: -2px;
}
.final-review-container .order_shipping_address .shipping_edit .btn-unstyled {
  font-size: 12px;
  color: #58595A;
  display: inline-block;
}
.final-review-container .order_shipping_address .shipping_edit .btn-unstyled img {
  width: 18px;
  padding-right: 3px;
}
.final-review-container .order_shipping_address .shipping_edit .btn-unstyled span {
  position: relative;
  top: 2px;
  font-size: 12px;
}
.final-review-container .order_shipping_address .shipping_address_wrapper {
  display: flex;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_text {
  flex-grow: 1;
}
.final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_text .addr_line {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
.final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_contact {
  flex-grow: 1;
}
.final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_contact .contact_line {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}

@media (max-width: 575.98px) {
  .final-review-container .product-list .product-list-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  .final-review-container .product-list .product-list-item .courier_delivery .bullet_seperator {
    display: none;
  }
  .final-review-container .product-list .product-list-item .courier_delivery .shipping_method_name {
    display: block;
  }
  .final-review-container .product-list .product-list-item .courier_delivery .esitmated_date {
    display: block;
  }
  .final-review-container .order_shipping_address .shipping_address_wrapper {
    flex-direction: column;
  }
  .final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_text {
    padding-bottom: 8px;
    border-bottom: 1px solid #DEDFE1;
  }
  .final-review-container .order_shipping_address .shipping_address_wrapper .shipping_address_contact {
    padding-top: 8px;
  }
}
#my-cart {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  padding: 24px 30px 0px 30px;
}
#my-cart .cart-list-col {
  margin-right: 15px;
}
#my-cart .my_cart__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 29px;
  padding-bottom: 24px;
}
#my-cart .alert-container {
  margin-right: 15px;
}
#my-cart ul.my-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 8px;
  padding: 20px 15px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 667px) {
  #my-cart ul.my-cart-list li.my-cart-list-item {
    border: none;
    border-top: 1px solid #DEDFE1;
    padding: 20px 15px 20px 0px;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item:last-child {
    border-bottom: 1px solid #DEDFE1;
  }
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-img img {
  height: 100px;
  width: 100px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-title .notavailable {
  color: #AC152F;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites {
  position: absolute;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  top: -10px;
  right: -20px;
  border-radius: 24px;
  z-index: 1;
  cursor: pointer;
  background-color: #FFFFFF;
  transition: 0.2s ease all;
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/favorites-icon-black-GRM?fmt=png-alpha&wid=18") no-repeat center;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites img {
  display: none;
  width: 20px;
  height: 20px;
  margin: 10px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites.favorited {
  background: url("https://s7d4.scene7.com/is/image/BIworldwide/heart-filled-R-icon-GRM?fmt=png-alpha&wid=18") no-repeat center;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites.favorited img {
  display: none;
  width: 20px;
  height: 20px;
  margin: 10px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites:hover {
  background-color: #FFFFFF;
  opacity: 1;
  transition: 0.2s ease all;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites.progress {
  opacity: 0.3;
  cursor: progress;
}
#my-cart ul.my-cart-list li.my-cart-list-item .moveToFavorites:hover.progress {
  opacity: 0.3;
  cursor: progress;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container {
  margin: 2px 15px 0 0px;
  position: absolute;
  right: 0px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body {
  overflow-y: auto;
  text-align: center;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body .fpd_cust_img {
  width: 100%;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-options {
  padding-bottom: 10px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-options .grm-chips .grm-chip img {
  display: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img {
  display: inline-block;
  width: 10px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .my-cart-list-actions {
  list-style: none;
  margin: 0;
  padding: 5px 0px;
  font-size: 0;
  text-align: right;
}
#my-cart ul.my-cart-list li.my-cart-list-item .my-cart-list-actions .my-cart-list-edit {
  display: inline-block;
  font-size: 12px;
  margin-right: 15px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .my-cart-list-actions .my-cart-list-edit img {
  width: 15px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .my-cart-list-actions .my-cart-list-delete {
  display: inline-block;
  font-size: 12px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .my-cart-list-actions .my-cart-list-delete img {
  width: 15px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal a {
  color: #000000;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container {
  text-align: left;
  align-self: center;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__header {
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #E8E8E8;
  margin: 0px 20px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__title {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  color: #000000;
  padding-left: 0px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__header .grm-modal__header--envelop .grm-modal__subtitle {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  color: #000000;
  padding-bottom: 16px;
  padding-left: 0px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body {
  padding: 16px 20px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container {
  max-height: 350px;
  overflow-y: auto;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group em {
  font-style: normal;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option-label {
  padding: 0;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container {
  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;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option:hover {
  background-color: #F2F4F6;
  cursor: pointer;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option.selected {
  background-color: rgba(0, 138, 33, 0.1);
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .swatch.product-option.selected + .selected-checkmark {
  height: 12px;
  width: 12px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: inherit;
  z-index: 1;
  position: absolute;
  bottom: 0;
  right: 10px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .swatches .swatch-container .selected-checkmark {
  display: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option {
  border: 1px solid #58595A;
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 8px 15px 0 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.active, #my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.selected {
  border: 1px solid #006618;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option.inactiveLink {
  background: linear-gradient(to left top, #FFFFFF calc(50% - 2px), #58595A, #FFFFFF calc(50%));
  opacity: .5;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .product-option a {
  padding: 10px 8px;
  display: inline-block;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect {
  width: 100%;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  min-width: 80px;
  height: 40px;
  border-radius: 4px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span {
  height: 100%;
  min-width: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  border-radius: 0px 4px 4px 0px;
  border-left: 1px solid #676869;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a span p {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0px 5px;
  border-radius: 4px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value {
  justify-content: center;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span {
  width: 100%;
  margin-left: 0px;
  border-left: none;
  border-radius: 4px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option a.no-color-value span p {
  margin-left: 0px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink {
  background: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a {
  cursor: not-allowed;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.inactiveLink a span p {
  background: linear-gradient(to left top, #ffffff calc(50% - 2px), #555555, #ffffff calc(50%));
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected {
  background: transparent;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span {
  border-left: 1px solid #008a21;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a span p {
  background-color: rgba(0, 138, 33, 0.1);
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value {
  border-left: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .colorSelect .swatches .swatch-container .product-option.selected a.no-color-value span {
  border-left: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .dropdownSelect {
  width: 100%;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .dropdownSelect select {
  width: 80%;
  margin-top: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .shortTxt {
  width: 100%;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .shortTxt input {
  margin-top: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .longTxt {
  width: 100%;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container .product-option-group .longTxt textarea {
  width: 100%;
  margin-top: 8px;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect label {
  color: #000000;
  margin: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease,
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border: 1px solid #000000;
  margin: 8px 0;
  padding: 0px 8px;
  font-size: 24px;
  text-decoration: none;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-increase {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers .quantity-decrease {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .quantitySelect .quantity-modifiers input {
  width: 42px;
  height: 42px;
  margin: 8px 0;
  text-align: center;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 0;
}
#my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .updateCartListBtn {
  width: 100%;
  color: #ffffff;
  margin: 24px 0px;
}
#my-cart .my-cart-summary {
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 10px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 667px) {
  #my-cart .my-cart-summary {
    border: none;
    padding-left: 0px;
  }
}
#my-cart .my-cart-summary .cart-summary-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E7E8E9;
}
@media only screen and (max-width: 667px) {
  #my-cart .my-cart-summary .cart-summary-title {
    display: none;
  }
}
#my-cart .my-cart-summary .price_list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#my-cart .my-cart-summary .price_list .price_item {
  font-size: 14px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}
#my-cart .my-cart-summary .price_list .price_item .price_label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
}
#my-cart .my-cart-summary .price_list .price_item .price_value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
}
#my-cart .my-cart-summary .summary-hints {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 12px;
  padding-top: 10px;
}
@media only screen and (max-width: 667px) {
  #my-cart .my-cart-summary .summary-hints {
    display: none;
  }
}
#my-cart .my-cart-summary .conti-to-checkout {
  padding-top: 15px;
}
#my-cart .my-cart-promo {
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 10px;
}
@media only screen and (max-width: 667px) {
  #my-cart .my-cart-promo {
    border: none;
    padding-left: 0px;
  }
}
#my-cart .my-cart-promo .cart-promo-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25px;
  line-height: 17px;
  color: #58595A;
}
#my-cart .my-cart-promo .input-group-wrapper {
  display: flex;
  width: 100%;
  border: 1px solid #676869;
  border-radius: 2px;
  margin: 14px 0px;
}
#my-cart .my-cart-promo .input-group-wrapper .input-group-item {
  flex-grow: 1;
}
#my-cart .my-cart-promo .input-group-wrapper .input-group-item label {
  display: none !important;
}
#my-cart .my-cart-promo .input-group-wrapper .input-group-item .inputPromoCode {
  border: 0;
  border-radius: 0;
}
#my-cart .my-cart-promo .input-group-wrapper .input-group-btn {
  width: auto;
}
#my-cart .my-cart-promo .input-group-wrapper .input-group-btn button {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 0;
}
#my-cart .my-cart-promo .cart_promo_add_response {
  color: #AC152F;
}
#my-cart .my-cart-promo .promoCodeSuccessMessage {
  color: #006618;
}
#my-cart .empty-cart-container {
  border: 1px solid #E7E8E9;
  border-radius: 2px;
  background-color: #F6F7F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px;
}
#my-cart .empty-cart-container .empty-cart-icon {
  position: relative;
}
#my-cart .empty-cart-container .empty-cart-icon img {
  width: 85px;
}
#my-cart .empty-cart-container .empty-cart-icon .itemCount {
  display: block;
  position: absolute;
  color: #FFFFFF;
  background: #000000;
  text-align: center;
  border-radius: 50%;
  height: 35px;
  top: 7px;
  width: 35px;
  right: -7px;
  line-height: 1.5;
  font-size: 20px;
  border: 1.2px solid #FFFFFF;
}
#my-cart .empty-cart-container .empty-cart-heading {
  opacity: 0.9;
  color: #000000;
  font-size: 32px;
  letter-spacing: 1.34px;
  line-height: 38px;
  text-align: center;
  text-transform: uppercase;
}
#my-cart .empty-cart-container .empty-cart-sub-heading {
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
  text-align: center;
}
#my-cart #my-whish-list {
  border-left: 0px;
}

@media (max-width: 991.98px) {
  #my-cart {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item .product-item-img img {
    height: 98px;
    width: 98px;
  }
}
@media (max-width: 575.98px) {
  #my-cart {
    padding: 32px 0px 0px 1px;
  }
  #my-cart .cart-list-col {
    margin: 0px;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container {
    margin: 16px 16px auto 16px;
    align-self: auto;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__header .grm-modal__close--x {
    margin: 14px 0px;
  }
  #my-cart ul.my-cart-list li.my-cart-list-item .cart_edit_modal .grm-modal__container .grm-modal__body .product-options-container .product-options-edit-container {
    max-height: 340px;
  }
  #my-cart .summary-col.xs {
    margin-bottom: 15px;
  }
}
#my-account-wrapper {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  border-left: 1px solid #E7E8E9;
  padding: 24px 30px 0px 30px;
}
#my-account-wrapper #orderDetailsTable .order-banner-details, #my-account-wrapper #orderApprovalDetailsTable .order-banner-details {
  border-radius: 0.5px;
  background-color: rgba(151, 151, 151, 0.2);
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 16px;
}
#my-account-wrapper #orderDetailsTable .order-banner-details .order-number, #my-account-wrapper #orderApprovalDetailsTable .order-banner-details .order-number {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
}
#my-account-wrapper #orderDetailsTable .order-banner-details .order-date, #my-account-wrapper #orderApprovalDetailsTable .order-banner-details .order-date {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
}
#my-account-wrapper #orderDetailsTable .order-support .support-txt, #my-account-wrapper #orderApprovalDetailsTable .order-support .support-txt {
  font-size: 11px;
  letter-spacing: 0;
  line-height: 13px;
  margin: 20px 0px 16px 0px;
  text-align: right;
}
#my-account-wrapper #orderDetailsTable .order-support .support-cta, #my-account-wrapper #orderApprovalDetailsTable .order-support .support-cta {
  text-align: right;
}
#my-account-wrapper #orderDetailsTable .order-support .support-cta a, #my-account-wrapper #orderApprovalDetailsTable .order-support .support-cta a {
  width: auto;
  padding: 0px 30px;
}
#my-account-wrapper #orderDetailsTable .product-list, #my-account-wrapper #orderApprovalDetailsTable .product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#my-account-wrapper #orderDetailsTable .product-list .shipping_details, #my-account-wrapper #orderApprovalDetailsTable .product-list .shipping_details {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item {
  font-size: 14px;
  border: 1px solid #DEDFE1;
  border-radius: 12px;
  padding: 20px 15px;
  margin-bottom: 8px;
  background: #ffffff;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-img {
  text-align: center;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-img img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-img img {
  height: 100px;
  width: 100px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-title, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-title {
  color: #000000;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 24px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-title .notavailable, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-title .notavailable {
  color: #E31C3D;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id {
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  padding-top: 8px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .bullet_seperator, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .bullet_seperator {
  padding: 0px 4px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container {
  margin: 2px 15px 0 0px;
  position: absolute;
  right: 0px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body {
  overflow-y: auto;
  text-align: center;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body .fpd_cust_img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container .grm-modal__body .fpd_cust_img {
  width: 100%;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips {
  padding: 0px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip img {
  display: none;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .grm-chip.editable img {
  display: inline-block;
  width: 10px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .view-fpd-modal, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-options .grm-chips .view-fpd-modal {
  cursor: pointer;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-price, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-price {
  color: #006618;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 8px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .courier_delivery, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .courier_delivery {
  padding-top: 8px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .courier_delivery .shipping_method_name, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .courier_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .courier_delivery .bullet_seperator, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .courier_delivery .bullet_seperator {
  padding-right: 4px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .courier_delivery .esitmated_date, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .courier_delivery .esitmated_date {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .electronic_delivery, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .electronic_delivery {
  padding-top: 8px;
}
#my-account-wrapper #orderDetailsTable .product-list .product-list-item .electronic_delivery .shipping_method_name, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .electronic_delivery .shipping_method_name {
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.26px;
  line-height: 17px;
  padding-right: 4px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 20px 15px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .order_price_summary_title, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .order_price_summary_title {
  opacity: 0.9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 19px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_list, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_list .price_item, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_list .price_item {
  font-size: 14px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_list .price_item .price_label, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_list .price_item .price_label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_list .price_item .price_value, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_list .price_item .price_value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_total, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_total {
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #DEDFE1;
  border-radius: 0.5px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_total .price_label, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_total .price_label {
  opacity: 0.9;
  font-size: 18px;
  letter-spacing: -0.34px;
  line-height: 22px;
}
#my-account-wrapper #orderDetailsTable .order_price_summary .price_total .price_value, #my-account-wrapper #orderApprovalDetailsTable .order_price_summary .price_total .price_value {
  opacity: 0.9;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.34px;
  line-height: 22px;
  color: #008A21;
}
#my-account-wrapper #orderDetailsTable .order-history-actions, #my-account-wrapper #orderApprovalDetailsTable .order-history-actions {
  margin-top: 16px;
}
#my-account-wrapper .select-container {
  position: relative;
}
#my-account-wrapper .select-container .endor-down-arrow {
  font-size: 16px;
}
#my-account-wrapper .select-container .endor-down-arrow:after {
  color: #58595A;
}
#my-account-wrapper .select-container img.arrow-down-icon {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
#my-account-wrapper .select-container select {
  margin: 0;
}
#my-account-wrapper .select-container .customSelect {
  color: #000000;
  border: 1px solid #595959;
  border-radius: 2px;
  padding: 16px 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
}
#my-account-wrapper .select-container .customSelect .customSelectInner {
  position: relative;
  top: 2px;
  font-size: 12px;
}
#my-account-wrapper .select-container .choose_option {
  position: absolute;
  top: 0;
  left: 0;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 6px 0 2px 16px;
}
#my-account-wrapper .security-cta, #my-account-wrapper .profile-cta {
  text-align: right;
}
#my-account-wrapper .admin-management-table-edit {
  cursor: pointer;
}
#my-account-wrapper .section-wrapper {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  margin-bottom: 12px;
  padding: 0px 20px;
}
#my-account-wrapper .section-wrapper .section-title {
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 20px;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 11px;
  margin: 16px 0px;
}
#my-account-wrapper .section-wrapper .section-body .password-alert {
  margin-bottom: 18px;
}
#my-account-wrapper .section-wrapper .section-body .password-alert .password-alert-message {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 14px;
  color: #58595A;
}

.report-table {
  display: none;
  overflow: scroll;
  height: 500px;
  width: 170%;
}

@media only screen and (max-width: 300px) {
  .report-table {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .report-table {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .report-table {
    width: 100%;
  }
}
@media only screen and (max-width: 912px) {
  .report-table {
    width: 100%;
  }
}
.report-table.report-default-table {
  display: block;
}

@media (max-width: 991.98px) {
  #my-account-wrapper {
    padding: 24px 10px 0px 0px;
    border-left: none;
  }
  #my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-body .product-item-product-id .fpd_preview_modal .grm-modal__container {
    margin: 0px;
    bottom: 0px;
  }
}
@media (max-width: 575.98px) {
  #my-account-wrapper {
    padding: 32px 0px 0px 1px;
  }
  #my-account-wrapper .grm-btn {
    width: 100%;
  }
  #my-account-wrapper #orderDetailsTable .product-list .product-list-item .product-item-img img, #my-account-wrapper #orderApprovalDetailsTable .product-list .product-list-item .product-item-img img {
    height: 68px;
    width: 68px;
  }
  #my-account-wrapper #orderDetailsTable .order-support .support-cta a, #my-account-wrapper #orderApprovalDetailsTable .order-support .support-cta a {
    width: 100%;
  }
  #my-account-wrapper #orderDetailsTable .approvalsReject, #my-account-wrapper #orderApprovalDetailsTable .approvalsReject {
    margin-bottom: 16px;
  }
}
a.ordertracking-info:link {
  text-decoration: underline;
  color: #008A21;
}

a.ordertracking-info:visited {
  text-decoration: none;
  color: #551A8B;
}

a.ordertracking-info:hover, a.ordertracking-info:focus {
  text-decoration: underline;
  color: #005715;
}

a.ordertracking-info:active {
  text-decoration: underline;
  color: #551A8B;
}

.payment-container {
  padding-right: 15px;
  padding-left: 15px;
}
.payment-container .grm-checkbox input[type='radio'] + label:before {
  border-radius: 50%;
  top: 0px;
}
.payment-container .grm-checkbox input[type='radio'] + label:after {
  top: 4px;
  width: 8px;
}
.payment-container .select-container {
  position: relative;
}
.payment-container .select-container .endor-down-arrow {
  font-size: 16px;
}
.payment-container .select-container .endor-down-arrow:after {
  color: #58595A;
}
.payment-container .select-container img.arrow-down-icon {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 16px;
  height: 16px;
}
.payment-container .select-container select {
  margin: 0;
}
.payment-container .select-container .customSelect {
  color: #000000;
  border: 1px solid #595959;
  border-radius: 2px;
  padding: 16px 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
}
.payment-container .select-container .customSelect .customSelectInner {
  position: relative;
  top: 2px;
  font-size: 12px;
}
.payment-container .select-container .choose_option {
  position: absolute;
  top: 0;
  left: 0;
  color: #58595A;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 6px 0 2px 16px;
}
.payment-container .payment-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.38px;
  line-height: 24px;
  padding: 20px 0px;
}
.payment-container .am-buying-for-wrapper {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.payment-container .am-buying-for-wrapper .section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.27px;
  line-height: 20px;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 12px;
}
.payment-container .am-buying-for-wrapper .buying-for-options {
  margin-left: -15px;
  margin-top: 8px;
}
.payment-container .am-buying-for-wrapper .buying-for-options .grm-checkbox label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
}
.payment-container .am-buying-for-wrapper .buying-for-options .grm-checkbox input:disabled + label {
  cursor: not-allowed;
}
.payment-container .payment-options-wrapper {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.payment-container .payment-options-wrapper .section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.27px;
  line-height: 20px;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 12px;
}
.payment-container .payment-options-wrapper .payment-options {
  margin-left: -15px;
  margin-top: 8px;
}
.payment-container .payment-options-wrapper .payment-options .grm-checkbox label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
}
.payment-container .payment-options-wrapper .payment-options .grm-checkbox input:disabled + label {
  cursor: not-allowed;
}
.payment-container .payment-cc-wrapper .cc-details {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.payment-container .payment-cc-wrapper .cc-details .cc-details-heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.payment-container .payment-cc-wrapper .cc-details .cc-details-heading .section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.27px;
  line-height: 20px;
}
.payment-container .payment-cc-wrapper .cc-details .cc-details-heading .cc-providers img {
  width: 160px;
}
.payment-container .payment-cc-wrapper .billing-details {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.payment-container .payment-cc-wrapper .billing-details .section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.27px;
  line-height: 20px;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.payment-container .payment-cc-wrapper .billing-details .grm-checkbox {
  margin-left: -15px;
}
.payment-container .payment-cc-wrapper .billing-details .grm-checkbox label::before {
  top: 1px;
}
.payment-container .payment-cc-wrapper .billing-details .grm-checkbox label {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 19px;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
}
.payment-container .payment-cc-wrapper .billing-details .grm-checkbox input:disabled + label {
  cursor: not-allowed;
}
.payment-container .payment-invoice-wrapper {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.payment-container .payment-invoice-wrapper .section-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.27px;
  line-height: 20px;
  border-bottom: 1px solid #DEDFE1;
  padding-bottom: 12px;
  margin-bottom: 22px;
}
.payment-container .apply-certificate-wrapper {
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  background-color: #FFFFFF;
  padding: 14px 20px;
}
.payment-container .apply-certificate-wrapper .cert-title {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
  padding: 2px 0px 14px 0px;
  border-bottom: 1px solid #E7E8E9;
}
.payment-container .apply-certificate-wrapper .cert-container .cert-number, .payment-container .apply-certificate-wrapper .cert-container-display .cert-number {
  padding-top: 15px;
}
.payment-container .apply-certificate-wrapper .cert-container .info-msg-container, .payment-container .apply-certificate-wrapper .cert-container-display .info-msg-container {
  padding-top: 8px;
}
.payment-container .apply-certificate-wrapper .cert-container .info-msg-container span, .payment-container .apply-certificate-wrapper .cert-container-display .info-msg-container span {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 12px;
}

.icon-container {
  padding: 1px;
  float: left;
}

i[class^="eicon-"]::before {
  content: '';
  display: block;
  width: 0.34em;
  height: 0.34em;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-size: contain;
}

[class^="eicon-"] {
  display: block;
}

.icon-container i {
  font-size: 5em;
  background-repeat: no-repeat;
}
.icon-container .eicon-globe {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2024%2023.94'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,23.932%20C5.383,23.932%20-0.000,18.561%20-0.000,11.959%20C-0.000,5.357%205.383,-0.014%2012.000,-0.014%20C18.617,-0.014%2024.000,5.357%2024.000,11.959%20C24.000,18.561%2018.617,23.932%2012.000,23.932%20ZM20.627,16.948%20L18.156,16.948%20C17.645,18.432%2016.913,19.837%2015.974,21.110%20C17.939,20.257%2019.556,18.781%2020.627,16.948%20ZM16.009,16.948%20L13.000,16.948%20L13.000,21.471%20C14.310,20.164%2015.326,18.623%2016.009,16.948%20ZM17.000,11.959%20C17.000,10.941%2016.869,9.940%2016.641,8.966%20L13.000,8.966%20L13.000,14.952%20L16.640,14.952%20C16.869,13.978%2017.000,12.977%2017.000,11.959%20ZM11.000,16.948%20L7.989,16.948%20C8.673,18.625%209.689,20.168%2011.000,21.475%20L11.000,16.948%20ZM8.021,21.108%20C7.083,19.835%206.353,18.431%205.842,16.948%20L3.373,16.948%20C4.443,18.779%206.059,20.255%208.021,21.108%20ZM2.000,11.959%20C2.000,13.002%202.165,14.007%202.464,14.952%20L5.308,14.952%20C5.113,13.974%205.000,12.974%205.000,11.961%20C5.000,10.947%205.113,9.946%205.309,8.966%20L2.464,8.966%20C2.165,9.912%202.000,10.916%202.000,11.959%20ZM3.373,6.970%20L5.844,6.970%20C6.355,5.486%207.087,4.081%208.026,2.808%20C6.061,3.661%204.444,5.138%203.373,6.970%20ZM11.000,2.450%20C9.691,3.755%208.674,5.296%207.991,6.970%20L11.000,6.970%20L11.000,2.450%20ZM7.360,8.966%20C7.131,9.941%207.000,10.942%207.000,11.961%20C7.000,12.978%207.131,13.979%207.359,14.952%20L11.000,14.952%20L11.000,8.966%20L7.360,8.966%20ZM13.000,6.970%20L16.010,6.970%20C15.326,5.295%2014.310,3.753%2013.000,2.446%20L13.000,6.970%20ZM15.977,2.809%20C16.915,4.082%2017.646,5.487%2018.157,6.970%20L20.627,6.970%20C19.557,5.139%2017.940,3.662%2015.977,2.809%20ZM21.536,8.966%20L18.691,8.966%20C18.887,9.945%2019.000,10.945%2019.000,11.959%20C19.000,12.973%2018.887,13.973%2018.691,14.952%20L21.536,14.952%20C21.835,14.007%2022.000,13.002%2022.000,11.959%20C22.000,10.916%2021.835,9.912%2021.536,8.966%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-question {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%20-0.000,18.617%20-0.000,12.000%20C-0.000,5.383%205.383,-0.000%2012.000,-0.000%20C18.617,-0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.617%2018.617,24.000%2012.000,24.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,17.514%206.486,22.000%2012.000,22.000%20C17.514,22.000%2022.000,17.514%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20ZM14.389,12.344%20C12.940,13.517%2012.994,14.816%2012.997,14.870%20C13.028,15.415%2012.616,15.892%2012.072,15.932%20C12.046,15.934%2012.022,15.935%2011.997,15.935%20C11.484,15.935%2011.050,15.551%2011.004,15.032%20C10.996,14.936%2010.821,12.659%2013.130,10.789%20C13.772,10.270%2014.000,9.814%2014.000,9.051%20C14.000,7.889%2013.103,6.943%2012.000,6.943%20C10.860,6.943%2010.000,7.803%2010.000,8.943%20C10.000,9.496%209.552,9.943%209.000,9.943%20C8.448,9.943%208.000,9.496%208.000,8.943%20C8.000,6.701%209.757,4.944%2012.000,4.944%20C14.206,4.944%2016.000,6.786%2016.000,9.051%20C16.000,10.426%2015.503,11.442%2014.389,12.344%20ZM12.165,16.986%20C12.709,17.080%2013.079,17.569%2012.985,18.114%20L12.976,18.170%20C12.892,18.656%2012.469,19.000%2011.991,19.000%20C11.935,19.000%2011.878,18.995%2011.820,18.985%20C11.276,18.891%2010.911,18.374%2011.005,17.830%20C11.099,17.286%2011.618,16.891%2012.165,16.986%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-question-white {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18'%20height='18'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%20-0.000,18.617%20-0.000,12.000%20C-0.000,5.383%205.383,-0.000%2012.000,-0.000%20C18.617,-0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.617%2018.617,24.000%2012.000,24.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,17.514%206.486,22.000%2012.000,22.000%20C17.514,22.000%2022.000,17.514%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20ZM14.389,12.344%20C12.940,13.517%2012.994,14.816%2012.997,14.870%20C13.028,15.415%2012.616,15.892%2012.072,15.932%20C12.046,15.934%2012.022,15.935%2011.997,15.935%20C11.484,15.935%2011.050,15.551%2011.004,15.032%20C10.996,14.936%2010.821,12.659%2013.130,10.789%20C13.772,10.270%2014.000,9.814%2014.000,9.051%20C14.000,7.889%2013.103,6.943%2012.000,6.943%20C10.860,6.943%2010.000,7.803%2010.000,8.943%20C10.000,9.496%209.552,9.943%209.000,9.943%20C8.448,9.943%208.000,9.496%208.000,8.943%20C8.000,6.701%209.757,4.944%2012.000,4.944%20C14.206,4.944%2016.000,6.786%2016.000,9.051%20C16.000,10.426%2015.503,11.442%2014.389,12.344%20ZM12.165,16.986%20C12.709,17.080%2013.079,17.569%2012.985,18.114%20L12.976,18.170%20C12.892,18.656%2012.469,19.000%2011.991,19.000%20C11.935,19.000%2011.878,18.995%2011.820,18.985%20C11.276,18.891%2010.911,18.374%2011.005,17.830%20C11.099,17.286%2011.618,16.891%2012.165,16.986%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-arrow-down {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='12'%20viewBox='0%200%2023.844%2013.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M11.923,13.916%20C11.645,13.916%2011.379,13.800%2011.191,13.594%20L0.284,1.677%20C-0.086,1.272%20-0.059,0.644%200.345,0.274%20C0.749,-0.097%201.376,-0.069%201.746,0.335%20L11.923,11.453%20L22.099,0.335%20C22.468,-0.069%2023.097,-0.097%2023.500,0.274%20C23.904,0.644%2023.931,1.272%2023.561,1.677%20L12.654,13.594%20C12.466,13.800%2012.201,13.916%2011.923,13.916%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='12'%20viewBox='0%200%2013%2022'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M1.017,23.910%20C0.748,23.910%200.480,23.802%200.284,23.588%20C-0.086,23.183%20-0.059,22.552%200.345,22.181%20L11.465,11.961%20L0.345,1.742%20C-0.059,1.370%20-0.086,0.740%200.284,0.335%20C0.655,-0.070%201.284,-0.098%201.688,0.274%20L13.606,11.227%20C13.811,11.416%2013.928,11.683%2013.928,11.961%20C13.928,12.240%2013.811,12.507%2013.606,12.695%20L1.688,23.649%20C1.497,23.824%201.257,23.910%201.017,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-arrow-left {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='12'%20viewBox='0%200%2018%2022'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.918,23.910%20C12.678,23.910%2012.438,23.824%2012.247,23.648%20L0.330,12.695%20C0.125,12.507%200.007,12.240%200.007,11.961%20C0.007,11.682%200.125,11.416%200.330,11.227%20L12.247,0.274%20C12.652,-0.098%2013.281,-0.070%2013.651,0.335%20C14.021,0.740%2013.994,1.370%2013.590,1.742%20L2.471,11.961%20L13.590,22.181%20C13.994,22.552%2014.021,23.182%2013.651,23.588%20C13.455,23.802%2013.187,23.910%2012.918,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-heart {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.78'%20height='22'%20viewBox='0%200%2023.78%2022'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.966,11.086%20C21.961,11.093%2021.960,11.101%2021.954,11.108%20L13.971,21.016%20C13.408,21.654%2012.659,22.000%2011.884,22.000%20C11.109,22.000%2010.359,21.654%209.825,21.051%20L1.815,11.108%20C1.810,11.102%201.809,11.094%201.804,11.087%20C-0.616,8.527%20-0.597,4.444%201.880,1.922%20C3.097,0.682%204.714,0.000%206.436,0.000%20C8.122,0.000%209.702,0.662%2010.909,1.852%20C10.917,1.858%2010.926,1.859%2010.933,1.865%20L11.880,2.682%20L12.840,1.862%20C12.847,1.856%2012.856,1.855%2012.862,1.850%20C14.070,0.662%2015.649,0.000%2017.333,0.000%20C19.055,0.000%2020.673,0.682%2021.890,1.922%20C24.364,4.444%2024.383,8.526%2021.966,11.086%20ZM20.482,3.329%20C19.641,2.472%2018.522,2.000%2017.333,2.000%20C16.144,2.000%2015.025,2.472%2014.183,3.329%20C14.172,3.340%2014.158,3.344%2014.146,3.354%20C14.135,3.365%2014.131,3.379%2014.119,3.389%20L12.523,4.752%20C12.496,4.775%2012.463,4.784%2012.434,4.804%20C12.366,4.851%2012.301,4.898%2012.225,4.926%20C12.205,4.934%2012.183,4.934%2012.162,4.940%20C12.070,4.967%2011.979,5.000%2011.884,5.000%20C11.744,5.000%2011.607,4.960%2011.477,4.900%20C11.474,4.898%2011.471,4.896%2011.468,4.895%20C11.389,4.857%2011.310,4.820%2011.240,4.761%20L9.646,3.385%20C9.635,3.376%209.631,3.362%209.621,3.353%20C9.610,3.343%209.596,3.340%209.586,3.329%20C8.745,2.472%207.625,2.000%206.436,2.000%20C5.247,2.000%204.128,2.472%203.286,3.329%20C1.543,5.105%201.544,7.996%203.287,9.773%20C3.300,9.786%203.304,9.803%203.315,9.816%20C3.326,9.828%203.341,9.833%203.351,9.846%20L11.332,19.754%20C11.595,20.046%2012.143,20.081%2012.464,19.719%20L20.418,9.846%20C20.429,9.833%2020.444,9.828%2020.455,9.815%20C20.466,9.803%2020.470,9.786%2020.482,9.774%20C22.224,7.996%2022.224,5.105%2020.482,3.329%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-heart-mobile-menu {
  background-image: url("data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2023.78%2022'><defs><style>%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20gray;%20%7D%20</style></defs><path%20d='M21.966,11.086%20C21.961,11.093%2021.960,11.101%2021.954,11.108%20L13.971,21.016%20C13.408,21.654%2012.659,22.000%2011.884,22.000%20C11.109,22.000%2010.359,21.654%209.825,21.051%20L1.815,11.108%20C1.810,11.102%201.809,11.094%201.804,11.087%20C-0.616,8.527%20-0.597,4.444%201.880,1.922%20C3.097,0.682%204.714,0.000%206.436,0.000%20C8.122,0.000%209.702,0.662%2010.909,1.852%20C10.917,1.858%2010.926,1.859%2010.933,1.865%20L11.880,2.682%20L12.840,1.862%20C12.847,1.856%2012.856,1.855%2012.862,1.850%20C14.070,0.662%2015.649,0.000%2017.333,0.000%20C19.055,0.000%2020.673,0.682%2021.890,1.922%20C24.364,4.444%2024.383,8.526%2021.966,11.086%20ZM20.482,3.329%20C19.641,2.472%2018.522,2.000%2017.333,2.000%20C16.144,2.000%2015.025,2.472%2014.183,3.329%20C14.172,3.340%2014.158,3.344%2014.146,3.354%20C14.135,3.365%2014.131,3.379%2014.119,3.389%20L12.523,4.752%20C12.496,4.775%2012.463,4.784%2012.434,4.804%20C12.366,4.851%2012.301,4.898%2012.225,4.926%20C12.205,4.934%2012.183,4.934%2012.162,4.940%20C12.070,4.967%2011.979,5.000%2011.884,5.000%20C11.744,5.000%2011.607,4.960%2011.477,4.900%20C11.474,4.898%2011.471,4.896%2011.468,4.895%20C11.389,4.857%2011.310,4.820%2011.240,4.761%20L9.646,3.385%20C9.635,3.376%209.631,3.362%209.621,3.353%20C9.610,3.343%209.596,3.340%209.586,3.329%20C8.745,2.472%207.625,2.000%206.436,2.000%20C5.247,2.000%204.128,2.472%203.286,3.329%20C1.543,5.105%201.544,7.996%203.287,9.773%20C3.300,9.786%203.304,9.803%203.315,9.816%20C3.326,9.828%203.341,9.833%203.351,9.846%20L11.332,19.754%20C11.595,20.046%2012.143,20.081%2012.464,19.719%20L20.418,9.846%20C20.429,9.833%2020.444,9.828%2020.455,9.815%20C20.466,9.803%2020.470,9.786%2020.482,9.774%20C22.224,7.996%2022.224,5.105%2020.482,3.329%20Z'%20class='cls-1'/></svg>%0A");
}
.icon-container .eicon-security-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18'%20height='18'%20viewBox='0%200%2020%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M17.000,24.000%20L3.000,24.000%20C1.346,24.000%200.000,22.655%200.000,21.000%20L0.000,11.000%20C0.000,9.346%201.346,8.000%203.000,8.000%20L4.000,8.000%20L4.000,6.000%20C4.000,2.692%206.691,0.000%2010.000,0.000%20C13.309,0.000%2016.000,2.692%2016.000,6.000%20L16.000,8.000%20L17.000,8.000%20C18.654,8.000%2020.000,9.346%2020.000,11.000%20L20.000,21.000%20C20.000,22.655%2018.654,24.000%2017.000,24.000%20ZM10.000,2.000%20C7.794,2.000%206.000,3.794%206.000,6.000%20L6.000,8.000%20L14.000,8.000%20L14.000,6.000%20C14.000,3.794%2012.206,2.000%2010.000,2.000%20ZM18.000,11.000%20C18.000,10.448%2017.551,10.000%2017.000,10.000%20L3.000,10.000%20C2.449,10.000%202.000,10.448%202.000,11.000%20L2.000,21.000%20C2.000,21.551%202.449,22.000%203.000,22.000%20L17.000,22.000%20C17.551,22.000%2018.000,21.551%2018.000,21.000%20L18.000,11.000%20ZM11.000,15.722%20L11.000,18.000%20C11.000,18.552%2010.552,19.000%2010.000,19.000%20C9.448,19.000%209.000,18.552%209.000,18.000%20L9.000,15.722%20C8.405,15.375%208.000,14.737%208.000,14.000%20C8.000,12.897%208.897,12.000%2010.000,12.000%20C11.103,12.000%2012.000,12.897%2012.000,14.000%20C12.000,14.737%2011.595,15.375%2011.000,15.722%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-myorders-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.000,19.000%20L8.303,19.000%20C8.300,19.000%208.297,19.000%208.295,19.000%20C8.165,19.000%208.041,18.972%207.925,18.925%20C7.886,18.909%207.855,18.882%207.818,18.862%20C7.747,18.822%207.678,18.783%207.619,18.727%20C7.583,18.694%207.557,18.653%207.527,18.615%20C7.481,18.558%207.437,18.501%207.404,18.433%20C7.381,18.385%207.368,18.333%207.353,18.281%20C7.339,18.235%207.314,18.194%207.307,18.145%20L5.032,2.594%20C4.985,2.292%204.644,2.000%204.330,2.000%20L1.000,2.000%20C0.447,2.000%200.000,1.552%200.000,1.000%20C0.000,0.448%200.447,0.000%201.000,0.000%20L4.330,0.000%20C5.634,0.000%206.810,1.009%207.010,2.297%20L9.160,17.000%20L23.000,17.000%20C23.553,17.000%2024.000,17.448%2024.000,18.000%20C24.000,18.552%2023.553,19.000%2023.000,19.000%20ZM22.000,16.000%20L17.000,16.000%20L11.000,16.000%20C10.447,16.000%2010.000,15.552%2010.000,15.000%20L10.000,5.000%20C10.000,4.448%2010.447,4.000%2011.000,4.000%20L17.000,4.000%20C17.553,4.000%2018.000,4.448%2018.000,5.000%20L18.000,8.000%20L21.000,8.000%20C21.553,8.000%2022.000,8.448%2022.000,9.000%20L22.000,11.000%20C22.553,11.000%2023.000,11.448%2023.000,12.000%20L23.000,15.000%20C23.000,15.552%2022.553,16.000%2022.000,16.000%20ZM16.000,6.000%20L12.000,6.000%20L12.000,14.000%20L16.000,14.000%20L16.000,12.000%20L16.000,9.000%20L16.000,6.000%20ZM20.000,10.000%20L18.000,10.000%20L18.000,11.000%20L20.000,11.000%20L20.000,10.000%20ZM18.000,13.000%20L18.000,14.000%20L21.000,14.000%20L21.000,13.000%20L18.000,13.000%20ZM10.000,20.000%20C11.103,20.000%2012.000,20.897%2012.000,22.000%20C12.000,23.103%2011.103,24.000%2010.000,24.000%20C8.898,24.000%208.000,23.103%208.000,22.000%20C8.000,20.897%208.898,20.000%2010.000,20.000%20ZM20.000,20.000%20C21.103,20.000%2022.000,20.897%2022.000,22.000%20C22.000,23.103%2021.103,24.000%2020.000,24.000%20C18.898,24.000%2018.000,23.103%2018.000,22.000%20C18.000,20.897%2018.898,20.000%2020.000,20.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-users-management-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2034%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M34.000,19.407%20L34.000,20.000%20C34.000,20.552%2033.552,21.000%2033.000,21.000%20L23.000,21.000%20C22.448,21.000%2022.000,20.552%2022.000,20.000%20C22.000,19.448%2022.448,19.000%2023.000,19.000%20L31.985,19.000%20C31.747,15.708%2028.645,13.000%2025.000,13.000%20C23.382,13.000%2021.854,13.512%2020.581,14.482%20C20.141,14.816%2019.515,14.731%2019.180,14.293%20C18.845,13.854%2018.930,13.226%2019.370,12.891%20C20.277,12.200%2021.319,11.707%2022.415,11.391%20C20.403,10.421%2019.000,8.379%2019.000,6.000%20C19.000,2.692%2021.691,0.000%2025.000,0.000%20C28.309,0.000%2031.000,2.692%2031.000,6.000%20C31.000,8.369%2029.608,10.403%2027.610,11.377%20C31.263,12.451%2034.000,15.694%2034.000,19.407%20ZM29.000,6.000%20C29.000,3.795%2027.206,2.000%2025.000,2.000%20C22.794,2.000%2021.000,3.795%2021.000,6.000%20C21.000,8.205%2022.794,10.000%2025.000,10.000%20C27.206,10.000%2029.000,8.205%2029.000,6.000%20ZM12.823,13.400%20C16.920,14.570%2020.000,18.185%2020.000,22.333%20L20.000,23.000%20C20.000,23.552%2019.552,24.000%2019.000,24.000%20L1.000,24.000%20C0.448,24.000%20-0.000,23.552%20-0.000,23.000%20L-0.000,22.333%20C-0.000,18.185%203.080,14.570%207.177,13.400%20C4.720,12.312%203.000,9.855%203.000,7.000%20C3.000,3.140%206.140,0.000%2010.000,0.000%20C13.860,0.000%2017.000,3.140%2017.000,7.000%20C17.000,9.855%2015.280,12.312%2012.823,13.400%20ZM2.009,22.000%20L17.991,22.000%20C17.794,18.173%2014.215,15.000%2010.000,15.000%20C5.785,15.000%202.206,18.173%202.009,22.000%20ZM10.000,2.000%20C7.243,2.000%205.000,4.243%205.000,7.000%20C5.000,9.757%207.243,12.000%2010.000,12.000%20C12.757,12.000%2015.000,9.757%2015.000,7.000%20C15.000,4.243%2012.757,2.000%2010.000,2.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-customer-upload-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18'%20height='18'%20viewBox='0%200%2024%2023.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M22.000,23.899%20L2.000,23.899%20C0.898,23.899%200.000,23.005%200.000,21.907%20L0.000,15.931%20C0.000,15.381%200.447,14.935%201.000,14.935%20C1.553,14.935%202.000,15.381%202.000,15.931%20L2.000,21.907%20L22.000,21.907%20L22.000,15.931%20C22.000,15.381%2022.447,14.935%2023.000,14.935%20C23.553,14.935%2024.000,15.381%2024.000,15.931%20L24.000,21.907%20C24.000,23.005%2023.103,23.899%2022.000,23.899%20ZM17.000,6.949%20C16.744,6.949%2016.489,6.851%2016.294,6.658%20L13.000,3.384%20L13.000,16.918%20C13.000,17.468%2012.553,17.913%2012.000,17.913%20C11.447,17.913%2011.000,17.468%2011.000,16.918%20L11.000,3.384%20L7.706,6.658%20C7.315,7.045%206.683,7.047%206.292,6.656%20C5.902,6.267%205.902,5.636%206.294,5.248%20L11.292,0.279%20C11.384,0.187%2011.496,0.114%2011.619,0.063%20C11.713,0.024%2011.813,0.012%2011.914,0.004%20C11.944,0.001%2011.969,-0.014%2012.000,-0.014%20C12.031,-0.014%2012.056,0.001%2012.086,0.004%20C12.186,0.012%2012.287,0.024%2012.381,0.063%20C12.503,0.113%2012.612,0.185%2012.704,0.276%20C12.704,0.276%2012.705,0.277%2012.706,0.277%20L12.706,0.277%20C12.707,0.278%2012.707,0.278%2012.708,0.279%20L17.706,5.248%20C18.098,5.636%2018.098,6.267%2017.708,6.656%20C17.513,6.851%2017.256,6.949%2017.000,6.949%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-points-statements-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2018%2023.94'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M17.981,7.086%20L17.981,22.210%20C17.981,23.163%2017.206,23.939%2016.255,23.939%20L1.724,23.939%20C0.773,23.939%20-0.002,23.163%20-0.002,22.210%20L-0.002,1.738%20C-0.002,0.786%200.773,0.011%201.724,0.011%20L10.988,0.011%20C11.034,0.011%2011.073,0.031%2011.117,0.037%20C11.161,0.042%2011.199,0.050%2011.242,0.062%20C11.414,0.108%2011.573,0.182%2011.695,0.303%20L17.580,6.176%20C17.611,6.198%2017.627,6.237%2017.656,6.262%20C17.685,6.290%2017.707,6.320%2017.733,6.351%20C17.887,6.526%2018.000,6.738%2018.000,6.989%20C18.000,7.024%2017.984,7.052%2017.981,7.086%20ZM11.987,3.414%20L11.987,5.992%20L14.570,5.992%20L11.987,3.414%20ZM15.983,7.986%20L10.988,7.986%20C10.436,7.986%209.989,7.540%209.989,6.989%20L9.989,1.970%20L2.000,1.970%20L1.997,21.945%20L15.983,21.945%20L15.983,7.986%20ZM3.995,9.981%20L13.985,9.981%20C14.537,9.981%2014.984,10.427%2014.984,10.978%20L14.984,18.954%20C14.984,19.504%2014.537,19.951%2013.985,19.951%20L3.995,19.951%20C3.442,19.951%202.996,19.504%202.996,18.954%20L2.996,10.978%20C2.996,10.427%203.442,9.981%203.995,9.981%20ZM12.986,11.975%20L8.990,11.975%20L8.990,13.969%20L12.986,13.969%20L12.986,11.975%20ZM12.986,15.963%20L8.990,15.963%20L8.990,17.957%20L12.986,17.957%20L12.986,15.963%20ZM4.994,17.957%20L6.992,17.957%20L6.992,15.963%20L4.994,15.963%20L4.994,17.957%20ZM4.994,13.969%20L6.992,13.969%20L6.992,11.975%20L4.994,11.975%20L4.994,13.969%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-convert-certificates-mobile-menu {
  background-image: url("data:image/svg+xml,%3C!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--%20Uploaded%20to:%20SVG%20Repo,%20www.svgrepo.com,%20Transformed%20by:%20SVG%20Repo%20Mixer%20Tools%20--%3E%3Csvg%20fill='%23000000'%20height='20px'%20width='20px'%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2064%2064'%20enable-background='new%200%200%2064%2064'%20xml:space='preserve'%20stroke='%23000000'%20stroke-width='1.984'%3E%3Cg%20id='SVGRepo_bgCarrier'%20stroke-width='0'/%3E%3Cg%20id='SVGRepo_tracerCarrier'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cg%20id='SVGRepo_iconCarrier'%3E%3Cg%20id='Certificate-file'%3E%3Cpath%20d='M54.1076508,14.717124c-0.0053024-0.0955-0.0237999-0.1876001-0.0559006-0.2779007%20c-0.0102005-0.0284996-0.0171013-0.0567999-0.0298004-0.0840998c-0.0480995-0.1046-0.1090012-0.2038994-0.1932983-0.2884998%20c0,0-3.4248009-3.4394999-6.8535004-6.8759999c-1.7139015-1.7188001-3.4297028-3.4356-4.7187996-4.7227001%20c-0.9531021-0.9511001-1.5810013-1.5781001-2.0234032-1.9677001c-0.006897-0.0098-0.0136986-0.0186-0.0205002-0.0284%20c-0.0009995-0.0019-0.0019989-0.0029-0.0029984-0.0048l-0.0078011,0.0058c-0.6213989-0.5415-0.8670006-0.6004-1.1478996-0.4306%20l-26.0746994,0.0009c-1.7079992,0-3.0977001,1.3907001-3.0977001,3.0996001v50.5655022%20c0,0.8661995,0.3369007,1.6805992,0.9522009,2.2967987c0.6053991,0.6026001,1.4413996,0.9482994,2.2928991,0.9482994h13.1513996%20c0.5527,0,1-0.4473,1-1c0-0.5527992-0.4473-1-1-1H13.1264496c-0.3270998,0-0.6483994-0.1338005-0.8799-0.3633003%20c-0.2323999-0.232399-0.3652-0.5536995-0.3652-0.8817978V3.1427238c0-0.6064,0.4922009-1.0996001,1.0977001-1.0996001%20l25.4626007-0.0009c0.0377007,2.2823002-0.0049019,8.6077995-0.0485992,12.7186995%20c-0.002903,0.2676001,0.1016006,0.5244007,0.2891006,0.7139006c0.1875,0.1904001,0.4442978,0.2967997,0.7108994,0.2967997%20h12.7255974v38.0997009c0,0.2851028-0.1152,0.5634003-0.3173981,0.7656021%20c-0.2041016,0.2040977-0.4756012,0.3163986-0.7645988,0.3163986h-0.455101c-0.5527,0-1,0.4472008-1,1c0,0.5527,0.4473,1,1,1%20h0.455101c0.8241997,0,1.5985985-0.3213005,2.1796989-0.9033012c0.5732002-0.5732994,0.902298-1.3671989,0.902298-2.1786995%20V14.7716236C54.1186485,14.7523241,54.1087494,14.7362242,54.1076508,14.717124z%20M40.4038506,13.7716236%20C40.45755,8.5080242,40.4741516,5.380024,40.4585495,3.4992237c2.3398018,2.3340001,6.6297989,6.6346998,10.2538986,10.2723999%20H40.4038506z'/%3E%3Cpath%20d='M46.4301491,49.4289246c-0.0370979-0.1273003-0.0993004-0.2401009-0.1764984-0.3384018%20c1.4456978-1.7341003,2.3171997-3.9636993,2.3171997-6.3979988c0-5.5228004-4.4771996-10-10-10c-5.5228996,0-10,4.4771996-10,10%20c0,2.5708008,0.9783993,4.9075012,2.5725002,6.6790009L27.7680492,60.942524%20c-0.1103001,0.3779984,0.0117016,0.7862015,0.3116016,1.0419998c0.299799,0.2549019,0.7206993,0.3086014,1.0770988,0.1416016%20l3.4014015-1.6162033l2.1376991,3.0996017c0.1884003,0.2734985,0.4980011,0.4326973,0.8232002,0.4326973%20c0.0565987,0,0.1133003-0.0048981,0.169899-0.0146942c0.3848-0.0664024,0.6953011-0.3496017,0.7959023-0.7266045%20l2.2945976-8.5613976l2.2943001,8.5613976c0.1006012,0.3760033,0.410202,0.6592026,0.7938995,0.7266045%20c0.0577011,0.0097961,0.1152992,0.0146942,0.1719017,0.0146942c0.3241997,0,0.6319008-0.157299,0.8213005-0.4296989%20l2.1436005-3.0839996l3.3993988,1.5996017c0.3554001,0.1660004,0.7753983,0.1102982,1.0760994-0.1455002%20c0.2989006-0.2549019,0.4199982-0.6621017,0.3096008-1.0401001L46.4301491,49.4289246z%20M38.5708504,34.5973244%20c4.4636993,0,8.0951996,3.6315002,8.0951996,8.0951996c0,4.4637985-3.6315002,8.0952988-8.0951996,8.0952988%20c-4.4637985,0-8.0953007-3.6315002-8.0953007-8.0952988C30.4755497,38.2288246,34.1070518,34.5973244,38.5708504,34.5973244z%20M35.1137505,60.692524l-1.3925018-2.0185013c-0.2792969-0.4043007-0.809597-0.5478973-1.2519989-0.3359985l-2.1571999,1.024498%20l2.4841995-8.5150986c1.3003006,0.9225998,2.8286018,1.5391998,4.4862022,1.7528992L35.1137505,60.692524z%20M45.0913506,58.3586235%20c-0.4424019-0.2080994-0.9687996-0.0654984-1.2471008,0.3348999l-1.3964996,2.0088005l-2.1875992-8.1632004%20c1.6489983-0.2812004,3.1576996-0.9631996,4.4260979-1.9464989l2.5623016,8.781601L45.0913506,58.3586235z'/%3E%3Cpath%20d='M38.5708504,47.692524c2.7613983,0,5-2.2384987,5-5c0-2.7613983-2.2386017-5-5-5c-2.7614021,0-5,2.2386017-5,5%20C33.5708504,45.4540253,35.8094482,47.692524,38.5708504,47.692524z%20M38.5708504,39.692524c1.6542015,0,3,1.3457985,3,3%20c0,1.6543007-1.3457985,3-3,3c-1.6543007,0-3-1.3456993-3-3C35.5708504,41.0383224,36.9165497,39.692524,38.5708504,39.692524z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-order-approvals-mobile-menu {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='20px'%20height='20px'%20viewBox='0%200%20108.67%20122.88'%20style='enable-background:new%200%200%20108.67%20122.88'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%3C!%5BCDATA%5B%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%5D%5D%3E%3C/style%3E%3Cg%3E%3Cpath%20class='st0'%20d='M25.14,53.37c-1.51,0-2.75,1.24-2.75,2.77s1.23,2.77,2.75,2.77h20.11c1.51,0,2.75-1.24,2.75-2.77%20s-1.23-2.77-2.75-2.77H25.14L25.14,53.37L25.14,53.37z%20M77.77,0c17.06,0,30.9,13.83,30.9,30.9c0,12.32-7.21,22.95-17.64,27.92%20v57.69c0,1.76-0.71,3.35-1.87,4.5c-1.16,1.16-2.75,1.87-4.5,1.87H6.37c-1.76,0-3.35-0.71-4.5-1.87c-1.16-1.16-1.87-2.75-1.87-4.5%20V22.4c0-1.76,0.71-3.35,1.87-4.5c1.16-1.16,2.75-1.87,4.5-1.87h44.3C55.93,6.47,66.09,0,77.77,0L77.77,0z%20M85.55,60.81%20c-2.48,0.65-5.09,0.99-7.78,0.99c-17.06,0-30.9-13.83-30.9-30.9c0-3.27,0.51-6.42,1.45-9.38H6.37c-0.24,0-0.47,0.1-0.63,0.26%20c-0.16,0.17-0.26,0.39-0.26,0.63v94.09c0,0.24,0.1,0.46,0.26,0.63c0.17,0.16,0.39,0.26,0.63,0.26h78.28c0.24,0,0.47-0.1,0.63-0.26%20c0.16-0.17,0.26-0.39,0.26-0.63V60.81L85.55,60.81z%20M25.14,92.22c-1.51,0-2.74,1.23-2.74,2.74c0,1.51,1.23,2.74,2.74,2.74h38.47%20c1.51,0,2.74-1.23,2.74-2.74c0-1.51-1.23-2.74-2.74-2.74L25.14,92.22L25.14,92.22L25.14,92.22z%20M25.14,72.81%20c-1.51,0-2.74,1.23-2.74,2.74s1.23,2.74,2.74,2.74h38.47c1.51,0,2.74-1.23,2.74-2.74s-1.23-2.74-2.74-2.74H25.14L25.14,72.81%20L25.14,72.81z%20M68.71,25.78l5.67,5.4l11.76-11.92c0.97-0.98,1.57-1.77,2.77-0.54l3.87,3.96c1.27,1.26,1.21,1.99,0.01,3.16%20l-16.2,15.94c-2.53,2.48-2.09,2.63-4.65,0.09l-9.75-9.7c-0.53-0.58-0.47-1.16,0.11-1.74l4.49-4.66%20C67.46,25.07,68.01,25.11,68.71,25.78L68.71,25.78L68.71,25.78z'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-reports-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='19'%20height='20'%20viewBox='0%200%2019%2023.94'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20darkgray;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M19.001,6.990%20C19.001,7.025%2018.984,7.055%2018.981,7.089%20L18.981,18.954%20C18.981,20.054%2018.085,20.948%2016.983,20.948%20L4.994,20.948%20C3.892,20.948%202.996,20.054%202.996,18.954%20L2.996,2.006%20C2.996,0.906%203.892,0.011%204.994,0.011%20L11.988,0.011%20C12.010,0.011%2012.028,0.022%2012.049,0.024%20C12.140,0.030%2012.227,0.047%2012.313,0.077%20C12.345,0.088%2012.377,0.096%2012.407,0.110%20C12.511,0.159%2012.609,0.219%2012.693,0.303%20C12.693,0.303%2012.694,0.303%2012.694,0.304%20L18.579,6.177%20C18.611,6.199%2018.626,6.237%2018.655,6.263%20C18.685,6.290%2018.707,6.321%2018.734,6.352%20C18.887,6.528%2019.001,6.739%2019.001,6.990%20ZM4.994,18.954%20L16.983,18.954%20L16.983,7.987%20L11.988,7.987%20C11.436,7.987%2010.989,7.541%2010.989,6.990%20L10.989,1.970%20L5.000,1.970%20L4.994,18.954%20ZM12.986,3.415%20L12.986,5.993%20L15.570,5.993%20L12.986,3.415%20ZM15.984,22.942%20C15.984,23.492%2015.536,23.939%2014.985,23.939%20L1.997,23.939%20C0.895,23.939%20-0.001,23.045%20-0.001,21.945%20L-0.001,3.999%20C-0.001,3.449%200.446,3.003%200.998,3.003%20C1.550,3.003%201.997,3.449%201.997,3.999%20L1.997,21.945%20L14.985,21.945%20C15.536,21.945%2015.984,22.391%2015.984,22.942%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-basket {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M20.966,21.112%20C20.864,21.565%2020.460,21.888%2019.994,21.888%20L3.913,21.888%20C3.447,21.888%203.043,21.565%202.941,21.112%20L0.017,8.172%20C-0.050,7.877%200.021,7.568%200.210,7.332%20C0.400,7.095%200.686,6.958%200.989,6.958%20L5.240,6.958%20L7.008,0.715%20C7.157,0.185%207.707,-0.121%208.238,0.028%20C8.768,0.177%209.075,0.728%208.925,1.257%20L7.311,6.958%20L16.596,6.958%20L14.982,1.257%20C14.832,0.728%2015.139,0.177%2015.669,0.028%20C16.194,-0.121%2016.751,0.185%2016.899,0.715%20L18.667,6.958%20L22.918,6.958%20C23.221,6.958%2023.507,7.095%2023.697,7.332%20C23.886,7.568%2023.957,7.877%2023.891,8.172%20L20.966,21.112%20ZM1.970,8.910%20L4.710,19.897%20L19.197,19.897%20L21.970,8.910%20L1.970,8.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-pre-header-globe {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='17'%20height='17'%20viewBox='0%200%2024%2023.94'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,23.932%20C5.383,23.932%20-0.000,18.561%20-0.000,11.959%20C-0.000,5.357%205.383,-0.014%2012.000,-0.014%20C18.617,-0.014%2024.000,5.357%2024.000,11.959%20C24.000,18.561%2018.617,23.932%2012.000,23.932%20ZM20.627,16.948%20L18.156,16.948%20C17.645,18.432%2016.913,19.837%2015.974,21.110%20C17.939,20.257%2019.556,18.781%2020.627,16.948%20ZM16.009,16.948%20L13.000,16.948%20L13.000,21.471%20C14.310,20.164%2015.326,18.623%2016.009,16.948%20ZM17.000,11.959%20C17.000,10.941%2016.869,9.940%2016.641,8.966%20L13.000,8.966%20L13.000,14.952%20L16.640,14.952%20C16.869,13.978%2017.000,12.977%2017.000,11.959%20ZM11.000,16.948%20L7.989,16.948%20C8.673,18.625%209.689,20.168%2011.000,21.475%20L11.000,16.948%20ZM8.021,21.108%20C7.083,19.835%206.353,18.431%205.842,16.948%20L3.373,16.948%20C4.443,18.779%206.059,20.255%208.021,21.108%20ZM2.000,11.959%20C2.000,13.002%202.165,14.007%202.464,14.952%20L5.308,14.952%20C5.113,13.974%205.000,12.974%205.000,11.961%20C5.000,10.947%205.113,9.946%205.309,8.966%20L2.464,8.966%20C2.165,9.912%202.000,10.916%202.000,11.959%20ZM3.373,6.970%20L5.844,6.970%20C6.355,5.486%207.087,4.081%208.026,2.808%20C6.061,3.661%204.444,5.138%203.373,6.970%20ZM11.000,2.450%20C9.691,3.755%208.674,5.296%207.991,6.970%20L11.000,6.970%20L11.000,2.450%20ZM7.360,8.966%20C7.131,9.941%207.000,10.942%207.000,11.961%20C7.000,12.978%207.131,13.979%207.359,14.952%20L11.000,14.952%20L11.000,8.966%20L7.360,8.966%20ZM13.000,6.970%20L16.010,6.970%20C15.326,5.295%2014.310,3.753%2013.000,2.446%20L13.000,6.970%20ZM15.977,2.809%20C16.915,4.082%2017.646,5.487%2018.157,6.970%20L20.627,6.970%20C19.557,5.139%2017.940,3.662%2015.977,2.809%20ZM21.536,8.966%20L18.691,8.966%20C18.887,9.945%2019.000,10.945%2019.000,11.959%20C19.000,12.973%2018.887,13.973%2018.691,14.952%20L21.536,14.952%20C21.835,14.007%2022.000,13.002%2022.000,11.959%20C22.000,10.916%2021.835,9.912%2021.536,8.966%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-close {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18.813'%20height='18.906'%20viewBox='0%200%2023.813%2023.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M13.305,11.946%20L23.521,22.201%20C23.909,22.590%2023.909,23.221%2023.521,23.610%20C23.328,23.804%2023.074,23.901%2022.820,23.901%20C22.566,23.901%2022.312,23.804%2022.118,23.610%20L11.901,13.355%20L1.685,23.610%20C1.492,23.804%201.238,23.901%200.984,23.901%20C0.730,23.901%200.476,23.804%200.282,23.610%20C-0.106,23.221%20-0.106,22.590%200.282,22.201%20L10.498,11.946%20L0.282,1.692%20C-0.106,1.303%20-0.106,0.672%200.282,0.283%20C0.670,-0.106%201.298,-0.106%201.685,0.283%20L11.901,10.537%20L22.117,0.283%20C22.505,-0.106%2023.133,-0.106%2023.521,0.283%20C23.908,0.672%2023.908,1.303%2023.521,1.692%20L13.305,11.946%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-close-black {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18'%20height='18'%20viewBox='0%200%2023.813%2023.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M13.305,11.946%20L23.521,22.201%20C23.909,22.590%2023.909,23.221%2023.521,23.610%20C23.328,23.804%2023.074,23.901%2022.820,23.901%20C22.566,23.901%2022.312,23.804%2022.118,23.610%20L11.901,13.355%20L1.685,23.610%20C1.492,23.804%201.238,23.901%200.984,23.901%20C0.730,23.901%200.476,23.804%200.282,23.610%20C-0.106,23.221%20-0.106,22.590%200.282,22.201%20L10.498,11.946%20L0.282,1.692%20C-0.106,1.303%20-0.106,0.672%200.282,0.283%20C0.670,-0.106%201.298,-0.106%201.685,0.283%20L11.901,10.537%20L22.117,0.283%20C22.505,-0.106%2023.133,-0.106%2023.521,0.283%20C23.908,0.672%2023.908,1.303%2023.521,1.692%20L13.305,11.946%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-warning {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='18'%20height='18'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%20-0.000,18.617%20-0.000,12.000%20C-0.000,5.383%205.383,0.000%2012.000,0.000%20C18.617,0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.617%2018.617,24.000%2012.000,24.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,17.514%206.486,22.000%2012.000,22.000%20C17.514,22.000%2022.000,17.514%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20ZM12.000,19.000%20C11.740,19.000%2011.480,18.890%2011.290,18.710%20C11.109,18.520%2011.000,18.260%2011.000,18.000%20C11.000,17.730%2011.109,17.480%2011.290,17.290%20C11.660,16.920%2012.330,16.920%2012.710,17.290%20C12.890,17.480%2013.000,17.730%2013.000,18.000%20C13.000,18.260%2012.890,18.520%2012.710,18.710%20C12.520,18.890%2012.260,19.000%2012.000,19.000%20ZM12.000,15.000%20C11.447,15.000%2011.000,14.552%2011.000,14.000%20L11.000,6.000%20C11.000,5.448%2011.447,5.000%2012.000,5.000%20C12.553,5.000%2013.000,5.448%2013.000,6.000%20L13.000,14.000%20C13.000,14.552%2012.553,15.000%2012.000,15.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-edit {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2023.75%2023.79'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23758081;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.709,4.119%20C23.703,4.163%2023.680,4.199%2023.668,4.240%20C23.653,4.295%2023.639,4.347%2023.615,4.399%20C23.580,4.471%2023.535,4.532%2023.486,4.592%20C23.464,4.620%2023.454,4.653%2023.429,4.678%20L13.518,14.583%20C13.501,14.599%2013.479,14.605%2013.461,14.620%20C13.412,14.664%2013.356,14.696%2013.298,14.729%20C13.239,14.762%2013.181,14.794%2013.117,14.815%20C13.096,14.822%2013.080,14.838%2013.058,14.843%20L9.093,15.835%20C9.014,15.855%208.933,15.865%208.853,15.865%20C8.593,15.865%208.340,15.762%208.152,15.575%20C7.906,15.328%207.807,14.971%207.891,14.634%20L8.882,10.671%20C8.888,10.648%208.904,10.632%208.912,10.610%20C8.932,10.546%208.964,10.490%208.997,10.431%20C9.030,10.373%209.062,10.318%209.105,10.269%20C9.120,10.251%209.126,10.228%209.143,10.211%20L19.054,0.306%20C19.083,0.277%2019.121,0.265%2019.153,0.241%20C19.205,0.200%2019.256,0.162%2019.316,0.132%20C19.379,0.101%2019.442,0.081%2019.508,0.064%20C19.545,0.054%2019.576,0.032%2019.614,0.027%20C19.824,-0.003%2021.694,-0.231%2022.835,0.992%20C23.951,2.181%2023.737,3.924%2023.709,4.119%20ZM21.387,2.345%20C21.107,2.044%2020.561,1.974%2020.190,1.973%20L10.739,11.417%20L10.215,13.512%20L12.310,12.988%20L21.761,3.544%20C21.757,3.187%2021.685,2.662%2021.387,2.345%20ZM12.000,3.880%20L2.000,3.880%20L2.000,21.880%20L20.000,21.880%20L20.000,11.880%20C20.000,11.333%2020.198,10.912%2020.746,10.912%20C21.293,10.912%2021.737,11.355%2021.737,11.902%20L21.737,22.797%20C21.737,23.345%2021.293,23.788%2020.746,23.788%20L0.924,23.788%20C0.377,23.788%20-0.000,23.427%20-0.000,22.880%20L-0.000,2.880%20C-0.000,2.333%200.377,1.998%200.924,1.998%20L11.826,1.998%20C12.373,1.998%2012.817,2.441%2012.817,2.989%20C12.817,3.536%2012.547,3.880%2012.000,3.880%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-circle-remove {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23758081;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%20-0.000,18.617%20-0.000,12.000%20C-0.000,5.383%205.383,0.000%2012.000,0.000%20C18.617,0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.617%2018.617,24.000%2012.000,24.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,17.514%206.486,22.000%2012.000,22.000%20C17.514,22.000%2022.000,17.514%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20ZM16.707,16.707%20C16.512,16.902%2016.256,17.000%2016.000,17.000%20C15.744,17.000%2015.488,16.902%2015.293,16.707%20L12.000,13.414%20L8.707,16.707%20C8.512,16.902%208.256,17.000%208.000,17.000%20C7.744,17.000%207.488,16.902%207.293,16.707%20C6.902,16.317%206.902,15.683%207.293,15.293%20L10.586,12.000%20L7.293,8.707%20C6.902,8.317%206.902,7.684%207.293,7.293%20C7.684,6.902%208.316,6.902%208.707,7.293%20L12.000,10.586%20L15.293,7.293%20C15.684,6.902%2016.316,6.902%2016.707,7.293%20C17.098,7.684%2017.098,8.317%2016.707,8.707%20L13.414,12.000%20L16.707,15.293%20C17.098,15.683%2017.098,16.317%2016.707,16.707%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-edit-cart {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M20.966,21.112%20C20.864,21.565%2020.460,21.888%2019.994,21.888%20L3.913,21.888%20C3.447,21.888%203.043,21.565%202.941,21.112%20L0.017,8.172%20C-0.050,7.877%200.021,7.568%200.210,7.332%20C0.400,7.095%200.686,6.958%200.989,6.958%20L5.240,6.958%20L7.008,0.715%20C7.157,0.185%207.707,-0.121%208.238,0.028%20C8.768,0.177%209.075,0.728%208.925,1.257%20L7.311,6.958%20L16.596,6.958%20L14.982,1.257%20C14.832,0.728%2015.139,0.177%2015.669,0.028%20C16.194,-0.121%2016.751,0.185%2016.899,0.715%20L18.667,6.958%20L22.918,6.958%20C23.221,6.958%2023.507,7.095%2023.697,7.332%20C23.886,7.568%2023.957,7.877%2023.891,8.172%20L20.966,21.112%20ZM1.970,8.910%20L4.710,19.897%20L19.197,19.897%20L21.970,8.910%20L1.970,8.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-chat-offline {
  font-size: 4em;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.280,23.960%20C23.187,23.987%2023.093,24.000%2023.000,24.000%20C22.665,24.000%2022.344,23.831%2022.157,23.538%20L19.886,19.981%20L9.522,19.981%20C8.131,19.981%207.000,18.849%207.000,17.458%20L7.000,16.000%20C7.000,15.448%207.448,15.000%208.000,15.000%20C8.552,15.000%209.000,15.448%209.000,16.000%20L9.000,17.458%20C9.000,17.747%209.234,17.981%209.522,17.981%20L20.434,17.981%20C20.470,17.981%2020.501,17.998%2020.537,18.002%20C20.605,18.009%2020.670,18.021%2020.736,18.042%20C20.797,18.062%2020.852,18.086%2020.907,18.116%20C20.963,18.147%2021.014,18.181%2021.063,18.222%20C21.116,18.266%2021.161,18.314%2021.204,18.368%20C21.226,18.395%2021.257,18.412%2021.276,18.443%20L22.000,19.575%20L22.000,18.981%20L22.000,9.522%20C22.000,9.235%2021.766,9.000%2021.478,9.000%20L20.000,9.000%20C19.448,9.000%2019.000,8.552%2019.000,8.000%20C19.000,7.448%2019.448,7.000%2020.000,7.000%20L21.478,7.000%20C22.869,7.000%2024.000,8.131%2024.000,9.522%20L24.000,18.981%20L24.000,23.000%20C24.000,23.444%2023.707,23.835%2023.280,23.960%20ZM14.479,12.981%20L4.114,12.981%20L1.843,16.538%20C1.656,16.831%201.335,17.000%201.000,17.000%20C0.907,17.000%200.813,16.987%200.720,16.960%20C0.293,16.835%200.000,16.444%200.000,16.000%20L0.000,11.981%20L0.000,2.522%20C0.000,1.131%201.131,0.000%202.521,0.000%20L14.479,0.000%20C15.869,0.000%2017.000,1.131%2017.000,2.522%20L17.000,10.458%20C17.000,11.849%2015.869,12.981%2014.479,12.981%20ZM15.000,2.522%20C15.000,2.235%2014.766,2.000%2014.479,2.000%20L2.521,2.000%20C2.234,2.000%202.000,2.235%202.000,2.522%20L2.000,11.981%20L2.000,12.575%20L2.724,11.443%20C2.743,11.413%202.773,11.396%202.795,11.369%20C2.839,11.314%202.885,11.265%202.939,11.220%20C2.987,11.180%203.037,11.147%203.091,11.118%20C3.147,11.086%203.204,11.062%203.267,11.042%20C3.332,11.021%203.395,11.009%203.463,11.002%20C3.499,10.998%203.530,10.981%203.566,10.981%20L14.479,10.981%20C14.766,10.981%2015.000,10.747%2015.000,10.458%20L15.000,2.522%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-chat-online {
  font-size: 4em;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20green;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.280,23.960%20C23.187,23.987%2023.093,24.000%2023.000,24.000%20C22.665,24.000%2022.344,23.831%2022.157,23.538%20L19.886,19.981%20L9.522,19.981%20C8.131,19.981%207.000,18.849%207.000,17.458%20L7.000,16.000%20C7.000,15.448%207.448,15.000%208.000,15.000%20C8.552,15.000%209.000,15.448%209.000,16.000%20L9.000,17.458%20C9.000,17.747%209.234,17.981%209.522,17.981%20L20.434,17.981%20C20.470,17.981%2020.501,17.998%2020.537,18.002%20C20.605,18.009%2020.670,18.021%2020.736,18.042%20C20.797,18.062%2020.852,18.086%2020.907,18.116%20C20.963,18.147%2021.014,18.181%2021.063,18.222%20C21.116,18.266%2021.161,18.314%2021.204,18.368%20C21.226,18.395%2021.257,18.412%2021.276,18.443%20L22.000,19.575%20L22.000,18.981%20L22.000,9.522%20C22.000,9.235%2021.766,9.000%2021.478,9.000%20L20.000,9.000%20C19.448,9.000%2019.000,8.552%2019.000,8.000%20C19.000,7.448%2019.448,7.000%2020.000,7.000%20L21.478,7.000%20C22.869,7.000%2024.000,8.131%2024.000,9.522%20L24.000,18.981%20L24.000,23.000%20C24.000,23.444%2023.707,23.835%2023.280,23.960%20ZM14.479,12.981%20L4.114,12.981%20L1.843,16.538%20C1.656,16.831%201.335,17.000%201.000,17.000%20C0.907,17.000%200.813,16.987%200.720,16.960%20C0.293,16.835%200.000,16.444%200.000,16.000%20L0.000,11.981%20L0.000,2.522%20C0.000,1.131%201.131,0.000%202.521,0.000%20L14.479,0.000%20C15.869,0.000%2017.000,1.131%2017.000,2.522%20L17.000,10.458%20C17.000,11.849%2015.869,12.981%2014.479,12.981%20ZM15.000,2.522%20C15.000,2.235%2014.766,2.000%2014.479,2.000%20L2.521,2.000%20C2.234,2.000%202.000,2.235%202.000,2.522%20L2.000,11.981%20L2.000,12.575%20L2.724,11.443%20C2.743,11.413%202.773,11.396%202.795,11.369%20C2.839,11.314%202.885,11.265%202.939,11.220%20C2.987,11.180%203.037,11.147%203.091,11.118%20C3.147,11.086%203.204,11.062%203.267,11.042%20C3.332,11.021%203.395,11.009%203.463,11.002%20C3.499,10.998%203.530,10.981%203.566,10.981%20L14.479,10.981%20C14.766,10.981%2015.000,10.747%2015.000,10.458%20L15.000,2.522%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-recentproducts-arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='13.938'%20height='23.91'%20viewBox='0%200%2013.938%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M1.017,23.910%20C0.748,23.910%200.480,23.802%200.284,23.588%20C-0.086,23.183%20-0.059,22.552%200.345,22.181%20L11.465,11.961%20L0.345,1.742%20C-0.059,1.370%20-0.086,0.740%200.284,0.335%20C0.655,-0.070%201.284,-0.098%201.688,0.274%20L13.606,11.227%20C13.811,11.416%2013.928,11.683%2013.928,11.961%20C13.928,12.240%2013.811,12.507%2013.606,12.695%20L1.688,23.649%20C1.497,23.824%201.257,23.910%201.017,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-recentproducts-arrow-left {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='13.937'%20height='23.91'%20viewBox='0%200%2013.937%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%231f1f1f;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.918,23.910%20C12.678,23.910%2012.438,23.824%2012.247,23.648%20L0.330,12.695%20C0.125,12.507%200.007,12.240%200.007,11.961%20C0.007,11.682%200.125,11.416%200.330,11.227%20L12.247,0.274%20C12.652,-0.098%2013.281,-0.070%2013.651,0.335%20C14.021,0.740%2013.994,1.370%2013.590,1.742%20L2.471,11.961%20L13.590,22.181%20C13.994,22.552%2014.021,23.182%2013.651,23.588%20C13.455,23.802%2013.187,23.910%2012.918,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-basket-add {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='23.88'%20viewBox='0%200%2023.91%2023.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.727,13.915%20C21.188,13.808%2020.837,13.283%2020.945,12.744%20L21.970,8.910%20L1.970,8.910%20L4.710,19.909%20L12.951,19.909%20C13.502,19.909%2013.948,20.355%2013.948,20.904%20C13.948,21.455%2013.502,21.900%2012.951,21.900%20L3.913,21.900%20C3.446,21.900%203.042,21.578%202.940,21.124%20L0.016,8.180%20C-0.051,7.885%200.020,7.575%200.209,7.339%20C0.399,7.103%200.685,6.965%200.988,6.965%20L5.239,6.965%20L7.008,0.720%20C7.156,0.190%207.707,-0.117%208.238,0.033%20C8.768,0.183%209.075,0.733%208.925,1.262%20L7.311,6.965%20L16.597,6.965%20L14.983,1.262%20C14.833,0.733%2015.140,0.183%2015.670,0.033%20C16.195,-0.117%2016.751,0.190%2016.900,0.720%20L18.668,6.965%20L22.920,6.965%20C23.219,6.965%2023.501,7.099%2023.691,7.330%20C23.880,7.560%2023.956,7.863%2023.897,8.156%20L22.900,13.134%20C22.792,13.673%2022.265,14.023%2021.727,13.915%20ZM16.938,18.913%20L18.932,18.913%20L18.932,16.922%20C18.932,16.372%2019.378,15.926%2019.929,15.926%20C20.480,15.926%2020.926,16.372%2020.926,16.922%20L20.926,18.913%20L22.920,18.913%20C23.471,18.913%2023.917,19.359%2023.917,19.909%20C23.917,20.459%2023.471,20.904%2022.920,20.904%20L20.926,20.904%20L20.926,22.896%20C20.926,23.446%2020.480,23.892%2019.929,23.892%20C19.378,23.892%2018.932,23.446%2018.932,22.896%20L18.932,20.904%20L16.938,20.904%20C16.387,20.904%2015.942,20.459%2015.942,19.909%20C15.942,19.359%2016.387,18.913%2016.938,18.913%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-basket-remove {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.91'%20height='21.88'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.339,14.894%20C20.802,14.772%2020.465,14.239%2020.587,13.703%20L21.970,8.910%20L1.970,8.910%20L4.707,19.895%20L13.944,19.895%20C14.495,19.895%2014.941,20.341%2014.941,20.890%20C14.941,21.440%2014.495,21.886%2013.944,21.886%20L3.910,21.886%20C3.444,21.886%203.040,21.563%202.938,21.110%20L0.013,8.170%20C-0.053,7.875%200.018,7.565%200.207,7.330%20C0.397,7.093%200.683,6.955%200.986,6.955%20L5.237,6.955%20L7.004,0.713%20C7.153,0.182%207.704,-0.123%208.235,0.026%20C8.764,0.175%209.072,0.725%208.922,1.254%20L7.308,6.955%20L16.593,6.955%20L14.979,1.254%20C14.829,0.725%2015.136,0.175%2015.666,0.026%20C16.190,-0.123%2016.747,0.183%2016.896,0.713%20L18.664,6.955%20L22.915,6.955%20C23.218,6.955%2023.505,7.094%2023.694,7.330%20C23.882,7.566%2023.954,7.876%2023.887,8.171%20L22.531,14.143%20C22.410,14.679%2021.872,15.014%2021.339,14.894%20ZM16.934,16.909%20L22.915,16.909%20C23.466,16.909%2023.912,17.355%2023.912,17.904%20C23.912,18.454%2023.466,18.900%2022.915,18.900%20L16.934,18.900%20C16.383,18.900%2015.937,18.454%2015.937,17.904%20C15.937,17.355%2016.383,16.909%2016.934,16.909%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-heart-filled-red {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2023.78%2022'%20style='enable-background:new%200%200%2023.8%2022;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23D0023E;%7D%0A%3C/style%3E%3Cpath%20class='st0'%20d='M22,11.1C22,11.1,22,11.1,22,11.1L14,21c-0.6,0.6-1.3,1-2.1,1c-0.8,0-1.5-0.3-2.1-0.9l-8-9.9c0,0,0,0,0,0%20c-2.4-2.6-2.4-6.6,0.1-9.2C3.1,0.7,4.7,0,6.4,0c1.7,0,3.3,0.7,4.5,1.9c0,0,0,0,0,0l0.9,0.8l1-0.8c0,0,0,0,0,0%20C14.1,0.7,15.6,0,17.3,0c1.7,0,3.3,0.7,4.6,1.9C24.4,4.4,24.4,8.5,22,11.1z'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-close-gray {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='23.813'%20height='23.906'%20viewBox='0%200%2023.813%2023.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23808080;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M13.305,11.946%20L23.521,22.201%20C23.909,22.590%2023.909,23.221%2023.521,23.610%20C23.328,23.804%2023.074,23.901%2022.820,23.901%20C22.566,23.901%2022.312,23.804%2022.118,23.610%20L11.901,13.355%20L1.685,23.610%20C1.492,23.804%201.238,23.901%200.984,23.901%20C0.730,23.901%200.476,23.804%200.282,23.610%20C-0.106,23.221%20-0.106,22.590%200.282,22.201%20L10.498,11.946%20L0.282,1.692%20C-0.106,1.303%20-0.106,0.672%200.282,0.283%20C0.670,-0.106%201.298,-0.106%201.685,0.283%20L11.901,10.537%20L22.117,0.283%20C22.505,-0.106%2023.133,-0.106%2023.521,0.283%20C23.908,0.672%2023.908,1.303%2023.521,1.692%20L13.305,11.946%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-user-circle-gray {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23808080;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%200.000,18.616%200.000,12.000%20C0.000,5.383%205.383,-0.000%2012.000,-0.000%20C18.617,-0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.616%2018.617,24.000%2012.000,24.000%20ZM12.000,22.000%20C14.298,22.000%2016.412,21.213%2018.103,19.904%20L13.483,17.122%20C13.364,17.050%2013.266,16.958%2013.189,16.852%20C13.189,16.852%2013.189,16.852%2013.189,16.852%20C13.185,16.847%2013.185,16.840%2013.181,16.834%20C13.110,16.732%2013.057,16.619%2013.028,16.499%20C13.013,16.436%2013.021,16.373%2013.018,16.310%20C13.015,16.245%2013.002,16.181%2013.012,16.115%20C13.031,15.991%2013.074,15.872%2013.138,15.762%20C13.140,15.758%2013.140,15.754%2013.143,15.750%20C13.143,15.750%2013.143,15.750%2013.143,15.749%20C13.180,15.687%2013.241,15.639%2013.293,15.586%20C13.334,15.543%2013.365,15.490%2013.412,15.456%20C13.412,15.456%2013.412,15.456%2013.413,15.455%20C14.966,14.331%2015.000,11.997%2015.000,11.973%20L14.997,8.785%20C14.755,7.857%2013.332,7.000%2012.000,7.000%20C10.668,7.000%209.245,7.858%209.003,8.787%20L9.000,11.980%20C9.000,11.999%209.034,14.331%2010.587,15.455%20C10.588,15.456%2010.588,15.456%2010.588,15.456%20C10.619,15.479%2010.639,15.516%2010.667,15.542%20C10.737,15.607%2010.810,15.671%2010.857,15.749%20C10.857,15.750%2010.857,15.750%2010.857,15.750%20C10.860,15.754%2010.860,15.758%2010.862,15.762%20C10.926,15.872%2010.969,15.991%2010.988,16.115%20C10.998,16.180%2010.985,16.244%2010.982,16.309%20C10.979,16.373%2010.987,16.436%2010.972,16.499%20C10.944,16.615%2010.892,16.723%2010.824,16.823%20C10.818,16.832%2010.817,16.843%2010.811,16.852%20C10.811,16.852%2010.811,16.852%2010.810,16.853%20C10.783,16.891%2010.737,16.917%2010.703,16.951%20C10.644,17.012%2010.588,17.079%2010.517,17.122%20C10.517,17.122%2010.517,17.122%2010.517,17.122%20L5.898,19.905%20C7.589,21.213%209.702,22.000%2012.000,22.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,14.470%202.905,16.730%204.395,18.476%20L8.399,16.064%20C7.038,14.316%207.000,12.091%207.000,11.977%20L7.003,8.677%20C7.003,8.615%207.009,8.553%207.021,8.492%20C7.427,6.335%209.922,5.000%2012.000,5.000%20C14.078,5.000%2016.573,6.335%2016.979,8.490%20C16.991,8.551%2016.997,8.613%2016.997,8.675%20L17.000,11.976%20C17.000,12.089%2016.962,14.315%2015.601,16.063%20L19.607,18.475%20C21.096,16.729%2022.000,14.470%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-search-down-arrow {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='13.91'%20viewBox='0%200%2023.844%2013.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23808080;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M11.923,13.916%20C11.645,13.916%2011.379,13.800%2011.191,13.594%20L0.284,1.677%20C-0.086,1.272%20-0.059,0.644%200.345,0.274%20C0.749,-0.097%201.376,-0.069%201.746,0.335%20L11.923,11.453%20L22.099,0.335%20C22.468,-0.069%2023.097,-0.097%2023.500,0.274%20C23.904,0.644%2023.931,1.272%2023.561,1.677%20L12.654,13.594%20C12.466,13.800%2012.201,13.916%2011.923,13.916%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-preheader-language-arrow-down {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='13.91'%20viewBox='0%200%2023.844%2013.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23ffffff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M11.923,13.916%20C11.645,13.916%2011.379,13.800%2011.191,13.594%20L0.284,1.677%20C-0.086,1.272%20-0.059,0.644%200.345,0.274%20C0.749,-0.097%201.376,-0.069%201.746,0.335%20L11.923,11.453%20L22.099,0.335%20C22.468,-0.069%2023.097,-0.097%2023.500,0.274%20C23.904,0.644%2023.931,1.272%2023.561,1.677%20L12.654,13.594%20C12.466,13.800%2012.201,13.916%2011.923,13.916%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-hamburger-menu {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='18'%20viewBox='0%200%2018%2018'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23808080;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.000,10.000%20L1.000,10.000%20C0.448,10.000%200.000,9.552%200.000,9.000%20C0.000,8.448%200.448,8.000%201.000,8.000%20L23.000,8.000%20C23.552,8.000%2024.000,8.448%2024.000,9.000%20C24.000,9.552%2023.552,10.000%2023.000,10.000%20ZM23.000,2.000%20L1.000,2.000%20C0.448,2.000%200.000,1.552%200.000,1.000%20C0.000,0.448%200.448,-0.000%201.000,-0.000%20L23.000,-0.000%20C23.552,-0.000%2024.000,0.448%2024.000,1.000%20C24.000,1.552%2023.552,2.000%2023.000,2.000%20ZM1.000,16.000%20L23.000,16.000%20C23.552,16.000%2024.000,16.448%2024.000,17.000%20C24.000,17.552%2023.552,18.000%2023.000,18.000%20L1.000,18.000%20C0.448,18.000%200.000,17.552%200.000,17.000%20C0.000,16.448%200.448,16.000%201.000,16.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-search {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='22'%20height='22'%20fill='white'%20class='bi%20bi-search'%20viewBox='0%200%2022%2022'%3E%3Cpath%20d='M11.742%2010.344a6.5%206.5%200%201%200-1.397%201.398h-.001c.03.04.062.078.098.115l3.85%203.85a1%201%200%200%200%201.415-1.414l-3.85-3.85a1.007%201.007%200%200%200-.115-.1zM12%206.5a5.5%205.5%200%201%201-11%200%205.5%205.5%200%200%201%2011%200z'/%3E%3C/svg%3E");
}
.icon-container .eicon-experience {
  background-image: url("data:image/svg+xml,%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20100%20100'%20style='enable-background:new%200%200%2080%2080;'%20xml:space='preserve'%3E%3Cpath%20id='original_EM'%20d='M78.4,1.7L1.6,24.9l41,9.6l0,0L45,35l10.1,43.3L78.4,1.7z%20M64,35.3l-13.4-3.1l20.5-20.5L64,35.3z%20M17.1,24.4L68.3,8.9L46,31.2L17.1,24.4z%20M62.8,39.2l-7.2,23.7L49.3,36L62.8,39.2z'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-warning-triangle-white {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2023.938%2021.844'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M22.940,21.835%20C22.933,21.835%2022.927,21.835%2022.920,21.835%20L0.976,21.835%20C0.624,21.835%200.297,21.649%200.118,21.346%20C-0.062,21.044%20-0.068,20.668%200.102,20.360%20L11.074,0.460%20C11.424,-0.175%2012.472,-0.175%2012.822,0.460%20L23.709,20.206%20C23.852,20.378%2023.938,20.599%2023.938,20.840%20C23.938,21.389%2023.491,21.835%2022.940,21.835%20ZM11.948,3.005%20L2.663,19.845%20L21.233,19.845%20L11.948,3.005%20ZM11.948,7.905%20C12.499,7.905%2012.946,8.350%2012.946,8.900%20L12.946,13.875%20C12.946,14.424%2012.499,14.870%2011.948,14.870%20C11.397,14.870%2010.951,14.424%2010.951,13.875%20L10.951,8.900%20C10.951,8.350%2011.397,7.905%2011.948,7.905%20ZM12.659,16.153%20C12.838,16.342%2012.948,16.601%2012.948,16.860%20C12.948,17.119%2012.838,17.377%2012.649,17.566%20C12.469,17.745%2012.210,17.855%2011.951,17.855%20C11.681,17.855%2011.432,17.745%2011.243,17.566%20C11.053,17.377%2010.953,17.119%2010.953,16.860%20C10.953,16.601%2011.053,16.342%2011.243,16.153%20C11.611,15.785%2012.290,15.785%2012.659,16.153%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-warning-triangle-green {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2023.938%2021.844'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23008A21;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M22.940,21.835%20C22.933,21.835%2022.927,21.835%2022.920,21.835%20L0.976,21.835%20C0.624,21.835%200.297,21.649%200.118,21.346%20C-0.062,21.044%20-0.068,20.668%200.102,20.360%20L11.074,0.460%20C11.424,-0.175%2012.472,-0.175%2012.822,0.460%20L23.709,20.206%20C23.852,20.378%2023.938,20.599%2023.938,20.840%20C23.938,21.389%2023.491,21.835%2022.940,21.835%20ZM11.948,3.005%20L2.663,19.845%20L21.233,19.845%20L11.948,3.005%20ZM11.948,7.905%20C12.499,7.905%2012.946,8.350%2012.946,8.900%20L12.946,13.875%20C12.946,14.424%2012.499,14.870%2011.948,14.870%20C11.397,14.870%2010.951,14.424%2010.951,13.875%20L10.951,8.900%20C10.951,8.350%2011.397,7.905%2011.948,7.905%20ZM12.659,16.153%20C12.838,16.342%2012.948,16.601%2012.948,16.860%20C12.948,17.119%2012.838,17.377%2012.649,17.566%20C12.469,17.745%2012.210,17.855%2011.951,17.855%20C11.681,17.855%2011.432,17.745%2011.243,17.566%20C11.053,17.377%2010.953,17.119%2010.953,16.860%20C10.953,16.601%2011.053,16.342%2011.243,16.153%20C11.611,15.785%2012.290,15.785%2012.659,16.153%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-warning-triangle-red {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2023.938%2021.844'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23008A21;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M22.940,21.835%20C22.933,21.835%2022.927,21.835%2022.920,21.835%20L0.976,21.835%20C0.624,21.835%200.297,21.649%200.118,21.346%20C-0.062,21.044%20-0.068,20.668%200.102,20.360%20L11.074,0.460%20C11.424,-0.175%2012.472,-0.175%2012.822,0.460%20L23.709,20.206%20C23.852,20.378%2023.938,20.599%2023.938,20.840%20C23.938,21.389%2023.491,21.835%2022.940,21.835%20ZM11.948,3.005%20L2.663,19.845%20L21.233,19.845%20L11.948,3.005%20ZM11.948,7.905%20C12.499,7.905%2012.946,8.350%2012.946,8.900%20L12.946,13.875%20C12.946,14.424%2012.499,14.870%2011.948,14.870%20C11.397,14.870%2010.951,14.424%2010.951,13.875%20L10.951,8.900%20C10.951,8.350%2011.397,7.905%2011.948,7.905%20ZM12.659,16.153%20C12.838,16.342%2012.948,16.601%2012.948,16.860%20C12.948,17.119%2012.838,17.377%2012.649,17.566%20C12.469,17.745%2012.210,17.855%2011.951,17.855%20C11.681,17.855%2011.432,17.745%2011.243,17.566%20C11.053,17.377%2010.953,17.119%2010.953,16.860%20C10.953,16.601%2011.053,16.342%2011.243,16.153%20C11.611,15.785%2012.290,15.785%2012.659,16.153%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-register-pulse {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='18'%20viewBox='0%200%2024%2018'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23fff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M14.000,18.000%20C13.986,18.000%2013.974,17.999%2013.960,17.999%20C13.494,17.980%2013.102,17.643%2013.018,17.184%20L10.898,5.890%20L8.975,14.226%20C8.872,14.671%208.481,14.989%208.025,15.000%20C7.614,15.021%207.163,14.715%207.038,14.276%20L6.065,10.868%20L5.970,11.245%20C5.858,11.689%205.459,12.002%205.000,12.002%20L1.000,12.002%20C0.447,12.002%20-0.000,11.554%20-0.000,11.002%20C-0.000,10.450%200.447,10.003%201.000,10.003%20L4.219,10.003%20L5.030,6.761%20C5.140,6.322%205.530,6.012%205.983,6.004%20C6.425,5.988%206.837,6.293%206.962,6.728%20L7.897,10.002%20L10.025,0.780%20C10.132,0.320%2010.528,-0.001%2011.021,0.005%20C11.494,0.016%2011.896,0.356%2011.982,0.822%20L14.181,12.539%20L16.035,5.741%20C16.153,5.308%2016.545,5.007%2016.994,5.004%20C16.996,5.004%2016.998,5.004%2017.000,5.004%20C17.446,5.004%2017.839,5.300%2017.962,5.729%20L19.273,10.316%20C19.459,10.119%2019.721,10.003%2020.000,10.003%20L23.000,10.003%20C23.553,10.003%2024.000,10.450%2024.000,11.002%20C24.000,11.554%2023.553,12.002%2023.000,12.002%20L20.618,12.002%20L19.895,13.449%20C19.709,13.816%2019.321,14.035%2018.907,13.997%20C18.497,13.959%2018.151,13.673%2018.038,13.277%20L17.023,9.721%20L14.965,17.264%20C14.846,17.700%2014.449,18.000%2014.000,18.000%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-arrow-down {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='10'%20height='10'%20viewBox='0%200%2023.844%2013.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M11.923,13.916%20C11.645,13.916%2011.379,13.800%2011.191,13.594%20L0.284,1.677%20C-0.086,1.272%20-0.059,0.644%200.345,0.274%20C0.749,-0.097%201.376,-0.069%201.746,0.335%20L11.923,11.453%20L22.099,0.335%20C22.468,-0.069%2023.097,-0.097%2023.500,0.274%20C23.904,0.644%2023.931,1.272%2023.561,1.677%20L12.654,13.594%20C12.466,13.800%2012.201,13.916%2011.923,13.916%20Z'%20class='cls-1'/%3E%3C/svg%3E");
}
.icon-container .eicon-filter-arrow-up {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='10'%20height='10'%20viewBox='0%200%2023.844%2013.81'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M22.835,13.799%20C22.566,13.799%2022.299,13.692%2022.103,13.479%20L11.927,2.421%20L1.751,13.479%20C1.381,13.881%200.754,13.909%200.350,13.539%20C-0.054,13.171%20-0.081,12.546%200.289,12.144%20L11.196,0.292%20C11.572,-0.116%2012.283,-0.116%2012.658,0.292%20L23.566,12.144%20C23.936,12.546%2023.908,13.171%2023.505,13.539%20C23.314,13.714%2023.074,13.799%2022.835,13.799%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='10'%20height='10'%20viewBox='0%200%2013.938%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M1.017,23.910%20C0.748,23.910%200.480,23.802%200.284,23.588%20C-0.086,23.183%20-0.059,22.552%200.345,22.181%20L11.465,11.961%20L0.345,1.742%20C-0.059,1.370%20-0.086,0.740%200.284,0.335%20C0.655,-0.070%201.284,-0.098%201.688,0.274%20L13.606,11.227%20C13.811,11.416%2013.928,11.683%2013.928,11.961%20C13.928,12.240%2013.811,12.507%2013.606,12.695%20L1.688,23.649%20C1.497,23.824%201.257,23.910%201.017,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-sort-arrow {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20%3F%3E%3Csvg%20fill='none'%20height='18'%20viewBox='0%200%2020%2024'%20width='18'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.28829%204.29327L2.29252%208.29327L2.20938%208.38752C1.90456%208.77997%201.93259%209.34719%202.29327%209.70748L2.38752%209.79062C2.77997%2010.0954%203.34719%2010.0674%203.70748%209.70673L6.001%207.41L6.00101%2019.0007L6.00774%2019.1173C6.0655%2019.6146%206.48817%2020.0007%207.00101%2020.0007L7.11763%2019.9939C7.61497%2019.9362%208.00101%2019.5135%208.00101%2019.0007L8.001%207.417L10.2944%209.70757L10.3886%209.7907C10.7811%2010.0955%2011.3483%2010.0674%2011.7086%209.70664C12.0988%209.31586%2012.0984%208.6827%2011.7077%208.29243L7.70242%204.29243L7.60816%204.20931C7.21571%203.90456%206.64855%203.93262%206.28829%204.29327ZM17%204.00317L16.8834%204.0099C16.386%204.06767%2016%204.49034%2016%205.00317L16%2016.583L13.7068%2014.2925L13.6125%2014.2094C13.2201%2013.9045%2012.6529%2013.9325%2012.2926%2014.2932C11.9022%2014.6839%2011.9025%2015.3171%2012.2932%2015.7074L16.297%2019.7074L16.3912%2019.7905C16.7837%2020.0954%2017.3509%2020.0674%2017.7112%2019.7067L21.7074%2015.7067L21.7906%2015.6125C22.0954%2015.22%2022.0674%2014.6528%2021.7068%2014.2925L21.6125%2014.2094C21.2201%2013.9045%2020.6529%2013.9325%2020.2926%2014.2932L18%2016.587L18%205.00317L17.9933%204.88655C17.9355%204.38921%2017.5128%204.00317%2017%204.00317Z'%20fill='%23212121'/%3E%3C/svg%3E");
}
.icon-container .eicon-pagination-right-arrow {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='15'%20height='13'%20viewBox='0%200%201%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M1.017,23.910%20C0.748,23.910%200.480,23.802%200.284,23.588%20C-0.086,23.183%20-0.059,22.552%200.345,22.181%20L11.465,11.961%20L0.345,1.742%20C-0.059,1.370%20-0.086,0.740%200.284,0.335%20C0.655,-0.070%201.284,-0.098%201.688,0.274%20L13.606,11.227%20C13.811,11.416%2013.928,11.683%2013.928,11.961%20C13.928,12.240%2013.811,12.507%2013.606,12.695%20L1.688,23.649%20C1.497,23.824%201.257,23.910%201.017,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-pagination-left-arrow {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='15'%20height='13'%20viewBox='0%200%2013.937%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.918,23.910%20C12.678,23.910%2012.438,23.824%2012.247,23.648%20L0.330,12.695%20C0.125,12.507%200.007,12.240%200.007,11.961%20C0.007,11.682%200.125,11.416%200.330,11.227%20L12.247,0.274%20C12.652,-0.098%2013.281,-0.070%2013.651,0.335%20C14.021,0.740%2013.994,1.370%2013.590,1.742%20L2.471,11.961%20L13.590,22.181%20C13.994,22.552%2014.021,23.182%2013.651,23.588%20C13.455,23.802%2013.187,23.910%2012.918,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-point-submit {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='18'%20viewBox='0%200%2013.938%2023.91'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23ffffff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M1.017,23.910%20C0.748,23.910%200.480,23.802%200.284,23.588%20C-0.086,23.183%20-0.059,22.552%200.345,22.181%20L11.465,11.961%20L0.345,1.742%20C-0.059,1.370%20-0.086,0.740%200.284,0.335%20C0.655,-0.070%201.284,-0.098%201.688,0.274%20L13.606,11.227%20C13.811,11.416%2013.928,11.683%2013.928,11.961%20C13.928,12.240%2013.811,12.507%2013.606,12.695%20L1.688,23.649%20C1.497,23.824%201.257,23.910%201.017,23.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-arrow-down-animate {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20330%20330'%20style='enable-background:new%200%200%20230%20230;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
}
.icon-container .eicon-cross-circle-filter {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='12'%20height='12'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M12.000,24.000%20C5.383,24.000%20-0.000,18.617%20-0.000,12.000%20C-0.000,5.383%205.383,0.000%2012.000,0.000%20C18.617,0.000%2024.000,5.383%2024.000,12.000%20C24.000,18.617%2018.617,24.000%2012.000,24.000%20ZM12.000,2.000%20C6.486,2.000%202.000,6.486%202.000,12.000%20C2.000,17.514%206.486,22.000%2012.000,22.000%20C17.514,22.000%2022.000,17.514%2022.000,12.000%20C22.000,6.486%2017.514,2.000%2012.000,2.000%20ZM16.707,16.707%20C16.512,16.902%2016.256,17.000%2016.000,17.000%20C15.744,17.000%2015.488,16.902%2015.293,16.707%20L12.000,13.414%20L8.707,16.707%20C8.512,16.902%208.256,17.000%208.000,17.000%20C7.744,17.000%207.488,16.902%207.293,16.707%20C6.902,16.317%206.902,15.683%207.293,15.293%20L10.586,12.000%20L7.293,8.707%20C6.902,8.317%206.902,7.684%207.293,7.293%20C7.684,6.902%208.316,6.902%208.707,7.293%20L12.000,10.586%20L15.293,7.293%20C15.684,6.902%2016.316,6.902%2016.707,7.293%20C17.098,7.684%2017.098,8.317%2016.707,8.707%20L13.414,12.000%20L16.707,15.293%20C17.098,15.683%2017.098,16.317%2016.707,16.707%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-funnel {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2022%2024'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M20.935,5.268%20L14.000,11.829%20C14.000,11.830%2014.000,11.830%2014.000,11.831%20L14.000,20.111%20C14.000,20.433%2013.846,20.735%2013.586,20.922%20L9.586,23.811%20C9.412,23.937%209.206,24.000%209.000,24.000%20C8.845,24.000%208.688,23.964%208.545,23.891%20C8.210,23.720%208.000,23.376%208.000,23.000%20L8.000,11.831%20C8.000,11.756%208.027,11.689%208.043,11.619%20L1.584,5.287%20C1.198,4.890%20-0.000,3.564%20-0.000,2.421%20L-0.000,1.000%20C-0.000,0.447%200.447,0.000%201.000,0.000%20L21.000,0.000%20C21.553,0.000%2022.000,0.447%2022.000,1.000%20L22.000,2.421%20C22.000,3.227%2021.721,4.456%2020.935,5.268%20ZM2.000,2.421%20C2.025,2.614%202.420,3.277%203.003,3.878%20L9.825,10.565%20C10.153,10.887%2010.196,11.372%209.985,11.755%20C9.987,11.782%2010.000,11.804%2010.000,11.831%20L10.000,21.044%20L12.000,19.599%20L12.000,11.831%20C12.000,11.652%2012.059,11.494%2012.141,11.349%20C12.121,11.060%2012.211,10.767%2012.437,10.552%20L19.528,3.847%20C19.812,3.552%2020.000,2.882%2020.000,2.421%20L20.000,2.000%20L2.000,2.000%20L2.000,2.421%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-fav-cart-add {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='15'%20height='15'%20viewBox='0%200%2023.91%2023.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M21.727,13.915%20C21.188,13.808%2020.837,13.283%2020.945,12.744%20L21.970,8.910%20L1.970,8.910%20L4.710,19.909%20L12.951,19.909%20C13.502,19.909%2013.948,20.355%2013.948,20.904%20C13.948,21.455%2013.502,21.900%2012.951,21.900%20L3.913,21.900%20C3.446,21.900%203.042,21.578%202.940,21.124%20L0.016,8.180%20C-0.051,7.885%200.020,7.575%200.209,7.339%20C0.399,7.103%200.685,6.965%200.988,6.965%20L5.239,6.965%20L7.008,0.720%20C7.156,0.190%207.707,-0.117%208.238,0.033%20C8.768,0.183%209.075,0.733%208.925,1.262%20L7.311,6.965%20L16.597,6.965%20L14.983,1.262%20C14.833,0.733%2015.140,0.183%2015.670,0.033%20C16.195,-0.117%2016.751,0.190%2016.900,0.720%20L18.668,6.965%20L22.920,6.965%20C23.219,6.965%2023.501,7.099%2023.691,7.330%20C23.880,7.560%2023.956,7.863%2023.897,8.156%20L22.900,13.134%20C22.792,13.673%2022.265,14.023%2021.727,13.915%20ZM16.938,18.913%20L18.932,18.913%20L18.932,16.922%20C18.932,16.372%2019.378,15.926%2019.929,15.926%20C20.480,15.926%2020.926,16.372%2020.926,16.922%20L20.926,18.913%20L22.920,18.913%20C23.471,18.913%2023.917,19.359%2023.917,19.909%20C23.917,20.459%2023.471,20.904%2022.920,20.904%20L20.926,20.904%20L20.926,22.896%20C20.926,23.446%2020.480,23.892%2019.929,23.892%20C19.378,23.892%2018.932,23.446%2018.932,22.896%20L18.932,20.904%20L16.938,20.904%20C16.387,20.904%2015.942,20.459%2015.942,19.909%20C15.942,19.359%2016.387,18.913%2016.938,18.913%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-fav-edit {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='15'%20height='15'%20viewBox='0%200%2023.75%2023.79'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23838383;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M23.709,4.119%20C23.703,4.163%2023.680,4.199%2023.668,4.240%20C23.653,4.295%2023.639,4.347%2023.615,4.399%20C23.580,4.471%2023.535,4.532%2023.486,4.592%20C23.464,4.620%2023.454,4.653%2023.429,4.678%20L13.518,14.583%20C13.501,14.599%2013.479,14.605%2013.461,14.620%20C13.412,14.664%2013.356,14.696%2013.298,14.729%20C13.239,14.762%2013.181,14.794%2013.117,14.815%20C13.096,14.822%2013.080,14.838%2013.058,14.843%20L9.093,15.835%20C9.014,15.855%208.933,15.865%208.853,15.865%20C8.593,15.865%208.340,15.762%208.152,15.575%20C7.906,15.328%207.807,14.971%207.891,14.634%20L8.882,10.671%20C8.888,10.648%208.904,10.632%208.912,10.610%20C8.932,10.546%208.964,10.490%208.997,10.431%20C9.030,10.373%209.062,10.318%209.105,10.269%20C9.120,10.251%209.126,10.228%209.143,10.211%20L19.054,0.306%20C19.083,0.277%2019.121,0.265%2019.153,0.241%20C19.205,0.200%2019.256,0.162%2019.316,0.132%20C19.379,0.101%2019.442,0.081%2019.508,0.064%20C19.545,0.054%2019.576,0.032%2019.614,0.027%20C19.824,-0.003%2021.694,-0.231%2022.835,0.992%20C23.951,2.181%2023.737,3.924%2023.709,4.119%20ZM21.387,2.345%20C21.107,2.044%2020.561,1.974%2020.190,1.973%20L10.739,11.417%20L10.215,13.512%20L12.310,12.988%20L21.761,3.544%20C21.757,3.187%2021.685,2.662%2021.387,2.345%20ZM12.000,3.880%20L2.000,3.880%20L2.000,21.880%20L20.000,21.880%20L20.000,11.880%20C20.000,11.333%2020.198,10.912%2020.746,10.912%20C21.293,10.912%2021.737,11.355%2021.737,11.902%20L21.737,22.797%20C21.737,23.345%2021.293,23.788%2020.746,23.788%20L0.924,23.788%20C0.377,23.788%20-0.000,23.427%20-0.000,22.880%20L-0.000,2.880%20C-0.000,2.333%200.377,1.998%200.924,1.998%20L11.826,1.998%20C12.373,1.998%2012.817,2.441%2012.817,2.989%20C12.817,3.536%2012.547,3.880%2012.000,3.880%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-checkout-basket {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2023.91%2021.88'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M20.966,21.112%20C20.864,21.565%2020.460,21.888%2019.994,21.888%20L3.913,21.888%20C3.447,21.888%203.043,21.565%202.941,21.112%20L0.017,8.172%20C-0.050,7.877%200.021,7.568%200.210,7.332%20C0.400,7.095%200.686,6.958%200.989,6.958%20L5.240,6.958%20L7.008,0.715%20C7.157,0.185%207.707,-0.121%208.238,0.028%20C8.768,0.177%209.075,0.728%208.925,1.257%20L7.311,6.958%20L16.596,6.958%20L14.982,1.257%20C14.832,0.728%2015.139,0.177%2015.669,0.028%20C16.194,-0.121%2016.751,0.185%2016.899,0.715%20L18.667,6.958%20L22.918,6.958%20C23.221,6.958%2023.507,7.095%2023.697,7.332%20C23.886,7.568%2023.957,7.877%2023.891,8.172%20L20.966,21.112%20ZM1.970,8.910%20L4.710,19.897%20L19.197,19.897%20L21.970,8.910%20L1.970,8.910%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-go-arrow {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Uploaded%20to:%20SVG%20Repo,%20www.svgrepo.com,%20Generator:%20SVG%20Repo%20Mixer%20Tools%20--%3E%3Csvg%20fill='%23ffffff'%20height='20'%20width='20'%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%20512%20512'%20xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath%20d='M388.418,240.915L153.752,6.248c-8.331-8.331-21.839-8.331-30.17,0c-8.331,8.331-8.331,21.839,0,30.17L343.163,256%20L123.582,475.582c-8.331,8.331-8.331,21.839,0,30.17c8.331,8.331,21.839,8.331,30.17,0l234.667-234.667%20C396.749,262.754,396.749,249.246,388.418,240.915z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-alert-close {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='16'%20height='16'%20viewBox='0%200%2023.813%2023.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23ffffff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M13.305,11.946%20L23.521,22.201%20C23.909,22.590%2023.909,23.221%2023.521,23.610%20C23.328,23.804%2023.074,23.901%2022.820,23.901%20C22.566,23.901%2022.312,23.804%2022.118,23.610%20L11.901,13.355%20L1.685,23.610%20C1.492,23.804%201.238,23.901%200.984,23.901%20C0.730,23.901%200.476,23.804%200.282,23.610%20C-0.106,23.221%20-0.106,22.590%200.282,22.201%20L10.498,11.946%20L0.282,1.692%20C-0.106,1.303%20-0.106,0.672%200.282,0.283%20C0.670,-0.106%201.298,-0.106%201.685,0.283%20L11.901,10.537%20L22.117,0.283%20C22.505,-0.106%2023.133,-0.106%2023.521,0.283%20C23.908,0.672%2023.908,1.303%2023.521,1.692%20L13.305,11.946%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-alert-error {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2016.0.4,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3C!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1%20Tiny//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'%20%5B%20%3C!ENTITY%20ns_flows%20'http://ns.adobe.com/Flows/1.0/'%3E%3C!ENTITY%20ns_extend%20'http://ns.adobe.com/Extensibility/1.0/'%3E%3C!ENTITY%20ns_ai%20'http://ns.adobe.com/AdobeIllustrator/10.0/'%3E%3C!ENTITY%20ns_graphs%20'http://ns.adobe.com/Graphs/1.0/'%3E%0A%5D%3E%3Csvg%20version='1.1'%20baseProfile='tiny'%20id='Layer_1'%20xmlns:x='&ns_extend;'%20xmlns:i='&ns_ai;'%20xmlns:graph='&ns_graphs;'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20xmlns:a='http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/'%20x='0px'%20y='0px'%20fill='%23ffffff'%20width='20'%20height='20'%20viewBox='-0.5%200.5%2042%2042'%20xml:space='preserve'%3E%3Cpath%20d='M18.295,3.895L1.203,34.555C-0.219,37.146,0.385,39.5,4.228,39.5H36.77c3.854,0,4.447-2.354,3.025-4.945L22.35,3.914%20C21.996,3.223,21.482,2.49,20.393,2.5C19.233,2.521,18.658,3.203,18.295,3.895z%20M18.5,13.5h4v14h-4V13.5z%20M18.5,30.5h4v4h-4V30.5z'%20/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-check {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2023.813%2017.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23ffffff;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M8.985,17.892%20C8.724,17.892%208.473,17.788%208.287,17.604%20L0.287,9.650%20C-0.102,9.263%20-0.105,8.634%200.281,8.244%20C0.666,7.854%201.294,7.852%201.684,8.238%20L8.933,15.445%20L22.057,0.338%20C22.415,-0.076%2023.042,-0.120%2023.456,0.241%20C23.869,0.602%2023.912,1.230%2023.552,1.644%20L9.733,17.550%20C9.553,17.758%209.296,17.881%209.022,17.891%20C9.010,17.892%208.998,17.892%208.985,17.892%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-filter-arrow-down-language {
  background-image: url("data:image/svg+xml,<%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F><!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--><svg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20fill='%23D3D3D3'%20viewBox='0%200%20330%20330'%20style='enable-background:new%200%200%20230%20230;'%20xml:space='preserve'><path%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>%0A");
}
.icon-container .eicon-readmore-down-arrow {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Uploaded%20to:%20SVG%20Repo,%20www.svgrepo.com,%20Generator:%20SVG%20Repo%20Mixer%20Tools%20--%3E%3Csvg%20fill='%23008a21'%20height='20px'%20width='20px'%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%2060%20330%20330'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/%3E%3C/svg%3E");
}
.icon-container .eicon-warning-error {
  background-image: url("data:image/svg+xml,%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0'%20y='0'%20viewBox='0%200%20201%20201'%20xml:space='preserve'%3E%3Cpath%20fill='%23FFFFFF'%20opacity='1.000000'%20stroke='none'%20d='%0AM136.000000,202.000000%20C90.666672,202.000000%2045.833340,202.000000%201.000006,202.000000%20C1.000004,135.000000%201.000004,68.000015%201.000002,1.000015%20C67.999992,1.000010%20134.999985,1.000010%20201.999969,1.000005%20C201.999985,67.999985%20201.999985,134.999969%20202.000000,201.999969%20C180.166672,202.000000%20158.333328,202.000000%20136.000000,202.000000%20M178.498215,191.000000%20C183.329163,190.999939%20188.162796,191.102554%20192.990387,190.975220%20C199.833084,190.794724%20203.644684,183.865097%20200.286041,177.843903%20C196.499619,171.055801%20192.644104,164.306000%20188.888763,157.500839%20C176.202682,134.511993%20163.541290,111.509514%20150.882584,88.505577%20C137.360474,63.932617%20123.843391,39.356876%20110.343597,14.771645%20C106.748344,8.224131%2097.845741,7.681720%2094.055595,14.149279%20C88.404434,23.792501%2083.254539,33.728325%2077.824638,43.502590%20C66.016716,64.757805%2054.162361,85.987228%2042.335430,107.231888%20C35.634628,119.268509%2028.901352,131.287415%2022.273258,143.364014%20C16.112879,154.588379%209.893988,165.786819%204.040928,177.171524%20C-0.018886,185.068237%203.836928,190.999527%2012.582922,190.999634%20C67.554932,191.000336%20122.526947,191.000000%20178.498215,191.000000%20z'/%3E%3Cpath%20fill='%23D0023E'%20opacity='1.000000'%20stroke='none'%20d='%0AM177.998596,191.000000%20C122.526947,191.000000%2067.554932,191.000336%2012.582922,190.999634%20C3.836928,190.999527%20-0.018886,185.068237%204.040928,177.171524%20C9.893988,165.786819%2016.112879,154.588379%2022.273258,143.364014%20C28.901352,131.287415%2035.634628,119.268509%2042.335430,107.231888%20C54.162361,85.987228%2066.016716,64.757805%2077.824638,43.502590%20C83.254539,33.728325%2088.404434,23.792501%2094.055595,14.149279%20C97.845741,7.681720%20106.748344,8.224131%20110.343597,14.771645%20C123.843391,39.356876%20137.360474,63.932617%20150.882584,88.505577%20C163.541290,111.509514%20176.202682,134.511993%20188.888763,157.500839%20C192.644104,164.306000%20196.499619,171.055801%20200.286041,177.843903%20C203.644684,183.865097%20199.833084,190.794724%20192.990387,190.975220%20C188.162796,191.102554%20183.329163,190.999939%20177.998596,191.000000%20M110.000000,113.472473%20C109.999619,104.172958%20110.108803,94.871628%20109.955437,85.574638%20C109.871010,80.456993%20105.934082,75.996422%20101.987289,76.006348%20C98.213036,76.015839%2094.095284,80.001503%2094.051926,84.284279%20C93.915741,97.733971%2093.891182,111.187309%2094.063522,124.636169%20C94.121071,129.127228%2097.176697,132.136169%20101.321495,132.524353%20C104.936859,132.862946%20108.249306,130.694687%20108.920097,126.629204%20C109.581200,122.622490%20109.663658,118.520287%20110.000000,113.472473%20M100.747726,142.004593%20C95.518814,143.975555%2093.082397,147.315384%2094.066650,151.162994%20C95.023338,154.902847%2099.429840,158.318314%20102.982361,156.743271%20C105.789276,155.498764%20108.432732,152.319122%20109.595375,149.383636%20C110.704605,146.583008%20105.570633,142.393829%20100.747726,142.004593%20z'/%3E%3Cpath%20fill='%23FFFFFF'%20opacity='1.000000'%20stroke='none'%20d='%0AM110.000000,113.966232%20C109.663658,118.520287%20109.581200,122.622490%20108.920097,126.629204%20C108.249306,130.694687%20104.936859,132.862946%20101.321495,132.524353%20C97.176697,132.136169%2094.121071,129.127228%2094.063522,124.636169%20C93.891182,111.187309%2093.915741,97.733971%2094.051926,84.284279%20C94.095284,80.001503%2098.213036,76.015839%20101.987289,76.006348%20C105.934082,75.996422%20109.871010,80.456993%20109.955437,85.574638%20C110.108803,94.871628%20109.999619,104.172958%20110.000000,113.966232%20z'/%3E%3Cpath%20fill='%23FFFFFF'%20opacity='1.000000'%20stroke='none'%20d='%0AM101.152451,142.002563%20C105.570633,142.393829%20110.704605,146.583008%20109.595375,149.383636%20C108.432732,152.319122%20105.789276,155.498764%20102.982361,156.743271%20C99.429840,158.318314%2095.023338,154.902847%2094.066650,151.162994%20C93.082397,147.315384%2095.518814,143.975555%20101.152451,142.002563%20z'/%3E%3C/svg%3E");
  font-size: 3em;
}
.icon-container .eicon-mastery {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2027.3.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='icons'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='23px'%20height='23px'%20viewBox='0%200%20100%20100'%20style='enable-background:new%200%200%20100%20100;'%20xml:space='preserve'%3E%3Cpath%20id='crown'%20d='M76.4,86.8l9.4-56.6L63.6,49.4L50,13.2L36.4,49.4L14.1,30.2l9.4,56.6L76.4,86.8z%20M80.1,40.4L74,77.2l-6.8-18.2%20l-2.1-5.6L80.1,40.4z%20M50,24.5l10.3,27.6l0,0l9.8,26.1L39.7,52.1L50,24.5z%20M34.9,53.3L34.9,53.3l12,10.3L26.6,81l-6.8-40.6%20L34.9,53.3z%20M50,66.3l19.3,16.6l-38.7,0L50,66.3z'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-merchandise {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='utf-8'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2027.3.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='icons'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='24px'%20height='24px'%20viewBox='0%200%20100%20100'%20style='enable-background:new%200%200%20100%20100;'%20xml:space='preserve'%3E%3Cstyle%20type='text/css'%3E%20.st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cpath%20id='tag'%20class='st0'%20d='M85.4,14.6H52.5L14.6,52.5l32.9,32.9l37.9-37.9L85.4,14.6z%20M45.9,78.1L22.2,54.5H48L45.9,78.1z%20M48.3,50.5H22.2l28.6-28.6L48.3,50.5z%20M50,77.3l5.2-58.7h26.2l0,27.2L50,77.3z%20M77.4,25.1c0,1.6-1.3,3-3,3s-3-1.3-3-3%20c0-1.6,1.3-3,3-3S77.4,23.4,77.4,25.1z'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-marketplace-check {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='20'%20height='20'%20viewBox='0%200%2023.813%2017.906'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M8.985,17.892%20C8.724,17.892%208.473,17.788%208.287,17.604%20L0.287,9.650%20C-0.102,9.263%20-0.105,8.634%200.281,8.244%20C0.666,7.854%201.294,7.852%201.684,8.238%20L8.933,15.445%20L22.057,0.338%20C22.415,-0.076%2023.042,-0.120%2023.456,0.241%20C23.869,0.602%2023.912,1.230%2023.552,1.644%20L9.733,17.550%20C9.553,17.758%209.296,17.881%209.022,17.891%20C9.010,17.892%208.998,17.892%208.985,17.892%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-marketplace-link {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0,0,256,256'%20width='16px'%20height='16px'%20fill-rule='nonzero'%3E%3Cg%20fill='%23ababab'%20fill-rule='nonzero'%20stroke='none'%20stroke-width='1'%20stroke-linecap='butt'%20stroke-linejoin='miter'%20stroke-miterlimit='10'%20stroke-dasharray=''%20stroke-dashoffset='0'%20font-family='none'%20font-weight='none'%20font-size='none'%20text-anchor='none'%20style='mix-blend-mode:%20normal'%3E%3Cg%20transform='scale(16,16)'%3E%3Cpath%20d='M9,2v1h3.29297l-6.26953,6.27344l0.70313,0.70313l6.27344,-6.26953v3.29297h1v-5zM4,4c-1.10547,0%20-2,0.89453%20-2,2v6c0,1.10547%200.89453,2%202,2h6c1.10547,0%202,-0.89453%202,-2v-5l-1,1v4c0,0.55078%20-0.44922,1%20-1,1h-6c-0.55078,0%20-1,-0.44922%20-1,-1v-6c0,-0.55078%200.44922,-1%201,-1h4l1,-1z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-menu-cross-icon {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20fill='currentColor'%20class='bi%20bi-x'%20viewBox='0%200%2016%2016'%3E%3Cpath%20d='M4.646%204.646a.5.5%200%200%201%20.708%200L8%207.293l2.646-2.647a.5.5%200%200%201%20.708.708L8.707%208l2.647%202.646a.5.5%200%200%201-.708.708L8%208.707l-2.646%202.647a.5.5%200%200%201-.708-.708L7.293%208%204.646%205.354a.5.5%200%200%201%200-.708'/%3E%3C/svg%3E");
}
.icon-container .eiocn-menu-chat {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20preserveAspectRatio='xMidYMid'%20width='24'%20height='22'%20viewBox='0%200%2024%2022'%3E%3Cdefs%3E%3Cstyle%3E%20.cls-1%20%7B%20fill:%20%23000;%20fill-rule:%20evenodd;%20%7D%20%3C/style%3E%3C/defs%3E%3Cpath%20d='M20.501,18.015%20C20.752,19.500%2021.557,20.145%2021.595,20.173%20C21.917,20.420%2022.064,20.841%2021.959,21.232%20C21.853,21.622%2021.529,21.916%2021.127,21.967%20C21.093,21.972%2020.875,21.998%2020.533,21.998%20C19.505,21.998%2017.369,21.743%2015.757,19.977%20L14.498,19.977%20C12.688,19.977%2010.976,19.594%209.547,18.870%20C9.055,18.621%208.858,18.019%209.108,17.527%20C9.358,17.036%209.960,16.839%2010.453,17.088%20C11.602,17.671%2013.001,17.979%2014.500,17.979%20L16.199,17.979%20C16.222,17.979%2016.241,17.991%2016.264,17.992%20C16.333,17.997%2016.397,18.014%2016.465,18.033%20C16.525,18.050%2016.583,18.064%2016.638,18.091%20C16.693,18.119%2016.741,18.157%2016.791,18.194%20C16.846,18.236%2016.899,18.277%2016.945,18.329%20C16.960,18.346%2016.980,18.354%2016.994,18.373%20C17.559,19.111%2018.267,19.521%2018.924,19.743%20C18.690,19.186%2018.513,18.500%2018.452,17.692%20C18.450,17.679%2018.448,17.666%2018.447,17.653%20C18.445,17.631%2018.439,17.614%2018.438,17.591%20C18.435,17.544%2018.453,17.501%2018.456,17.455%20C18.462,17.384%2018.465,17.314%2018.486,17.246%20C18.504,17.184%2018.535,17.131%2018.565,17.074%20C18.595,17.018%2018.621,16.962%2018.662,16.911%20C18.706,16.855%2018.762,16.813%2018.818,16.768%20C18.854,16.739%2018.878,16.700%2018.919,16.675%20C20.069,15.981%2022.000,14.450%2022.000,11.985%20C22.000,10.778%2021.339,9.442%2020.429,8.809%20C19.976,8.493%2019.864,7.871%2020.179,7.418%20C20.494,6.965%2021.118,6.854%2021.571,7.169%20C23.024,8.179%2024.000,10.115%2024.000,11.985%20C24.000,14.313%2022.725,16.475%2020.501,18.015%20ZM9.500,15.981%20L8.242,15.981%20C6.630,17.746%204.495,18.002%203.467,18.002%20C3.125,18.002%202.907,17.976%202.873,17.971%20C2.465,17.919%202.131,17.623%202.030,17.225%20C1.930,16.827%202.083,16.408%202.417,16.169%20C2.444,16.147%203.248,15.504%203.498,14.018%20C1.274,12.479%20-0.000,10.317%20-0.000,7.989%20C-0.000,3.582%204.262,-0.004%209.500,-0.004%20C14.738,-0.004%2019.000,3.582%2019.000,7.989%20C19.000,12.396%2014.738,15.981%209.500,15.981%20ZM9.500,1.994%20C5.364,1.994%202.000,4.683%202.000,7.989%20C2.000,10.454%203.929,11.985%205.079,12.679%20C5.120,12.704%205.144,12.743%205.180,12.772%20C5.236,12.817%205.291,12.859%205.336,12.915%20C5.377,12.965%205.403,13.021%205.433,13.078%20C5.462,13.135%205.494,13.187%205.512,13.249%20C5.533,13.318%205.536,13.387%205.542,13.459%20C5.545,13.505%205.563,13.547%205.561,13.594%20C5.559,13.617%205.553,13.634%205.551,13.657%20C5.550,13.670%205.548,13.682%205.546,13.695%20C5.486,14.504%205.308,15.191%205.075,15.748%20C5.731,15.525%206.440,15.116%207.006,14.376%20C7.020,14.358%207.040,14.350%207.055,14.334%20C7.101,14.281%207.154,14.239%207.211,14.197%20C7.260,14.160%207.307,14.122%207.362,14.095%20C7.417,14.068%207.475,14.054%207.536,14.037%20C7.603,14.018%207.667,14.001%207.737,13.996%20C7.759,13.995%207.778,13.983%207.801,13.983%20L9.502,13.983%20C13.636,13.983%2017.000,11.294%2017.000,7.989%20C17.000,4.683%2013.636,1.994%209.500,1.994%20Z'%20class='cls-1'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-alert-circle-warning {
  background-image: url("data:image/svg+xml,%3Csvg%20fill='%23ffffff'%20height='16px'%20width='16px'%20version='1.1'%20id='Capa_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2027.963%2027.963'%20xml:space='preserve'%20stroke='%23ffffff'%3E%3Cg%20id='SVGRepo_bgCarrier'%20stroke-width='0'%3E%3C/g%3E%3Cg%20id='SVGRepo_tracerCarrier'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3C/g%3E%3Cg%20id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cg%20id='c129_exclamation'%3E%3Cpath%20d='M13.983,0C6.261,0,0.001,6.259,0.001,13.979c0,7.724,6.26,13.984,13.982,13.984s13.98-6.261,13.98-13.984%20C27.963,6.259,21.705,0,13.983,0z%20M13.983,26.531c-6.933,0-12.55-5.62-12.55-12.553c0-6.93,5.617-12.548,12.55-12.548%20c6.931,0,12.549,5.618,12.549,12.548C26.531,20.911,20.913,26.531,13.983,26.531z'%3E%3C/path%3E%3Cpolygon%20points='15.579,17.158%2016.191,4.579%2011.804,4.579%2012.414,17.158%20'%3E%3C/polygon%3E%3Cpath%20d='M13.998,18.546c-1.471,0-2.5,1.029-2.5,2.526c0,1.443,0.999,2.528,2.444,2.528h0.056c1.499,0,2.469-1.085,2.469-2.528%20C16.441,19.575,15.468,18.546,13.998,18.546z'%3E%3C/path%3E%3C/g%3E%3Cg%20id='Capa_1_207_'%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-selected-checkmark {
  background-image: url("data:image/svg+xml,%3Csvg%20version='1.1'%20viewBox='0%200%2024%2024'%20width='0.222222in'%20height='0.222222in'%20baseProfile='full'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cimage%20x='0'%20y='0'%20width='24'%20height='24'%20preserveAspectRatio='none'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAACXBIWXMAAAsSAAALEgHS3X78AAAFy0lEQVQ4Tx2T62+WZwGHf/fpOb7HnmihDKIUTCPLskxHjXFDJzM7iAdi5iZMM6cmots+kM1vKh9Q0Rg0S3R8MB72YcYBZsMRp6Bbw6az4EhDBy1lhba0pe3z9nkPz30/z30w+Af8rg9Xrh9xZgXKwK/DcmiAAqZAmLeRTtuZeZtwXqGIc6ALtQH01GEpDKzPaGQcCo1AQBsQV6SgtNCEelEmlRf4qU6u3Jya7Vx7+9K/zk6MzSaLsiChKG0dGNq+4UOPfOqB28r9EcqNVru31EcBrRB6t0AFqJOUtOAk9Plk/Hpz4fjfj793baKZp7lTPPQIZYXSvEAFYTep3nPnxx//4t6NZH0I33RUjEB4nLjCOY4lNCXI6ZtnRyffeeP86NTMJb9eKZxyzlIKxgmlIASe5dl8ZyDsq4vqjw/8cD3p2RINBlbAUKKdS6SkAXnt2pmT02f+/PZfMt3GLVeMcKY5Ayy1uSUSpAOl6/WtazNJhVc2VQaOPntkE7r6EMuVFs0BLwgmW1fPTZ079o8TmSddvtq7rhT5lFMLq6GVdZp4HLUyGehJGktBPTBVOr48/e2fHpjU8xJF0B1RA3tTL4/NXHjtnTMkZC7viFLUTlZ1J4WSjFji+xC+y4EV5W60KyRwSmnPBYP1C8nVV8+dXkO+mN2kFFmiFk+cPfVeY1aiIIFvKZOmEKFPOCPWOUtAOFxQ0bVB0vPk7kf3PLA7azRyWhQR+fXLv72ORRGWucZyo7NwYWXKBZpGJavbRnZIKU61IYQ5bbnna1mg6bZFg9/a8+jdQztS2D/+9ZTKc8Ko8clbF//TN7yLLucLJ14/tiYbCLi1FpaBxlxSTwtk1vfLumMZr8Wk9tVd+z4zdJ+Af3LiZMxDyMJnlDG8+e/RJSzzzNP/nTofOku8OMs7DHz3yM5AmTf/+Uatf8NMK1UtFVH9vX1P37t1hCP+2+SrL/3puCOaqCKgPtduevKycoovQSZZyyfGySJzplaufHPnVzaj+93tOw8dOeKBDvVs/sTwRz697e4KqqcunvnNKy/NJcukyn3OGYxR0gVVQSgtUG4aW2ae15QoCt1qXpu7WAa9b8PHXjx09JNDI7d3bXnqocd7EL2bjx9++fkLS1P+QNWFVMQc0JS5pkwNwDm6M40gFoyoWBDVTg89//OZe65+5/79Mav/6MmDFs6DuY65/QefzsrOdosWUZZpY3XhikocJjfWNAzN4Xr7N83lbRkzwa1XYdPF0h8mzu49+v156DJKFfhXsbj/Z8+mpdZiMe/KVndWLNM5kRJSh2TgA4MUnA6i9+F7H4RmTHjNdqdlVDA8+H7z/dGF8ScOPvX6ldOX5NQPfnXwcmM6xRqpM8MyRASRB8+7tZJkZPuOEkrkhutcd7N7nnkM671Ft6hMiqqPAnAhUl1SvBwGhdCNPDG+IrXQygxxDSttqsPePK5m4S+fOzzctY36sFUTfnbHrs5so+rV4Dh4AJ/CtXl/QG8LV6N2Stt+JaCC2+UEwoMDEPTwGm24jcHAnV13VFEm0hUSxRU9s/e5ry8HaRbnruq1FudQrUFb5A7OgoAJMI9SX0idY7kFHa5j3d2q9LufvNCP7jIikjubmqZjmMPCIwceW2WtxHW6Nq5rqqyTF5TSUhiB6Kzd0kYJIUC8iijzNbOO1/bd/+WH7trVjx4PnNrcVFgcQQTSHTv8+5H1H+7NQsxnSExkA25EutxMVzPBopKookXZkglXiUjwxOe/9qW7vtCD7rbqAPTWvQHkNgM1bbRm5Y3RibFfvPiCjEViVU4N9QUjxOYKRoVadJHq5q7BZ77x3S3lTV2oFIWqiToDJblxVltOLBMOUE20UuTTcmFs7srp82+NXR7vFJnOlSvyD67f+NFtd3xu5MHba8MMNIQo8txzouyXZCcn0jiPgmjAKdgcPllBmkMkwAyWEsj/ByMcVAzah3odIQMtIShMUWYRA8+aslQK/gfWYxStDuRWygAAAABJRU5ErkJggg=='/%3E%3C/svg%3E");
}
.icon-container .eicon-cross-close {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20%3F%3E%3Csvg%20enable-background='new%200%200%20512%20512'%20height='512px'%20id='Layer_1'%20version='1.1'%20viewBox='0%200%20512%20512'%20width='512px'%20xml:space='preserve'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cline%20fill='none'%20stroke='%23000000'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='10'%20x1='309.6'%20x2='202.4'%20y1='202.4'%20y2='309.6'/%3E%3Cline%20fill='none'%20stroke='%23000000'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='10'%20stroke-width='10'%20x1='309.6'%20x2='202.4'%20y1='309.6'%20y2='202.4'/%3E%3C/g%3E%3C/svg%3E");
}
.icon-container .eicon-photo-album {
  font-size: 9em;
  background-image: url("data:image/svg+xml,%3Csvg%20width='40'%20height='30'%20viewBox='0%200%2064%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='64'%20height='40'%20rx='20'%20fill='black'%20fill-opacity='0.6'/%3E%3Cmask%20id='mask0_5413_63409'%20style='mask-type:luminance'%20maskUnits='userSpaceOnUse'%20x='22'%20y='10'%20width='20'%20height='20'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M40.1673%2030H23.6531C22.7423%2030%2022.0015%2029.2525%2022.0015%2028.3333V16.6667C22.0015%2015.7475%2022.7423%2015%2023.6531%2015H40.1673C41.0781%2015%2041.974%2015.7475%2041.974%2016.6667V28.3333C41.974%2029.2525%2041.0781%2030%2040.1673%2030ZM40.3073%2016.6667H23.6531V23.1883L28.0698%2019.3675C28.3965%2019.0842%2028.8856%2019.1025%2029.1915%2019.4108L33.639%2023.9L36.369%2021.8333C36.7215%2021.5675%2037.2173%2021.6258%2037.499%2021.9667L40.3073%2025.3683V16.6667ZM40.3073%2027.9717L36.7323%2023.6417L34.0573%2025.6667C33.7281%2025.9158%2033.2673%2025.8825%2032.9781%2025.5892L28.564%2021.135L23.6531%2025.3833V28.3333H40.3073V27.9717ZM35.2131%2019.1667C35.2131%2018.2475%2035.954%2017.5%2036.8656%2017.5C37.7756%2017.5%2038.5156%2018.2475%2038.5156%2019.1667C38.5156%2020.0858%2037.7756%2020.8333%2036.8656%2020.8333C35.954%2020.8333%2035.2131%2020.0858%2035.2131%2019.1667ZM36.8631%2019.1675L36.8656%2020V19.1667C36.8648%2019.1667%2036.864%2019.1675%2036.8631%2019.1675ZM39.3415%2014.1667H24.479C24.0231%2014.1667%2023.6531%2013.7933%2023.6531%2013.3333C23.6531%2012.8733%2024.0231%2012.5%2024.479%2012.5H39.3415C39.7973%2012.5%2040.1673%2012.8733%2040.1673%2013.3333C40.1673%2013.7933%2039.7973%2014.1667%2039.3415%2014.1667ZM37.6898%2011.6667H26.1298C25.674%2011.6667%2025.3048%2011.2933%2025.3048%2010.8333C25.3048%2010.3733%2025.674%2010%2026.1298%2010H37.6898C38.1456%2010%2038.5156%2010.3733%2038.5156%2010.8333C38.5156%2011.2933%2038.1456%2011.6667%2037.6898%2011.6667Z'%20fill='white'/%3E%3C/mask%3E%3Cg%20mask='url(%23mask0_5413_63409)'%3E%3Crect%20x='20'%20y='8'%20width='24'%20height='24'%20rx='8'%20fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.icon-container .eicon-video {
  font-size: 9em;
  background-image: url("data:image/svg+xml,%3Csvg%20width='66'%20height='44'%20viewBox='0%200%2096%2064'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Crect%20width='96'%20height='64'%20rx='32'%20fill='black'%20fill-opacity='0.6'/%3E%3Cmask%20id='mask0_5413_63441'%20style='mask-type:luminance'%20maskUnits='userSpaceOnUse'%20x='35'%20y='18'%20width='26'%20height='28'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M37.4778%2045.3334C36.4923%2045.3334%2035.7778%2044.5634%2035.7778%2043.5034V20.479C35.7778%2019.429%2036.4812%2018.6667%2037.4523%2018.6667C37.7934%2018.6667%2038.1367%2018.7634%2038.4712%2018.9556L59.2356%2030.8467C59.8656%2031.2079%2060.2223%2031.7756%2060.2134%2032.4067C60.2056%2033.0379%2059.8334%2033.5979%2059.1923%2033.9423L38.4589%2045.0723C38.1367%2045.2456%2037.8056%2045.3334%2037.4778%2045.3334ZM37.9989%2021.2456V42.7967L57.4234%2032.369L37.9989%2021.2456Z'%20fill='white'/%3E%3C/mask%3E%3Cg%20mask='url(%23mask0_5413_63441)'%3E%3Crect%20x='32'%20y='16'%20width='32'%20height='32'%20rx='8'%20fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.icon-container .eicon-showmore-arrow-down {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%2060%20330%20330'%20style='enable-background:new%200%200%20330%20330;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'%20stroke='%23008A21'%20stroke-width='4'%20fill='%23008A21'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-showmore-arrow-up {
  rotate: 180deg;
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%2060%20330%20330'%20style='enable-background:new%200%200%20330%20330;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'%20stroke='%23008A21'%20stroke-width='4'%20fill='%23008A21'/%3E%3C/svg%3E%0A");
}
.icon-container .eicon-listing {
  background-image: url("data:image/svg+xml,%3Csvg%20width='512'%20height='512'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20desc='Created%20with%20imagetracer.js%20version%201.2.6'%20%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%2080%20L%2046%2080.5%20L%2042.5%2081%20L%2042.5%2080%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%2080%20L%2054%2080.5%20L%2050.5%2081%20L%2050.5%2080%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2064.5%2084%20L%2065.5%2086%20L%2064.5%2084%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2027.5%2087%20L%2023.5%2092%20L%2027.5%2087%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2068.5%2087%20L%2072.5%2092%20L%2068.5%2087%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20106%20L%2017%20109.5%20L%2016%20109.5%20L%2016.5%20106%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20106%20L%2080%20109.5%20L%2079%20109.5%20L%2079.5%20106%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20114%20L%2017%20117.5%20L%2016%20117.5%20L%2016.5%20114%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20114%20L%2080%20117.5%20L%2079%20117.5%20L%2079.5%20114%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2023.5%20132%20L%2027.5%20137%20L%2023.5%20132%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2072.5%20132%20L%2068.5%20137%20L%2072.5%20132%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2065.5%20138%20L%2064.5%20140%20L%2065.5%20138%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20143%20L%2046%20143.5%20L%2042.5%20144%20L%2042.5%20143%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20143%20L%2054%20143.5%20L%2050.5%20144%20L%2050.5%20143%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20176%20L%2046%20176.5%20L%2042.5%20177%20L%2042.5%20176%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20176%20L%2054%20176.5%20L%2050.5%20177%20L%2050.5%20176%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2064.5%20180%20L%2065.5%20182%20L%2064.5%20180%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2027.5%20183%20L%2023.5%20188%20L%2027.5%20183%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2068.5%20183%20L%2072.5%20188%20L%2068.5%20183%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20202%20L%2017%20205.5%20L%2016%20205.5%20L%2016.5%20202%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20202%20L%2080%20205.5%20L%2079%20205.5%20L%2079.5%20202%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20210%20L%2017%20213.5%20L%2016%20213.5%20L%2016.5%20210%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20210%20L%2080%20213.5%20L%2079%20213.5%20L%2079.5%20210%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2023.5%20228%20L%2027.5%20233%20L%2023.5%20228%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2072.5%20228%20L%2068.5%20233%20L%2072.5%20228%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2065.5%20234%20L%2064.5%20236%20L%2065.5%20234%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20239%20L%2046%20239.5%20L%2042.5%20240%20L%2042.5%20239%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20239%20L%2054%20239.5%20L%2050.5%20240%20L%2050.5%20239%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20272%20L%2046%20272.5%20L%2042.5%20273%20L%2042.5%20272%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20272%20L%2054%20272.5%20L%2050.5%20273%20L%2050.5%20272%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2064.5%20276%20L%2065.5%20278%20L%2064.5%20276%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2027.5%20279%20L%2023.5%20284%20L%2027.5%20279%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2068.5%20279%20L%2072.5%20284%20L%2068.5%20279%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20298%20L%2017%20301.5%20L%2016%20301.5%20L%2016.5%20298%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20298%20L%2080%20301.5%20L%2079%20301.5%20L%2079.5%20298%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20306%20L%2017%20309.5%20L%2016%20309.5%20L%2016.5%20306%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20306%20L%2080%20309.5%20L%2079%20309.5%20L%2079.5%20306%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2023.5%20324%20L%2027.5%20329%20L%2023.5%20324%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2072.5%20324%20L%2068.5%20329%20L%2072.5%20324%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2065.5%20330%20L%2064.5%20332%20L%2065.5%20330%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20335%20L%2046%20335.5%20L%2042.5%20336%20L%2042.5%20335%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20335%20L%2054%20335.5%20L%2050.5%20336%20L%2050.5%20335%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20368%20L%2046%20368.5%20L%2042.5%20369%20L%2042.5%20368%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20368%20L%2054%20368.5%20L%2050.5%20369%20L%2050.5%20368%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2064.5%20372%20L%2065.5%20374%20L%2064.5%20372%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2027.5%20375%20L%2023.5%20380%20L%2027.5%20375%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2068.5%20375%20L%2072.5%20380%20L%2068.5%20375%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20394%20L%2017%20397.5%20L%2016%20397.5%20L%2016.5%20394%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20394%20L%2080%20397.5%20L%2079%20397.5%20L%2079.5%20394%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2016.5%20402%20L%2017%20405.5%20L%2016%20405.5%20L%2016.5%20402%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2079.5%20402%20L%2080%20405.5%20L%2079%20405.5%20L%2079.5%20402%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2023.5%20420%20L%2027.5%20425%20L%2023.5%20420%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2072.5%20420%20L%2068.5%20425%20L%2072.5%20420%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2065.5%20426%20L%2064.5%20428%20L%2065.5%20426%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2042.5%20431%20L%2046%20431.5%20L%2042.5%20432%20L%2042.5%20431%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0.792156862745098'%20d='M%2050.5%20431%20L%2054%20431.5%20L%2050.5%20432%20L%2050.5%20431%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%2046.5%2080%20Q%2066.2%2080.8%2074%2093.5%20Q%2079.8%20100.7%2080%20113.5%20L%2076%20127.5%20L%2066.5%20138%20Q%2059.3%20143.8%2046.5%20144%20L%2032.5%20140%20L%2022%20130.5%20Q%2016.2%20123.3%2016%20110.5%20L%2020%2096.5%20L%2029.5%2086%20L%2034.5%2083%20L%2046.5%2080%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%20112%2080%20L%20495.5%2080%20L%20496%2080.5%20L%20496%20144%20L%20112.5%20144%20L%20112%20143.5%20L%20112%2080%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%2046.5%20176%20Q%2066.2%20176.8%2074%20189.5%20Q%2079.8%20196.7%2080%20209.5%20L%2076%20223.5%20L%2066.5%20234%20Q%2059.3%20239.8%2046.5%20240%20L%2032.5%20236%20L%2022%20226.5%20Q%2016.2%20219.3%2016%20206.5%20L%2020%20192.5%20L%2029.5%20182%20L%2034.5%20179%20L%2046.5%20176%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%20112%20176%20L%20463.5%20176%20L%20464%20176.5%20L%20464%20240%20L%20112.5%20240%20L%20112%20239.5%20L%20112%20176%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%2046.5%20272%20Q%2066.2%20272.8%2074%20285.5%20Q%2079.8%20292.7%2080%20305.5%20L%2076%20319.5%20L%2066.5%20330%20Q%2059.3%20335.8%2046.5%20336%20L%2032.5%20332%20L%2022%20322.5%20Q%2016.2%20315.3%2016%20302.5%20L%2020%20288.5%20L%2029.5%20278%20L%2034.5%20275%20L%2046.5%20272%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%20112%20272%20L%20495.5%20272%20L%20496%20272.5%20L%20496%20336%20L%20112.5%20336%20L%20112%20335.5%20L%20112%20272%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%2046.5%20368%20Q%2066.2%20368.8%2074%20381.5%20Q%2079.8%20388.7%2080%20401.5%20L%2076%20415.5%20L%2066.5%20426%20Q%2059.3%20431.8%2046.5%20432%20L%2032.5%20428%20L%2022%20418.5%20Q%2016.2%20411.3%2016%20398.5%20L%2020%20384.5%20L%2029.5%20374%20L%2034.5%20371%20L%2046.5%20368%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='1'%20d='M%20112%20368%20L%20463.5%20368%20L%20464%20368.5%20L%20464%20432%20L%20112.5%20432%20L%20112%20431.5%20L%20112%20368%20Z%20'%20/%3E%3Cpath%20fill='rgb(0,0,0)'%20stroke='rgb(0,0,0)'%20stroke-width='1'%20opacity='0'%20d='M%200%200%20L%20512%200%20L%20512%20512%20L%200%20512%20L%200%200%20Z%20M%2043%2080%20Q%2033%2082%2028%2087%20Q%2019%2094%2016%20107%20Q%2015%20124%2023%20133%20Q%2030%20141%2043%20144%20Q%2060%20145%2069%20137%20Q%2077%20130%2080%20118%20Q%2081%20100%2073%2092%20L%2061%2082%20L%2054%2080%20L%2043%2080%20Z%20M%20112%2080%20L%20112%20144%20L%20113%20144%20L%20496%20144%20L%20496%2081%20L%20496%2080%20L%20112%2080%20Z%20M%2043%20176%20Q%2033%20178%2028%20183%20Q%2019%20190%2016%20203%20Q%2015%20220%2023%20229%20Q%2030%20237%2043%20240%20Q%2060%20241%2069%20233%20Q%2077%20226%2080%20214%20Q%2081%20196%2073%20188%20L%2061%20178%20L%2054%20176%20L%2043%20176%20Z%20M%20112%20176%20L%20112%20240%20L%20113%20240%20L%20464%20240%20L%20464%20177%20L%20464%20176%20L%20112%20176%20Z%20M%2043%20272%20Q%2033%20274%2028%20279%20Q%2019%20286%2016%20299%20Q%2015%20316%2023%20325%20Q%2030%20333%2043%20336%20Q%2060%20337%2069%20329%20Q%2077%20322%2080%20310%20Q%2081%20292%2073%20284%20L%2061%20274%20L%2054%20272%20L%2043%20272%20Z%20M%20112%20272%20L%20112%20336%20L%20113%20336%20L%20496%20336%20L%20496%20273%20L%20496%20272%20L%20112%20272%20Z%20M%2043%20368%20Q%2033%20370%2028%20375%20Q%2019%20382%2016%20395%20Q%2015%20412%2023%20421%20Q%2030%20429%2043%20432%20Q%2060%20433%2069%20425%20Q%2077%20418%2080%20406%20Q%2081%20388%2073%20380%20L%2061%20370%20L%2054%20368%20L%2043%20368%20Z%20M%20112%20368%20L%20112%20432%20L%20113%20432%20L%20464%20432%20L%20464%20369%20L%20464%20368%20L%20112%20368%20Z%20'%20/%3E%3C/svg%3E");
}
.icon-container .eicon-list {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='100'%20height='100'%20xml:space='preserve'%20version='1.1'%20viewBox='0%200%20512%20512'%3E%3Cimage%20width='100'%20height='100'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAACXBIWXMAAHYcAAB2HAGnwnjqAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAGH5JREFUeJzt3TvMZVX9//H3QyIV9wC2RBSEwYKfoZGAFmKBhZfEREi4BAQrwcbE2k6DKFAZooIxmBCDFtqIFcRKiRcuYUxA7XSCMAgdhvkXZ8ZMJvMPzHn2OWvv57xeFQX5ru+G4vt51lpn7wIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADZlb3QD78Ol1Y3Voeqj1RXVhdUF1TnH/523q6PVG9Xh6uXqxerZ6siW+922Y6MbAGCIfc3wuQaA66pbqptaDf51+zzWKgj8pvpZ9YdJupsXAQBgNx2YAHBedW91V3XVhtZ4qfpx9YPqrQ2tsW0CAMBuWnwAuKi6v/paq639bXijerh66Pg/L5kAALCbFhsA9qrbqgeqSwb18Hr1reqR6t1BPeyXAACwmxYZAD5cPV59YtD6p/pddUf1yuhG1iAAAOymfc3ws6bq4gx8ofp98xn+VddXf6y+PLoRANiGbQaAs6rvVU+1+gnf3Jzb6pcC321MMAKArdnWEcDZ1WOtftq3BE9Ud1bvDO7j/XAEALCbZn8H4OzqF9XNW1hrSr9udVwx9xAgAADsplnfAdirHm15w7/qs60uKjoOAODA2fRwe7C6fcNrbNIt1bdHNwEAU9vkEcCXqic3WH+bbm11QXCOHAEA7KZZ3gG4vHquOn9D9bftzer/qldHN3IaAgDAbprdHYC96icdnOFfq2d5rHm8OhkA9m0TAeDu5vWSn6nc0LLvMwDA/0z9F+1F1eHq4onrzsWR6srq6OhGTuIIAGA3zeoI4Osd3OFfdWl13+gmAGC/ptwBOK/6e9v7pO8or1eXVW8N7uMEOwAAu2k2OwD3dvCHf62OOe4Z3QQA7MeUOwDPV9dMWG/OXqoOjW7iODsAALtpFjsA17U7w7/q6ura0U0AwLqmCgBL+crflG4d3QAArGuqAPCZieosyadHNwAA65riDsCl1T8nqrUkx1o9+2sz6AOA3TP8DsCN+21iofZaPTsALM4UAWCXLv+dai6/BACAMzJFALhyghpLtcvPDsCCTREAPjJBjaW6YnQDALCOKQLAQX73/3vZ5WcHYMGmCADnTlBjqXb52QFYsCkCwDkT1FgqAQCARZr6c8AAwAJMEQDenqDGUs3lk8AAcEamCAC7PAR3+dkBWLApAsDoV+GOtMvPDsCCTREA/jpBjaU6PLoBAFjHFAFgl4fgLj87AAs2RQB4YYIaS/Xi6AYAYB0+B7y+d6sPNv4egM8BA+ym4Z8DPtJu/iX858YPfwBYy1QvAnp6ojpL8tvRDQDAuqYKAE9MVGdJdvGZATggpjy3f766ZsJ6c/ZSdWh0E8e5AwCwm4bfATjh8Qlrzd0PRzcAAPsx5Q7AudU/qgsnrDlHr1eXNZ/XANsBANhNs9kBeKt6ZMJ6c/X95jP8AWAtU/92/8JWb8e7ZOK6c/Gv6srqzdGNnMQOAMBums0OQNUb1Tcnrjkn32hewx8A1rKJt/ftVc9W12+g9kjPVJ9qfn9xz60fALZjXzN8U6/vvbx6rjp/Q/W37Wj18erV0Y2chgAAsJtmdQRwwivVVzZUe4S7m+fwB4C1bCoAVP28enCD9bflO9VTo5sAgClt+gt+e9WPqjs3vM6mPFHd1urLf3PlCABgN83yDsDJPlD9srp5C2tN6VfVF6t3RjfyHgQAgN00yzsAJ3un+lyrnYCl+GnLGP4AsJZtBICq/7a6FPjAltZb17FWZ/63Z/gDcIBt4wjgVJ9vtRswt28G/Ke6p3pydCNnyBEAwG6a/R2A0/lQ9Vh1w6D1T/VMq4uKfxvcxzoEAIDdNPs7AKfzavXJ6o7qyKAeavVlv6+2esPfEoc/AKxl1A7AyS6o7qvury7a0pr/rh6qHm757/a3AwCwmxZ5BHA651T3VndVhza0xgut7h88Wr29oTW2TQAA2E0HJgCc7Nrq1uqm6mOtf1TxbvWX6ulWL/X50yTdzYsAALCbDmQAONnF1Y3V1dVV1RWtjgouaLVrUKu/5o+2OtM/XL1cvdjqq4SvbbnfbRMAAHbTEmY4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC7c3uoH34dLqxupQ9dHqiurC6oLqnOP/ztvV0eqN6nD1cvVi9Wx1ZMv9btux0Q0A7KglzND/r7k2f111S3VTq8G/bp/HWgWB31Q/q/4wSXfzIgAAjDHXGfq+zKn586p7q7uqqza0xkvVj6sfVG9taI1tEwAAxpjTDD1jc2j+our+6muttva34Y3q4eqh4/+8ZAIAwBhzmKFrG9n8XnVb9UB1yaAeXq++VT1SvTuoh/0SAADGEADW8OHq8eoTg9Y/1e+qO6pXRjeyBgEAYIxFB4CzBqz5her3zWf4V11f/bH68uhGAGAbthkAzqq+Vz3V6id8c3Nuq18KfLcxwQgAtmZb2xdnV4+1+mnfEjxR3Vm9M7iP98MRAMAYiz4C2EbzZ1e/qG7ewlpT+nWr44q5hwABAGCMRQeATW9171WPtrzhX/XZVhcVHQcAcOBserg9WN2+4TU26Zbq26ObAICpbXL74kvVkxusv023trogOEeOAADGWPQRwKaav7x6rjp/Q/W37c3q/6pXRzdyGgIAwBiLDgCbOALYq37SwRn+tXqWx1r4/2wAOGETAeDu5vWSn6nc0LLvMwDA/0z9F+1F1eHq4onrzsWR6srq6OhGTuIIAGCMRe8KT70D8PUO7vCvurS6b3QTALBfU6aX86q/t71P+o7yenVZ9dbgPk6wAwAwhh2A4+7t4A//Wh1z3DO6CQDYjynTy/PVNRPWm7OXqkOjmzjODgDAGHYAquvaneFfdXV17egmAGBdUwWApXzlb0q3jm4AANY1VQD4zER1luTToxsAgHVNcX5xafXPiWotybFWz/7aDPoAYPsWPfem2AG4sYX/R1jTXqtnB4DFmSIA7NLlv1PN5ZcAAHBGpggAV05QY6l2+dkBWLApAsBHJqixVFeMbgAA1jFFADjI7/5/L7v87AAs2BQB4NwJaizVLj87AAs2RQA4Z4IaSyUAALBIU38OGABYgCkCwNsT1FiquXwSGADOyBQBYJeH4C4/OwALNkUAGP0q3JF2+dkBWLApAsBfJ6ixVIdHNwAA65giAOzyENzlZwdgwaYIAC9MUGOpXhzdAACsw+eA1/du9cHG3wPwOWCAMRY996bYATjSbv4l/OfGD38AWMtULwJ6eqI6S/Lb0Q0AwLqmCgBPTFRnSXbxmQE4IKY8v3i+umbCenP2UnVodBPHuQMAMMbO3wE44fEJa83dD0c3AAD7MWV6Obf6R3XhhDXn6PXqsubzGmA7AABj2AE47q3qkQnrzdX3m8/wB4C1TJ1eLmz1drxLJq47F/+qrqzeHN3ISewAAIxhB+Akb1TfnLjmnHyjeQ1/AFjLJtLLXvVsdf0Gao/0TPWp5vcX99z6AdgVi94B2FTzl1fPVedvqP62Ha0+Xr06upHTEAAAxlh0AJj6COCEV6qvbKj2CHc3z+EPAGvZVACo+nn14Abrb8t3qqdGNwEAU9r09sVe9aPqzg2vsylPVLe1+vLfXDkCABhj0UcA22j+A9Uvq5u3sNaUflV9sXpndCPvQQAAGGPRAWCTRwAnvFN9rtVOwFL8tGUMfwBYyzYCQNV/W10KfGBL663rWKsz/9sz/AE4wEZsX3y+1W7A3L4Z8J/qnurJ0Y2cIUcAAGMs+ghgVPMfqh6rbhi0/qmeaXVR8W+D+1iHAAAwxqIDwLaOAE71avXJ6o7qyKAeavVlv6+2esPfEoc/AKxlDunlguq+6v7qoi2t+e/qoerhlv9ufzsAAGPMYYaubU7Nn1PdW91VHdrQGi+0un/waPX2htbYNgEAYIw5zdAzNtfmr61urW6qPtb6RxXvVn+pnm71Up8/TdLdvAgAAGPMdYa+L0to/uLqxurq6qrqilZHBRe02jWo1V/zR1ud6R+uXq5ebPVVwte23O+2CQAAYyxhhgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMC+7I1u4H24tLqxOlR9tLqiurC6oDrn+L/zdnW0eqM6XL1cvVg9Wx3Zcr/bdmx0AwAMsa8ZPtcAcF11S3VTq8G/bp/HWgWB31Q/q/4wSXfzIgAA7KYDEwDOq+6t7qqu2tAaL1U/rn5QvbWhNbZNAADYTYsPABdV91dfa7W1vw1vVA9XDx3/5yUTAAB202IDwF51W/VAdcmgHl6vvlU9Ur07qIf9EgAAdtMiA8CHq8erTwxa/1S/q+6oXhndyBoEAIDdtK8ZftZUXZyBL1S/bz7Dv+r66o/Vl0c3AgDbsM0AcFb1veqpVj/hm5tzW/1S4LuNCUYAsDXbOgI4u3qs1U/7luCJ6s7qncF9vB+OAAB20+zvAJxd/aK6eQtrTenXrY4r5h4CBACA3TTrOwB71aMtb/hXfbbVRUXHAQAcOJsebg9Wt294jU26pfr26CYAYGqbPAL4UvXkButv062tLgjOkSMAgN00yzsAl1fPVedvqP62vVn9X/Xq6EZOQwAA2E2zuwOwV/2kgzP8a/UsjzWPVycDwL5tIgDc3bxe8jOVG1r2fQYA+J+p/6K9qDpcXTxx3bk4Ul1ZHR3dyEkcAQDsplkdAXy9gzv8qy6t7hvdBADs15Q7AOdVf297n/Qd5fXqsuqtwX2cYAcAYDfNZgfg3g7+8K/VMcc9o5sAgP2Ycgfg+eqaCevN2UvVodFNHGcHAGA3zWIH4Lp2Z/hXXV1dO7oJAFjXVAFgKV/5m9KtoxsAgHVNFQA+M1GdJfn06AYAYF1T3AG4tPrnRLWW5FirZ39tBn0AsHuG3wG4cb9NLNReq2cHgMWZIgDs0uW/U83llwAAcEamCABXTlBjqXb52QFYsCkCwEcmqLFUV4xuAADWMUUAOMjv/n8vu/zsACzYFAHg3AlqLNUuPzsACzZFADhnghpLJQAAsEhTfw4YAFiAKQLA2xPUWKq5fBIYAM7IFAFgl4fgLj87AAs2RQAY/SrckXb52QFYsCkCwF8nqLFUh0c3AADrmCIA7PIQ3OVnB2DBpggAL0xQY6leHN0AAKzD54DX9271wcbfA/A5YIDdNPxzwEfazb+E/9z44Q8Aa5nqRUBPT1RnSX47ugEAWNdUAeCJieosyS4+MwAHxJTn9s9X10xYb85eqg6NbuI4dwAAdtPwOwAnPD5hrbn74egGAGA/ptwBOLf6R3XhhDXn6PXqsubzGmA7AAC7aTY7AG9Vj0xYb66+33yGPwCsZerf7l/Y6u14l0xcdy7+VV1ZvTm6kZPYAQDYTbPZAah6o/rmxDXn5BvNa/gDwFo28fa+verZ6voN1B7pmepTze8v7rn1A8B27GuGb+r1vZdXz1Xnb6j+th2tPl69OrqR0xAAAHbTrI4ATnil+sqGao9wd/Mc/gCwlk0FgKqfVw9usP62fKd6anQTADClTX/Bb6/6UXXnhtfZlCeq21p9+W+uHAEA7KZZ3gE42QeqX1Y3b2GtKf2q+mL1zuhG3oMAALCbZnkH4GTvVJ9rtROwFD9tGcMfANayjQBQ9d9WlwIf2NJ66zrW6sz/9gx/AA6wbRwBnOrzrXYD5vbNgP9U91RPjm7kDDkCANhNs78DcDofqh6rbhi0/qmeaXVR8W+D+1iHAACwm2Z/B+B0Xq0+Wd1RHRnUQ62+7PfVVm/4W+LwB4C1jNoBONkF1X3V/dVFW1rz39VD1cMt/93+dgAAdtMijwBO55zq3uqu6tCG1nih1f2DR6u3N7TGtgkAALvpwASAk11b3VrdVH2s9Y8q3q3+Uj3d6qU+f5qku3kRAAB204EMACe7uLqxurq6qrqi1VHBBa12DWr11/zRVmf6h6uXqxdbfZXwtS33u20CAMBuWsIMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYOH2RjfwPlxa3Vgdqj5aXVFdWF1QnXP833m7Olq9UR2uXq5erJ6tjmy53207NroBgB21hBn6/zXX5q+rbqluajX41+3zWKsg8JvqZ9UfJuluXgQAgDHmOkPflzk1f151b3VXddWG1nip+nH1g+qtDa2xbQIAwBhzmqFnbA7NX1TdX32t1db+NrxRPVw9dPyfl0wAABhjDjN0bSOb36tuqx6oLhnUw+vVt6pHqncH9bBfAgDAGALAGj5cPV59YtD6p/pddUf1yuhG1iAAAIyx6ABw1oA1v1D9vvkM/6rrqz9WXx7dCABswzYDwFnV96qnWv2Eb27ObfVLge82JhgBwNZsa/vi7OqxVj/tW4Inqjurdwb38X44AgAYY9FHANto/uzqF9XNW1hrSr9udVwx9xAgAACMsegAsOmt7r3q0ZY3/Ks+2+qiouMAAA6cTQ+3B6vbN7zGJt1SfXt0EwAwtU1uX3ypenKD9bfp1lYXBOfIEQDAGIs+AthU85dXz1Xnb6j+tr1Z/V/16uhGTkMAABhj0QFgE0cAe9VPOjjDv1bP8lgL/58NACdsIgDc3bxe8jOVG1r2fQYA+J+p/6K9qDpcXTxx3bk4Ul1ZHR3dyEkcAQCMsehd4al3AL7ewR3+VZdW941uAgD2a8r0cl7197b3Sd9RXq8uq94a3McJdgAAxrADcNy9HfzhX6tjjntGNwEA+zFlenm+umbCenP2UnVodBPH2QEAGMMOQHVduzP8q66urh3dBACsa6oAsJSv/E3p1tENAMC6pgoAn5mozpJ8enQDALCuKc4vLq3+OVGtJTnW6tlfm0EfAGzfoufeFDsAN7bw/whr2mv17ACwOFMEgF26/HequfwSAADOyBQB4MoJaizVLj87AAs2RQD4yAQ1luqK0Q0AwDqmCAAH+d3/72WXnx2ABZsiAJw7QY2l2uVnB2DBpggA50xQY6kEAAAWaerPAQMACzBFAHh7ghpLNZdPAgPAGZkiAOzyENzlZwdgwaYIAKNfhTvSLj87AAs2RQD46wQ1lurw6AYAYB1TBIBdHoK7/OwALNgUAeCFCWos1YujGwCAdfgc8PrerT7Y+HsAPgcMMMai594UOwBH2s2/hP/c+OEPAGuZ6kVAT09UZ0l+O7oBAFjXVAHgiYnqLMkuPjMAB8SU5xfPV9dMWG/OXqoOjW7iOHcAAMbY+TsAJzw+Ya25++HoBgBgP6ZML+dW/6gunLDmHL1eXdZ8XgNsBwBgDDsAx71VPTJhvbn6fvMZ/gCwlqnTy4Wt3o53ycR15+Jf1ZXVm6MbOYkdAIAx7ACc5I3qmxPXnJNvNK/hDwBr2UR62auera7fQO2Rnqk+1fz+4p5bPwC7YtE7AJtq/vLquer8DdXftqPVx6tXRzdyGgIAwBiLDgBTHwGc8Er1lQ3VHuHu5jn8AWAtmwoAVT+vHtxg/W35TvXU6CYAYEqb3r7Yq35U3bnhdTblieq2Vl/+mytHAABjLPoIYBvNf6D6ZXXzFtaa0q+qL1bvjG7kPQgAAGMsOgBs8gjghHeqz7XaCViKn7aM4Q8Aa9lGAKj6b6tLgQ9sab11HWt15n97hj8AB9iI7YvPt9oNmNs3A/5T3VM9ObqRM+QIAGCMRR8BjGr+Q9Vj1Q2D1j/VM60uKv5tcB/rEAAAxlh0ANjWEcCpXq0+Wd1RHRnUQ62+7PfVVm/4W+LwB4C1zCG9XFDdV91fXbSlNf9dPVQ93PLf7W8HAGCMOczQtc2p+XOqe6u7qkMbWuOFVvcPHq3e3tAa2yYAAIwxpxl6xuba/LXVrdVN1cda/6ji3eov1dOtXurzp0m6mxcBAGCMuc7Q92UJzV9c3VhdXV1VXdHqqOCCVrsGtfpr/mirM/3D1cvVi62+SvjalvvdNgEAYIwlzFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGCA/wemj/CTwH6EDQAAAABJRU5ErkJggg=='/%3E%3C/svg%3E");
}
.icon-container .eicon-sortlist {
  background-image: url("data:image/svg+xml,%3Csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cmask%20id='mask0_6047_57981'%20style='mask-type:luminance'%20maskUnits='userSpaceOnUse'%20x='1'%20y='4'%20width='18'%20height='12'%3E%3Cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.639%205.48655H5.13897C4.75564%205.48655%204.44453%205.17543%204.44453%204.7921C4.44453%204.40877%204.75564%204.09766%205.13897%204.09766H17.639C18.0223%204.09766%2018.3334%204.40877%2018.3334%204.7921C18.3334%205.17543%2018.0223%205.48655%2017.639%205.48655ZM1.66675%2014.5143H3.05564V15.9032H1.66675V14.5143ZM1.66675%2011.0421H3.05564V12.431H1.66675V11.0421ZM1.66675%207.56988H3.05564V8.95877H1.66675V7.56988ZM1.66675%204.09766H3.05564V5.48655H1.66675V4.09766ZM5.13897%207.56988H14.8612C15.2445%207.56988%2015.5556%207.88099%2015.5556%208.26432C15.5556%208.64766%2015.2445%208.95877%2014.8612%208.95877H5.13897C4.75564%208.95877%204.44453%208.64766%204.44453%208.26432C4.44453%207.88099%204.75564%207.56988%205.13897%207.56988ZM5.13897%2011.0421H17.639C18.0223%2011.0421%2018.3334%2011.3532%2018.3334%2011.7365C18.3334%2012.1199%2018.0223%2012.431%2017.639%2012.431H5.13897C4.75564%2012.431%204.44453%2012.1199%204.44453%2011.7365C4.44453%2011.3532%204.75564%2011.0421%205.13897%2011.0421ZM5.13897%2014.5143H14.8612C15.2445%2014.5143%2015.5556%2014.8254%2015.5556%2015.2088C15.5556%2015.5921%2015.2445%2015.9032%2014.8612%2015.9032H5.13897C4.75564%2015.9032%204.44453%2015.5921%204.44453%2015.2088C4.44453%2014.8254%204.75564%2014.5143%205.13897%2014.5143Z'%20fill='white'/%3E%3C/mask%3E%3Cg%20mask='url(%23mask0_6047_57981)'%3E%3Crect%20width='20'%20height='20'%20rx='8'%20fill='black'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.green-readmore-icon-align {
  display: inline-block;
  position: relative;
  top: 8px;
  font-size: 9px;
  float: none !important;
  rotate: 0deg;
}

.green-readmore-icon-up-align {
  display: inline-block;
  position: relative;
  top: 2px;
  font-size: 9px;
  float: none !important;
  rotate: 0deg;
}

.spotlight-icon-align {
  position: absolute;
  top: 112px;
  right: 280px;
}

.swatch {
  position: relative;
}

.swatch-container > .selected::after {
  content: '';
  display: inline-block;
  width: 18px;
  /* Set the width of the icon */
  height: 18px;
  /* Set the height of the icon */
  background-image: url("data:image/svg+xml,%3Csvg%20version='1.1'%20viewBox='0%200%2024%2024'%20width='0.222222in'%20height='0.222222in'%20baseProfile='full'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cimage%20x='0'%20y='0'%20width='24'%20height='24'%20preserveAspectRatio='none'%20xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAACXBIWXMAAAsSAAALEgHS3X78AAAFy0lEQVQ4Tx2T62+WZwGHf/fpOb7HnmihDKIUTCPLskxHjXFDJzM7iAdi5iZMM6cmots+kM1vKh9Q0Rg0S3R8MB72YcYBZsMRp6Bbw6az4EhDBy1lhba0pe3z9nkPz30/z30w+Af8rg9Xrh9xZgXKwK/DcmiAAqZAmLeRTtuZeZtwXqGIc6ALtQH01GEpDKzPaGQcCo1AQBsQV6SgtNCEelEmlRf4qU6u3Jya7Vx7+9K/zk6MzSaLsiChKG0dGNq+4UOPfOqB28r9EcqNVru31EcBrRB6t0AFqJOUtOAk9Plk/Hpz4fjfj793baKZp7lTPPQIZYXSvEAFYTep3nPnxx//4t6NZH0I33RUjEB4nLjCOY4lNCXI6ZtnRyffeeP86NTMJb9eKZxyzlIKxgmlIASe5dl8ZyDsq4vqjw/8cD3p2RINBlbAUKKdS6SkAXnt2pmT02f+/PZfMt3GLVeMcKY5Ayy1uSUSpAOl6/WtazNJhVc2VQaOPntkE7r6EMuVFs0BLwgmW1fPTZ079o8TmSddvtq7rhT5lFMLq6GVdZp4HLUyGehJGktBPTBVOr48/e2fHpjU8xJF0B1RA3tTL4/NXHjtnTMkZC7viFLUTlZ1J4WSjFji+xC+y4EV5W60KyRwSmnPBYP1C8nVV8+dXkO+mN2kFFmiFk+cPfVeY1aiIIFvKZOmEKFPOCPWOUtAOFxQ0bVB0vPk7kf3PLA7azRyWhQR+fXLv72ORRGWucZyo7NwYWXKBZpGJavbRnZIKU61IYQ5bbnna1mg6bZFg9/a8+jdQztS2D/+9ZTKc8Ko8clbF//TN7yLLucLJ14/tiYbCLi1FpaBxlxSTwtk1vfLumMZr8Wk9tVd+z4zdJ+Af3LiZMxDyMJnlDG8+e/RJSzzzNP/nTofOku8OMs7DHz3yM5AmTf/+Uatf8NMK1UtFVH9vX1P37t1hCP+2+SrL/3puCOaqCKgPtduevKycoovQSZZyyfGySJzplaufHPnVzaj+93tOw8dOeKBDvVs/sTwRz697e4KqqcunvnNKy/NJcukyn3OGYxR0gVVQSgtUG4aW2ae15QoCt1qXpu7WAa9b8PHXjx09JNDI7d3bXnqocd7EL2bjx9++fkLS1P+QNWFVMQc0JS5pkwNwDm6M40gFoyoWBDVTg89//OZe65+5/79Mav/6MmDFs6DuY65/QefzsrOdosWUZZpY3XhikocJjfWNAzN4Xr7N83lbRkzwa1XYdPF0h8mzu49+v156DJKFfhXsbj/Z8+mpdZiMe/KVndWLNM5kRJSh2TgA4MUnA6i9+F7H4RmTHjNdqdlVDA8+H7z/dGF8ScOPvX6ldOX5NQPfnXwcmM6xRqpM8MyRASRB8+7tZJkZPuOEkrkhutcd7N7nnkM671Ft6hMiqqPAnAhUl1SvBwGhdCNPDG+IrXQygxxDSttqsPePK5m4S+fOzzctY36sFUTfnbHrs5so+rV4Dh4AJ/CtXl/QG8LV6N2Stt+JaCC2+UEwoMDEPTwGm24jcHAnV13VFEm0hUSxRU9s/e5ry8HaRbnruq1FudQrUFb5A7OgoAJMI9SX0idY7kFHa5j3d2q9LufvNCP7jIikjubmqZjmMPCIwceW2WtxHW6Nq5rqqyTF5TSUhiB6Kzd0kYJIUC8iijzNbOO1/bd/+WH7trVjx4PnNrcVFgcQQTSHTv8+5H1H+7NQsxnSExkA25EutxMVzPBopKookXZkglXiUjwxOe/9qW7vtCD7rbqAPTWvQHkNgM1bbRm5Y3RibFfvPiCjEViVU4N9QUjxOYKRoVadJHq5q7BZ77x3S3lTV2oFIWqiToDJblxVltOLBMOUE20UuTTcmFs7srp82+NXR7vFJnOlSvyD67f+NFtd3xu5MHba8MMNIQo8txzouyXZCcn0jiPgmjAKdgcPllBmkMkwAyWEsj/ByMcVAzah3odIQMtIShMUWYRA8+aslQK/gfWYxStDuRWygAAAABJRU5ErkJggg=='/%3E%3C/svg%3E");
  /* Set the path to your icon image */
  background-size: contain;
  /* Scale the background image to fit the element */
  background-repeat: no-repeat;
  /* Prevent repeating the image */
  margin-left: 10px;
  /* Space between the content and the icon */
  vertical-align: middle;
  /* Align the icon with the text */
  position: absolute;
  right: -5px;
  bottom: -8px;
}

.select-arrow-align {
  position: absolute;
  top: 12px;
  right: 8px;
}

.login-arrow-align {
  position: relative;
  left: 4px;
  top: 5px;
  order: 4;
}

.header-nav-down-arrow-align {
  padding-left: 4px;
  padding-top: 5px;
  float: right;
}

.header-nav-right-arrow-align {
  float: right;
  padding-top: 5px;
}

.back-to-previous-align, .fav-warning-cross-align {
  padding-top: 6px;
}

.filter-mobile-funnel-align {
  padding-top: 7px;
  position: relative;
  left: 4px;
}

.breadcrumbs-align {
  padding-top: 5px;
}

.icons-pt-5 {
  padding-top: 5px;
}

.addcart-close-model-align {
  float: right;
  padding-top: 10px;
}

.cart-listing-down-align {
  float: right !important;
  padding-left: 2px;
}

.continue-cart-align {
  position: absolute;
  top: 12px;
  float: right !important;
  display: block;
  right: 0px;
  cursor: pointer;
}

.recentProduct-right-arrow-align {
  padding-top: 2.8rem;
  float: right;
}

.product-card-heart-align {
  position: absolute;
  padding-left: 0px !important;
}

.chat-align {
  padding: 6px 0px 0px 6px;
  float: left;
}

.myaccount-arrow-align {
  padding: 6px 0px 0px 0px;
}

.homemenu-right-arrow-align {
  padding-top: 12px;
}

.header-close-menu-align {
  font-size: 2em;
  position: absolute;
  right: -6px;
  top: -40px;
  padding-top: 2em;
}

.homemenu-user-circle-align {
  padding: 5px 8px 0px 5px;
}

.ptop-2 {
  padding-top: 2px;
}

.header-search-all-down-arrow {
  float: right;
  padding: 2px 0px 0px 8px;
}

.header-search-any-down-arrow {
  float: right;
  padding: 2px 0px 0px 8px;
  margin-top: -6px;
}

.preheader-language-arrow-align {
  padding-top: 6px;
  float: right;
}

.header-hamburger-menu-align {
  padding-top: 3.5rem !important;
}

.search-align {
  margin: 5px 0px 0px 4px;
}

.experience-align {
  margin: 2px 5px 0px 0px;
}

@media (max-width: 992px) {
  .mobile-header-favorite-align {
    position: absolute;
    right: 6rem;
    top: 3rem;
  }
}
.backto-sign-in-align {
  position: relative;
  padding-top: 5px;
}

.backtoprevious-nav-left-arrow-align {
  float: left;
  padding-top: 4px;
  cursor: pointer;
}

.page-previous {
  padding-top: 28px;
  cursor: pointer;
  font-size: 14px !important;
}

.common-page-backto-align {
  margin-bottom: 10px;
  cursor: pointer;
}

.bold-on-hover:hover {
  font-weight: bold;
}

.help-opacity {
  opacity: 0.7;
}

.help-opacity:hover {
  opacity: 1;
}

.filter-arrow-up {
  padding-left: 6px;
  padding-top: 7px;
}

.wishlist-filter-arrow-up {
  padding-left: 6px;
  padding-top: 20px;
}

.dealsslider-arrow-align {
  padding-left: 1rem;
  float: right;
}

.pagination-right-arrow-align {
  padding: 10px 4px 0px 6px;
}

.pagination-left-arrow-align {
  padding: 10px 4px 0px 10px;
}

.point-submit-align {
  position: absolute;
  margin: -30px 0px 0px 22px;
}

.filter-point-arrow-align {
  padding: 1px;
  float: inline-end;
  position: relative;
  left: 50px;
  top: 2px;
}

.filter-clear-span {
  margin-right: 35px;
  position: relative;
  top: -3px;
}

.breadcum-link-arrow-align {
  float: right;
  padding-top: 2px;
  padding-left: 5px;
}

.filter-circle-close-align {
  padding-top: 10px;
}

.filter-arrow-down-sortby {
  padding-top: 14px;
  padding-left: 10px;
}

.filter-arrow-new {
  position: relative;
  left: 42px;
}

.wishlist-filter-arrow-down-sortby {
  padding-top: 34px;
  padding-left: 12px;
}

.qty-arrow-down {
  float: right;
  position: relative;
  right: -2px;
  font-size: 7px;
}

.float-right-align {
  float: right;
}

.verify-edit-align {
  padding-top: 10px;
  font-size: 1rem;
}

.toggle-text-content span {
  display: none;
}

.toggle-text-link {
  display: inline;
}

.error-cross-align {
  padding-top: 10px;
}

.mastery-align {
  position: relative;
  bottom: 4px;
}

.merchandise-align {
  position: relative;
  bottom: 1px;
  right: 4px;
}

.mastery-link-style {
  text-decoration: none !important;
}

.shipoptions-alert-close-align {
  padding-top: 8px;
}

.pagination-icon-category {
  	/*position: absolute;
      right: 8px;
      top: 0px;*/
  position: relative;
  left: 0px;
  top: -4px;
}

.page-num-1 {
  padding-left: 0px !important;
  position: absolute;
  z-index: 10;
}

.sortlist-icon-align {
  padding-top: 3px;
}

.filter-highlight {
  background-color: green;
}

.feedback-survey-popup-window .scale-radio-value {
  position: relative;
  vertical-align: middle;
  left: 43%;
  top: 14%;
  border-radius: 8px;
}
.feedback-survey-popup-window .submitSurveyBtn {
  padding: 10px;
  margin-top: 10px;
}
.feedback-survey-popup-window .scalling-note {
  color: #808080;
  font-weight: 700;
  font-size: 12px;
}
.feedback-survey-popup-window .feedback {
  width: 100%;
  max-width: 780px;
  background: #fff;
  padding: 0px 15px;
  margin-top: -15px;
}
.feedback-survey-popup-window .feedback h1 {
  font-size: 24px;
  font-weight: 600;
}
.feedback-survey-popup-window .survey-hr {
  margin: 10px 0;
  border: .5px solid #ddd;
}
.feedback-survey-popup-window .star-rating {
  margin: 0px 0 0px;
  font-size: 0;
  white-space: nowrap;
  display: inline-block;
  width: 175px;
  height: 35px;
  overflow: hidden;
  position: relative;
  background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjREREREREIiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=");
  background-size: contain;
}
.feedback-survey-popup-window .star-rating i {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 1;
  background: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjRkZERjg4IiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=");
  background-size: contain;
}
.feedback-survey-popup-window .star-rating input {
  -moz-appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  display: inline-block;
  width: 20%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
}
.feedback-survey-popup-window .star-rating input:hover + i,
.feedback-survey-popup-window .star-rating input:checked + i {
  opacity: 1;
  color: #ffffff;
}
.feedback-survey-popup-window .star-rating i ~ i {
  width: 40%;
}
.feedback-survey-popup-window .star-rating i ~ i ~ i {
  width: 60%;
}
.feedback-survey-popup-window .star-rating i ~ i ~ i ~ i {
  width: 80%;
}
.feedback-survey-popup-window .star-rating i ~ i ~ i ~ i ~ i {
  width: 100%;
}
.feedback-survey-popup-window .choice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px;
  display: block;
}
.feedback-survey-popup-window span.scale-rating {
  margin: 5px 0 5px;
  display: flex;
  width: 100%;
}
.feedback-survey-popup-window span.scale-rating > label {
  position: relative;
  -webkit-appearance: none;
  outline: 0 !important;
  height: 33px;
  margin: 0 5px 0 0;
  width: inherit;
  display: inline-flex;
  cursor: pointer;
  border-radius: 8px;
  background: #DDDDDD;
  color: #000000;
}
.feedback-survey-popup-window span.scale-rating > label:hover {
  color: #ffffff;
}
.feedback-survey-popup-window span.scale-rating input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
  opacity: 0;
  outline: 0 !important;
  height: 33px;
  margin: 0 5px 0 0;
  width: 100%;
  float: left;
  cursor: pointer;
  z-index: 3;
}
.feedback-survey-popup-window span.scale-rating label:hover {
  background: #008A21;
  color: #ffffff;
}
.feedback-survey-popup-window span.scale-rating label input[type=radio]:checked ~ label:before {
  -webkit-appearance: none;
  margin: 0;
  background-color: #008A21;
  border-radius: 6px;
  color: #ffffff;
}
.feedback-survey-popup-window span.scale-rating input[type=radio]:last-child {
  border-right: 0;
}
.feedback-survey-popup-window span.scale-rating label input[type=radio]:checked ~ label {
  -webkit-appearance: none;
  margin: 0;
  background: #008A21;
  border-radius: 6px;
  color: #ffffff;
}
.feedback-survey-popup-window .radiobox-padding-top {
  padding-top: 15px;
}
.feedback-survey-popup-window input[type=radio] {
  float: left;
  margin-top: 4px;
}
.feedback-survey-popup-window label {
  display: block;
}
.feedback-survey-popup-window .feedback-checkbox-section {
  display: inline-table;
  width: 80%;
  padding-left: 20px;
}
.feedback-survey-popup-window .radio-fd-item {
  width: 45%;
  display: inline-block;
}
.feedback-survey-popup-window .grm-btn-secondary:hover {
  color: white;
}
.feedback-survey-popup-window select {
  background-color: #ffffff;
  height: 32px;
}
.feedback-survey-popup-window .survey-form-element {
  margin-top: 10px;
}
.feedback-survey-popup-window .feedback-survey-popup-window label {
  display: inline-block;
}
.feedback-survey-popup-window .survey-required {
  display: inline-block;
  color: red;
}

.confirm-survey {
  bottom: 140px;
  display: block;
  justify-content: center;
  font-weight: bold;
}

.survey-question {
  display: flex;
  justify-content: center;
  padding-left: 8px;
  padding-top: 6px;
}

.survey-question > div {
  display: block;
}

.survey-question > span {
  display: inline;
  background-color: #F2F4F6;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.survey-question > .grm-btn {
  font-size: 12px;
}

.survey-box-section {
  border: 1px solid #E7E8E9;
  margin: 25px 8%;
  width: -webkit-fill-available;
  width: -moz-available;
  text-align: center;
  padding: 10px;
}

.survey-init-close {
  position: relative;
  display: inline;
  float: right;
  left: 20px;
  bottom: 8px;
  cursor: pointer;
}

.surveyFeedbackModal_yes {
  padding-left: 10px;
}

.fb-question {
  padding-bottom: 6px;
}

.exitintent-box-section {
  margin: 25px 8%;
  width: -webkit-fill-available;
  width: -moz-available;
  text-align: center;
  padding: 10px;
}

.survey-question > span:hover {
  display: inline;
  background-color: #F2F4F6;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.survey-box-section .grm-btn-secondary:hover,
.Scriptcontent .grm-btn-secondary:hover {
  color: #ffffff;
}

.feedback-survey-popup-window .radio label, .feedback-survey-popup-window .checkbox label {
  display: inline-block;
}

.survey-form-element {
  margin-top: 10px;
}

.survey-form-element > label::after {
  content: '*';
  color: red;
}

#survey_content_load {
  display: grid;
  margin: 30px;
}

.checktree, .checktree * {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.checktree ul {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 20px;
}

.checktree li {
  float: left;
  padding-top: 15px;
  width: 100%;
  position: relative;
}

.checktree li label {
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 0 2px 0;
  font-size: 14px;
  line-height: 15px;
  float: left;
}

.checktree li .arrow {
  width: 14px;
  height: 14px;
  margin: 10px 8px 0;
  cursor: pointer;
  float: left;
  position: absolute;
  top: 0;
  right: 0;
}

.checktree li .collapsed {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20330%20330'%20style='enable-background:new%200%200%20230%20230;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 10px;
}

.checktree li .expanded {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version='1.0'%20encoding='iso-8859-1'%3F%3E%3C!--%20Generator:%20Adobe%20Illustrator%2019.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%20330%20330'%20style='enable-background:new%200%200%20230%20230;'%20xml:space='preserve'%3E%3Cpath%20id='XMLID_225_'%20d='M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393%20c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393%20s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z'/%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 2px;
  transform: rotate(180deg);
}

.checktree li .checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  float: left;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23FFFFFF'%3E%3Cpath%20d='M9%2016.2l-4.2-4.2-1.4%201.4%205.6%205.6%2012-12-1.4-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1px 0;
  margin-right: 7px;
}

.checktree li .checked {
  background-position: -16px 0;
  margin-left: 0px;
}

.checktree li .half_checked {
  background-position: -31px 0;
  margin-left: 0px;
  background-image: none;
}

.checktree li li .arrow {
  margin-left: 24px;
}

.checktree li li li .arrow {
  margin-left: 48px;
}

.checktree li li li li .arrow {
  margin-left: 72px;
}

.checktree li li li li li .arrow {
  margin-left: 96px;
}

.checktree > li label {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  left: -15px;
  margin: 0;
  width: 80%;
  overflow: hidden;
}

.category-filter::-webkit-scrollbar {
  width: 4px;
}

.category-filter::-webkit-scrollbar-track {
  background-color: #D8D8D8;
  border-radius: 2px;
}

.category-filter::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 2px;
}

@-moz-document url-prefix() {
  .category-filter {
    scrollbar-width: thin;
    /* Makes the scrollbar thinner */
    scrollbar-color: gray  #D8D8D8;
    /* Thumb color: #000000 (black), Track color: #D8D8D8 (light gray) */
  }
}
.sort-container.sortMethodSelector_bottom.select-container.hidden-sm.hidden-xs.hidden-md.hidden-xl {
  display: none;
}

.checktree li .checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  float: left;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 7px;
  border: 0.5px solid #595959;
  border-radius: 5px;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 2px;
}

/* Fully checked state */
.checktree li .checkbox.checked {
  background-color: green;
  border-color: green;
  color: white;
  border: 0.5px solid #595959;
  width: 20px;
  height: 20px;
}

.checktree li .checkbox.checked::after {
  color: white;
}

/* Half-checked state */
.checktree li .checkbox.half_checked {
  background-color: green;
  border-color: green;
  color: white;
  margin-left: 0px;
  border: 0.5px solid #595959 !important;
  background-image: none;
}

.checktree li .checkbox.half_checked::after {
  content: '-';
  /* Minus symbol */
  font-size: 12px;
}

/* Common Section Wrapper */
.curated-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
  padding: 10px;
}

/* Card Row (For Two Small Cards) */
.curated-card-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

/* Small Cards (50% each) */
.curated-card-small {
  background-color: #F7F7F7;
  display: flex;
  flex: 1;
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  height: 180px;
  min-width: 320px;
  overflow: hidden;
  padding: 24px;
}
@media (max-width: 769px) {
  .curated-card-small {
    flex: unset;
  }
}
@media (min-width: 2600px) {
  .curated-card-small {
    height: 379px;
  }
}
@media (min-width: 1600px) and (max-width: 2599px) {
  .curated-card-small {
    height: 245px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .curated-card-small {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .curated-card-small {
    height: 170px;
  }
}
@media (max-width: 767px) {
  .curated-card-small {
    height: 194px;
    padding: 20px;
  }
}

/* Large Card (100% width) */
.curated-card-large {
  background-color: #F7F7F7;
  display: flex;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 1600px) {
  .curated-card-large {
    height: 380px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .curated-card-large {
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .curated-card-large {
    height: 203px;
  }
}
@media (max-width: 767px) {
  .curated-card-large {
    height: 194px;
    padding: 20px;
  }
}

/* Image Section */
.card-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Text Section */
.card-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.card-title {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .card-title {
    font-size: 20px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .card-title {
    font-size: 20px;
  }
}
@media (min-width: 1025px) and (max-width: 1160px) {
  .card-title {
    font-size: 20px;
  }
}

.card-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 18px;
  color: #666;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .card-description {
    font-size: 14px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .card-description {
    font-size: 14px;
  }
}
@media (min-width: 1025px) and (max-width: 1160px) {
  .card-description {
    font-size: 14px;
  }
}

.shop-link {
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  color: black;
}
@media (max-width: 768px) {
  .shop-link {
    font-size: 14px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .shop-link {
    font-size: 14px;
  }
}
@media (min-width: 1025px) and (max-width: 1160px) {
  .shop-link {
    font-size: 14px;
  }
}

.card-link {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 769px) {
  .curated-card-row {
    flex-direction: column;
  }

  .curated-card-small {
    width: 100%;
  }
}
@media (max-width: 769px) {
  .curated-card-row {
    flex-direction: column;
  }

  .curated-card-row > div {
    width: 100%;
    flex-direction: row;
    display: flex;
    flex-wrap: nowrap;
  }

  .curated-card-row > div:nth-child(odd) {
    flex-direction: row;
  }

  .curated-card-row > div:nth-child(even) {
    flex-direction: row-reverse;
  }

  .card-image,
  .card-content {
    width: 50%;
  }

  .card-content {
    text-align: center;
    padding: 16px;
  }

  .curated-arrow {
    position: absolute;
    padding-top: 4px;
  }

  .curated-card-small,
  .curated-card-large {
    align-items: center;
  }
}
@media (min-width: 769px) {
  .curated-arrow {
    position: absolute;
    padding-top: 8px;
  }
}
@media (min-width: 1024px) {
  .curated-arrow {
    position: absolute;
    padding-top: 5px;
  }
}
@media (min-width: 1350px) {
  .curated-arrow {
    position: absolute;
    padding-top: 8px;
  }
}
@media (min-width: 1440px) {
  .curated-arrow {
    position: absolute;
    padding-top: 8px;
  }
}
@media (min-width: 2560px) {
  .curated-arrow {
    position: absolute;
    padding-top: 8px;
  }
}
.spotlight-container-top-right {
  position: fixed;
  top: 20px;
  right: 0px;
  z-index: 99999;
}

.spotlight-container-top-left {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 99999;
}

.spotlight-container-bottom-right {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 999;
}

.spotlight-container-bottom-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1002;
}

.spotlight-container-center {
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
  vertical-align: middle;
  transform: translate(-50%, -50%);
  z-index: 99999;
}

.spotlight-container-section {
  /* Tooltip modal window */
  /* Tooltip modal content */
}
.spotlight-container-section .spotlight-container {
  position: fixed;
  bottom: 10px;
  z-index: 9999;
}
.spotlight-container-section .popup-container {
  width: 350px;
  background-color: #fff;
  border: 1px solid #ccb;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0px;
}
@media (max-width: 320px) {
  .spotlight-container-section .popup-container {
    width: 320px;
    background-color: #fff;
    border: 1px solid #ccb;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0px;
  }
}
.spotlight-container-section .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px 0px 10px;
}
.spotlight-container-section .popup-content {
  text-align: center;
  padding: 0 0 10px 0;
}
.spotlight-container-section .popup-content hr {
  width: 75%;
  height: 1px;
  background-color: #eeeeee;
  border: none;
  margin: 0 auto;
}
.spotlight-container-section .popup-content img {
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 10px 10px 0px 0px;
}
.spotlight-container-section .popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.spotlight-container-section .close-btn {
  cursor: pointer;
  right: 6px;
  background-color: white;
  position: absolute;
  top: 10px;
  border-radius: 20px;
  z-index: 999;
}
.spotlight-container-section .popup-footer .btn {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}
.spotlight-container-section h5 {
  font-size: 14px;
  font-weight: bold;
}
.spotlight-container-section .sportlight-info {
  padding: 16px;
  text-align: left;
}
.spotlight-container-section .sportlight-info > p {
  font-weight: 400px;
}
.spotlight-container-section .sportlight-info button {
  margin: 4px;
  width: 100%;
}
.spotlight-container-section .navigation {
  text-align: center;
  margin: auto;
}
.spotlight-container-section .prev {
  position: absolute;
  left: 20px;
}
.spotlight-container-section .next {
  position: absolute;
  right: 20px;
}
.spotlight-container-section .btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
  padding: 6px 20px;
}
.spotlight-container-section .slide-number {
  position: relative;
  bottom: 4px;
}
.spotlight-container-section .spotlight-arrow-left {
  rotate: 90deg;
  width: 15px;
  height: 15px;
}
.spotlight-container-section .spotlight-arrow-right {
  rotate: 270deg;
  width: 15px;
  height: 15px;
}
.spotlight-container-section .skip-me {
  position: absolute;
  right: 20px;
  bottom: -2px;
}
.spotlight-container-section .spotlight-action-btn {
  text-align: left;
}
.spotlight-container-section .spotlight-close-align {
  position: relative;
  right: 3px;
  bottom: 0px;
  top: -2px;
}
.spotlight-container-section .tooltip-modal {
  position: relative;
  left: 100%;
  transform: translate(-99%, 2%);
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 300px;
  bottom: 39%;
}
.spotlight-container-section .tooltip-content {
  border: 1px solid #E7E8E9;
  padding: 6px;
  text-align: left;
  position: absolute;
  background-color: white;
  top: 44px;
  right: 5px;
  border-radius: 6px 6px 5px 6px;
}
.spotlight-container-section .tooltip-content > ul {
  padding: 0px;
}
.spotlight-container-section .tooltip-content > ul li {
  margin: 10px;
  cursor: pointer;
}
.spotlight-container-section .tooltip-content > ul li:hover {
  font-weight: bold;
}
.spotlight-container-section .tooltip-modal::after {
  content: "";
  position: absolute;
  transform: translateX(0px);
  border-width: 10px;
  border-style: solid;
  border-color: white transparent transparent transparent;
  top: 24px;
  rotate: 180deg;
  right: 10px;
}
.spotlight-container-section .characterOverload {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

#bannerVideoModalTarget {
  display: none;
  z-index: 1002;
}

.bannerVideoModal {
  position: relative;
  display: inline-block;
}

.spotlight-icon-align {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-icon-pic-align {
  position: absolute;
  top: 42%;
  left: 10%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-container-section .popup-content img {
  display: block;
  width: 100%;
  height: auto;
}

i[class="eicon-video"]::before {
  content: '';
  display: block;
  width: .54em;
  height: .37em;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-size: contain;
}

.filterOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Semi-transparent black */
  z-index: 9999;
  display: none;
  /* Hidden by default */
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  height: 100vh;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  padding: 24px;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  height: -webkit-fill-available;
  overflow: hidden;
}

.filter-header {
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  height: 50px;
}

.filter-header h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 16px;
}

.filter-sidebar > .close-btn {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.filter-sidebar > .filter-options {
  overflow-y: auto;
  flex-grow: 1;
}

.filter-sidebar > .filter-options h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.filter-sidebar > .filter-options ul {
  list-style-type: none;
}

.checktree .filter-options li {
  margin-bottom: 15px;
}

.filter-sidebar > .attr-filter-container .filter-options li {
  margin-bottom: 15px;
}

.filter-sidebar > .filter-footer {
  position: relative;
  padding: 20px;
  background-color: #fff;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.filter-sidebar > .filter-footer button {
  width: 95%;
  padding: 0px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.filter-sidebar > .clear-btn {
  background-color: #ccc;
  color: #fff;
  margin-bottom: 10px;
  margin-right: 24px;
}

.filter-sidebar > .apply-btn {
  background-color: #d70018;
  color: #fff;
}

.no-result-note {
  margin: 8px 0px;
  padding: 4px 10px;
  z-index: 10001;
  width: 100%;
}

.filter-sidebar .grm-btn-secondary:hover {
  color: #fff !important;
}

.filter-hr {
  margin-top: 0px;
  margin-bottom: 0px;
}

#clearallfilterBtn {
  margin-right: 24px;
}

.filter-close {
  margin: 20px 0px 12px 25px !important;
  background-size: 16px 16px;
}

.filter-label-txt {
  margin-top: 8px;
}

.result-sorting-container .select-container .page-top {
  border: 1px solid #E7E8E9 !important;
}
.result-sorting-container .select-container .custom-select {
  border: none !important;
}

.attr-list-view-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  color: #008A21 !important;
}

.points-filter-container .points-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*font-family: Arial, sans-serif;*/
}
.points-filter-container .label {
  font-weight: bold;
  font-size: 16px;
}
.points-filter-container .actions {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 7px;
}
.points-filter-container .point-clear-btn {
  background: none;
  border: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 12px;
}
.points-filter-container .arrow {
  font-size: 12px;
  user-select: none;
}
.points-filter-container .label-point {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 16px;
}
.points-filter-container .rotate-icon {
  transition: transform 0.3s ease;
}
.points-filter-container .rotate-icon.rotated {
  transform: rotate(180deg);
}
.points-filter-container a.collapsed .eicon-filter-arrow-down-animate {
  transform: rotate(0deg);
}
.points-filter-container a.collapsed .eicon-filter-arrow-down-animate {
  transform: rotate(0deg);
}
.points-filter-container i.rotated {
  transform: rotate(180deg);
}




